body {
      font-family: 'Poppins', sans-serif;
      padding-top: 100px;
      color: var(--dark-color);
      background-color: var(--light-color);
      /* Prevent horizontal scroll */
      overflow-x: hidden;
    }
    
    .fas {
        margin-right: 0 !important;
    }
    
    /* Modern Header Styling */
    .navbar {
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      background-color: rgba(255,255,255,0.95);
      padding: 15px 0;
      transition: padding 0.4s ease-in-out, background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
      border-bottom: 1px solid rgba(0,123,255,0.05);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }
    
    .navbar.scrolled {
      padding: 10px 0;
      background-color: rgba(255,255,255,0.98);
      box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }
    
    .navbar-brand {
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 0;
      transition: var(--transition);
    }
    
    .navbar-brand img {
      height: 60px;
      transition: height 0.4s ease-in-out;
    }
    
    .navbar-brand:hover {
      transform: scale(1.03);
    }
    
    .navbar.scrolled .navbar-brand img {
      height: 50px;
    }
    
    .navbar-nav {
      margin-left: 30px;
    }
    
    .nav-item {
      margin: 0 5px;
      position: relative;
      white-space: nowrap;
    }
    
    .nav-link {
      font-weight: 500;
      font-size: 1rem;
      color: var(--dark-color) !important;
      padding: 10px 10px !important;
      transition: var(--transition);
      border-radius: 8px;
      position: relative;
      z-index: 1;
      overflow: hidden;
      white-space: nowrap;
      display: flex;
      align-items: center;
    }
    
    .nav-link:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--gradient-primary);
      z-index: -1;
      opacity: 0;
      transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      transform: scaleX(0);
      transform-origin: left;
      border-radius: 8px;
    }
    
    .nav-link.active:before {
      opacity: 0.1;
      transform: scaleX(1);
    }
    
    .nav-link:hover:before {
      opacity: 0.1;
      transform: scaleX(1);
    }
    
    .nav-link.active {
      color: var(--primary-color) !important;
      font-weight: 600;
    }
    
    .nav-link:hover {
      color: var(--primary-color) !important;
      transform: translateY(-2px);
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 5px;
      left: 15px;
      background: var(--gradient-primary);
      transition: var(--transition);
      border-radius: 10px;
    }
    
    .nav-link.active::after, .nav-link:hover::after {
      width: calc(100% - 30px);
    }
    
    .nav-icon {
      margin-right: 6px;
      font-size: 1rem;
      opacity: 0.8;
      transition: var(--transition);
      width: 20px;
      text-align: center;
    }
    
    .nav-link:hover .nav-icon {
      opacity: 1;
      transform: translateY(-2px);
    }
    
    /* Quote Button */
    .quote-btn {
      background: var(--gradient-primary);
      background-size: 200% auto;
      color: white !important;
      border-radius: 50px;
      padding: 10px 15px !important;
      font-weight: 600;
      box-shadow: var(--box-shadow);
      border: none;
      transition: var(--transition), background-position 0.5s ease;
      display: inline-flex;
      align-items: center;
      text-decoration: none;
      position: relative;
      overflow: hidden;
    }
    
    .quote-btn:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 15px 35px rgba(0, 123, 255, 0.35);
      background-position: right center;
    }
    
    .quote-btn i {
      margin-right: 8px;
      transition: var(--transition);
    }
    
    .quote-btn:hover i {
      transform: rotate(-10deg);
    }
    
    /* Mobile Navigation */
    .navbar-toggler {
      border: none;
      padding: 0.5rem;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 123, 255, 0.05);
      transition: var(--transition);
      z-index: 1100;
    }
    
    .navbar-toggler:hover {
      background: rgba(0, 123, 255, 0.1);
    }
    
    .navbar-toggler:focus {
      box-shadow: none;
      outline: none;
    }
    
    .navbar-toggler-icon {
      width: 24px;
      height: 24px;
      background-image: none !important;
      position: relative;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after,
    .navbar-toggler-icon span {
      content: '';
      position: absolute;
      width: 24px;
      height: 2px;
      background: var(--gradient-primary);
      border-radius: 2px;
      transition: var(--transition);
      left: 0;
    }
    
    .navbar-toggler-icon::before {
      top: 5px;
    }
    
    .navbar-toggler-icon span {
      top: 12px;
    }
    
    .navbar-toggler-icon::after {
      top: 19px;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon span {
      opacity: 0;
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
      transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .dropdown-menu {
      border: none;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      padding: 15px;
      margin-top: 10px;
      animation: fadeInUp 0.3s ease forwards;
    }
    
    .dropdown-item {
      padding: 10px 15px;
      border-radius: 10px;
      transition: var(--transition);
      position: relative;
      font-weight: 500;
    }
    
    .dropdown-item:hover {
      background: rgba(0, 123, 255, 0.05);
      color: var(--primary-color);
      transform: translateX(5px);
    }
    
    .dropdown-item i {
      margin-right: 10px;
      color: var(--primary-color);
    }
    
    /* Mobile Nav Styling */
    @media (max-width: 1199px) {
      .navbar-nav {
        margin-left: 20px;
      }
      
      .nav-link {
        padding: 10px 8px !important;
        font-size: 0.95rem;
      }
      
      .nav-icon {
        margin-right: 5px;
        font-size: 0.95rem;
      }
    }
    
    @media (max-width: 991px) {
      .navbar-nav {
        margin-left: 0;
        padding: 1.5rem 0 1rem;
      }
      
      .nav-item {
        text-align: left;
        margin: 8px 0;
      }
      
      .nav-link {
        padding: 10px 15px !important;
        font-size: 1rem;
      }
      
      .nav-link::after {
        left: 0;
        bottom: 0;
      }
      
      .nav-link.active::after, .nav-link:hover::after {
        width: 50px;
      }
      
      .navbar-collapse {
        position: absolute;
        top: 90%;
        left: 0;
        right: 0;
        width: calc(100% - 30px);
        margin: 10px auto 0;
        background-color: #fff;
        padding: 20px;
        border-radius: 15px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), 
                    opacity 0.4s ease-out, 
                    padding 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
                    margin-top 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1000;
      }
      
      .navbar-collapse.show {
        max-height: 80vh;
        opacity: 1;
        padding: 20px;
        margin-top: 15px;
        overflow-y: auto;
      }
      
      .mobile-nav-bottom {
        border-top: 1px solid rgba(0, 123, 255, 0.1);
        margin-top: 20px;
        padding-top: 20px;
        text-align: center;
      }
      
      .quote-btn-mobile {
        width: 100%;
        justify-content: center;
      }
    }
    
    /* Animations */
    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    .animate-fade-in-down {
      animation: fadeInDown 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    }
    
    .animate-fade-in-up {
      animation: fadeInUp 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
    }
   
  /* Hero Section Styles */
  .hero-section {
      position: relative;
      height: 85vh; /* Adjusted slightly for potentially taller screens */
      min-height: 600px;
      max-height: 900px; /* Increased max-height slightly */
      overflow: hidden;
      background-color: #000; /* Fallback background color */
  }

  .video-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 0;
  }

  .video-background video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translateX(-50%) translateY(-50%);
  }

  .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4);
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
  }

  .carousel {
      height: 100%;
      z-index: 1;
      position: relative;
  }

  .carousel-inner, .carousel-item {
      height: 100%;
  }

  .hero-section img {
      object-fit: cover;
      width: 100%;
      height: 100%;
      object-position: center;
  }

  .carousel-fade .carousel-item {
      opacity: 0;
      transition: opacity 1s ease-in-out; /* Slightly slower fade */
  }

  .carousel-fade .carousel-item.active {
      opacity: 1;
  }

  .carousel-caption {
      text-align: center;
      position: absolute;
      bottom: 15%; /* Position slightly lower */
      left: 50%;
      transform: translateX(-50%);
      width: 85%; /* Use percentage width */
      max-width: 800px; /* Keep a max-width */
      padding: 25px 20px; /* Adjust padding */
      background: rgba(0, 0, 0, 0.4); /* Subtle background for readability */
      border-radius: 10px; /* Slightly rounded corners */
      backdrop-filter: blur(3px); /* Optional: Frosted glass effect */
      -webkit-backdrop-filter: blur(3px); /* Safari support */
      z-index: 10;
      color: #fff; /* Ensure text is white */
  }

  .carousel-caption h2 {
      font-size: calc(1.8rem + 1.5vw); /* Responsive font size */
      font-weight: 700;
      margin-bottom: 15px;
      text-shadow: 1px 1px 3px rgba(0,0,0,0.5); /* Refined text shadow */
  }

  .carousel-caption .lead {
      font-size: calc(0.9rem + 0.5vw); /* Responsive font size */
      margin-bottom: 25px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.5); /* Refined text shadow */
      opacity: 0.9; /* Slightly transparent lead text */
  }

  .hero-btn {
      padding: 12px 30px; /* Adjusted padding */
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px; /* Reduced letter spacing slightly */
      border-radius: 30px; /* Consistent rounded corners */
      transition: all 0.3s ease;
      border: none;
  }

  .btn-glow {
      background: linear-gradient(to right, #007bff, #00c3ff);
      color: white;
      box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
      position: relative;
      z-index: 1;
      overflow: hidden;
  }

  .btn-glow::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, #00c3ff, #007bff);
      transition: opacity 0.5s ease;
      z-index: -1;
      opacity: 0;
  }

  .btn-glow:hover::after {
      opacity: 1;
  }

  .btn-glow:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
  }

  .btn-glow-light {
      background: white;
      color: #007bff;
      box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
  }

  .btn-glow-light:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
      color: #0056b3;
  }

  /* Carousel Controls Styling - Modernized */
  .carousel-control-prev, .carousel-control-next {
      width: 15%; /* Increase clickable width slightly */
      opacity: 0.8; /* Slightly more opaque default */
      transition: all 0.4s ease;
      padding: 0 2%; /* Keep padding */
      background: none; /* Remove any potential gradient background */
      border: none;
  }
   .carousel-control-prev:hover, .carousel-control-next:hover {
      opacity: 1; /* Fully opaque on hover */
      /* Remove the subtle background on the whole control hover */
      /* background: rgba(0,0,0, 0.1); */
  }

  .carousel-control-prev-icon, .carousel-control-next-icon {
      background-color: transparent; /* Remove default background */
      border-radius: 50%;
      width: 50px; /* Increase size slightly for better touch target */
      height: 50px;
      padding: 0; /* Remove padding, rely on background-size */
      background-size: 50% 50%; /* Adjust icon size */
      background-repeat: no-repeat;
      background-position: center center;
      box-shadow: none; /* Remove default shadow */
      transition: all 0.3s ease;
      /* Ensure Bootstrap's default SVG icon color is visible and semi-transparent */
      filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) opacity(0.7);
  }

  .carousel-control-prev:hover .carousel-control-prev-icon,
  .carousel-control-next:hover .carousel-control-next-icon {
      /* Add a subtle background circle on hover */
      background-color: rgba(0, 0, 0, 0.4);
      /* Make icon fully opaque white on hover */
      filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) opacity(1);
      transform: scale(1.05); /* Slightly smaller scale effect */
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Add a subtle shadow on hover */
  }

  /* Carousel Indicators Styling - Modernized */
  .carousel-indicators {
      bottom: 30px;
      margin-bottom: 0; /* Reset margin */
      padding-left: 0; /* Reset padding */
      z-index: 15; /* Ensure indicators are above caption background */
  }

  .carousel-indicators button {
      width: 25px !important; /* Rectangular shape - width */
      height: 4px !important; /* Rectangular shape - height */
      border-radius: 2px !important; /* Slightly rounded edges */
      margin: 0 5px !important; /* Spacing */
      background-color: rgba(255, 255, 255, 0.4) !important; /* Semi-transparent white */
      border: none !important; /* Remove border */
      opacity: 0.7 !important; /* Default opacity */
      transition: all 0.4s ease;
      padding: 0 !important; /* Reset padding */
  }

  .carousel-indicators button.active {
      width: 40px !important; /* Active indicator is wider */
      background-color: #ffffff !important; /* Solid white when active */
      opacity: 1 !important; /* Fully opaque */
      box-shadow: 0 0 8px rgba(255, 255, 255, 0.5); /* Subtle glow */
  }

  /* Scroll Down Animation */
  .scroll-down {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
  }

  .scroll-down a {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-decoration: none;
  }

  .scroll-down span {
      display: block;
      width: 20px;
      height: 20px;
      border-bottom: 2px solid white;
      border-right: 2px solid white;
      transform: rotate(45deg);
      margin: -10px;
      animation: scrollDown 2s infinite;
  }

  .scroll-down span:nth-child(2) {
      animation-delay: 0.2s;
  }

  .scroll-down span:nth-child(3) {
      animation-delay: 0.4s;
  }

  @keyframes scrollDown {
      0% {
          opacity: 0;
          transform: rotate(45deg) translate(-20px, -20px);
      }
      50% {
          opacity: 1;
      }
      100% {
          opacity: 0;
          transform: rotate(45deg) translate(20px, 20px);
      }
  }

  /* Section Titles */
  .section-title {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #333;
      position: relative;
  }

  .section-divider {
      height: 4px;
      width: 70px;
      background: linear-gradient(to right, #007bff, #00c3ff);
      margin: 0 auto 20px;
      border-radius: 2px;
  }

  .section-subtitle {
      font-size: 1.2rem;
      color: #666;
      margin-bottom: 30px;
  }

  /* Services Cards */
  .service-card {
      background-color: #fff;
      border-radius: 15px;
      padding: 40px 30px;
      height: 100%;
      transition: all 0.4s ease;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
      text-align: center;
      position: relative;
      overflow: hidden;
      z-index: 1;
  }

  .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 0;
      background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 195, 255, 0.05) 100%);
      transition: all 0.4s ease;
      z-index: -1;
  }

  .service-card:hover::before {
      height: 100%;
  }

  .service-card:hover {
      transform: translateY(-15px);
      box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  }

  .card-icon-wrapper {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 25px;
      transition: all 0.4s ease;
  }

  .service-card:hover .card-icon-wrapper {
      background: linear-gradient(135deg, #007bff 0%, #00c3ff 100%);
  }

  .service-icon {
      font-size: 3rem;
      color: #007bff;
      transition: all 0.4s ease;
  }

  .service-card:hover .service-icon {
      color: white;
      transform: rotateY(360deg);
  }

  .service-card h3 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 15px;
      color: #333;
  }

  .service-card p {
      color: #666;
      margin-bottom: 20px;
      flex-grow: 1;
  }

  .btn-service-link {
      color: #007bff;
      font-weight: 600;
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      position: relative;
      padding-bottom: 5px;
  }

  .btn-service-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(to right, #007bff, #00c3ff);
      transition: all 0.3s ease;
  }

  .btn-service-link:hover {
      color: #0056b3;
  }

  .btn-service-link:hover::after {
      width: 100%;
  }

  .btn-service-link i {
      margin-left: 5px;
      transition: all 0.3s ease;
  }

  .btn-service-link:hover i {
      transform: translateX(5px);
  }

  /* Statistics Section */
  .stats-section {
      position: relative;
      /*background: url('<?php echo $siteurl; ?>assets/img/eccovolta/stats-bg.jpg') no-repeat center center;*/
      background-size: cover;
      padding: 100px 0;
      color: white;
  }

  .parallax-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.7);
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 123, 255, 0.8) 100%);
  }

  .stat-item {
      padding: 20px;
      transition: all 0.3s ease;
  }

  .stat-icon {
      font-size: 2.5rem;
      margin-bottom: 15px;
      color: #00c3ff;
  }

  .stat-number {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 10px;
  }

  .stat-title {
      font-size: 1.1rem;
      opacity: 0.9;
  }

  /* Call to Action Section */
  .cta-section {
      background: linear-gradient(135deg, #007bff 0%, #00c3ff 100%);
      color: white;
      padding: 80px 0;
      border-radius: 0;
      position: relative;
      overflow: hidden;
  }

  .cta-section::before {
      content: '';
      position: absolute;
      top: -30%;
      right: -10%;
      width: 500px;
      height: 500px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
  }

  .cta-section::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
  }

  .cta-title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 10px;
  }

  .cta-text {
      font-size: 1.2rem;
      margin-bottom: 0;
      opacity: 0.9;
  }

  /* Process Section */
  .process-section {
      padding: 80px 0;
      background-color: #f8f9fa;
  }

  .process-card {
      background-color: #fff;
      border-radius: 15px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.3s ease;
      position: relative;
      height: 100%;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  }

  .process-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }

  .process-icon {
      position: relative;
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .process-icon i {
      font-size: 2.5rem;
      color: #007bff;
      z-index: 1;
  }

  .process-number {
      position: absolute;
      top: -10px;
      left: -10px;
      font-size: 3.5rem;
      font-weight: 700;
      color: rgba(0, 123, 255, 0.1);
      line-height: 1;
  }

  .process-card h3 {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 15px;
  }

  .process-card p {
      color: #666;
  }

  /* Certifications */
  .partner-area {
      background-color: #fff;
      padding: 80px 0;
  }

  .Certifications-carousel .Certifications-item {
      text-align: center;
      padding: 20px;
      opacity: 1; /* Changed from 0.7 to 1 to make images colorful even when not hovered */
      transition: all 0.3s ease;
  }

  .Certifications-carousel .Certifications-item:hover {
      transform: scale(1.05); /* Removed opacity change since it's already 1 */
  }

  .Certifications-carousel .Certifications-item img {
      max-width: 180px;
      height: auto;
      margin: auto;
      object-fit: contain;
  }

  /* Why Choose Us Section */
  .why-choose-us-section {
      /* Uses .service-card styling from above */
      /* Added bg-light class in HTML for background */
  }

  /* Responsive Styles */
  @media screen and (max-width: 1200px) {
      .carousel-caption h2 {
          font-size: 3rem;
      }

      .carousel-caption .lead {
          font-size: 1.3rem;
      }
  }

  @media screen and (max-width: 992px) {
      .hero-section {
          height: 75vh; /* Adjust height */
      }
      .carousel-caption {
          width: 90%;
          bottom: 12%; /* Adjust position */
          padding: 20px 15px;
      }
      .carousel-indicators {
          bottom: 20px; /* Adjust indicator position */
      }
       .carousel-control-prev, .carousel-control-next {
          padding: 0 1%; /* Reduce padding */
      }

      .service-card,
      .process-card {
          margin-bottom: 30px;
      }

      .stat-item {
          margin-bottom: 30px;
      }

      .cta-section {
          text-align: center;
      }

      .cta-section .text-lg-end {
          text-align: center !important;
          margin-top: 20px;
      }
  }

  @media screen and (max-width: 768px) {
      .hero-section {
          height: 65vh; /* Adjust height */
          min-height: 500px; /* Ensure minimum height */
      }
       .hero-section img {
          height: 100%; /* Ensure image covers the section */
      }
      .carousel-caption {
          bottom: 10%;
          padding: 15px 10px;
      }
       .carousel-caption h2 {
          font-size: calc(1.5rem + 1.2vw); /* Adjust responsive font size */
      }
       .carousel-caption .lead {
          font-size: calc(0.8rem + 0.4vw); /* Adjust responsive font size */
          margin-bottom: 15px;
      }
      .hero-btn {
          padding: 10px 20px;
          font-size: 0.9rem;
      }
       .carousel-indicators button {
          width: 20px !important;
          height: 3px !important;
          margin: 0 4px !important;
      }
       .carousel-indicators button.active {
          width: 30px !important;
      }
       .carousel-control-prev-icon, .carousel-control-next-icon {
          width: 40px; /* Smaller controls */
          height: 40px;
          padding: 10px;
      }
       .section-title {
          font-size: 2rem;
      }
       .service-card {
          padding: 20px;
          margin-bottom: 20px;
      }
       .cta-title {
          font-size: 1.5rem;
      }
       .cta-text {
          font-size: 1rem;
      }
       .process-card {
          margin-bottom: 20px;
      }
      #language-switcher{
          margin-top: 1rem;
      }
  }

  @media screen and (max-width: 576px) {
      .hero-section {
          height: 60vh;
          min-height: 450px;
      }
      /* Video is hidden below lg breakpoint by default, so img height is key */
      .hero-section img {
          height: 100%;
      }
      .carousel-caption {
          bottom: 8%;
          width: 95%;
      }
      .carousel-caption h2 {
          font-size: calc(1.3rem + 1vw);
      }
      .carousel-caption .lead {
          font-size: calc(0.7rem + 0.3vw);
          display: none; /* Hide lead text on smallest screens for clarity */
      }
      .hero-btn {
          padding: 8px 16px;
          font-size: 0.8rem;
      }
      .carousel-indicators {
          bottom: 15px;
      }
      .scroll-down {
          display: none;
      }
       .stat-number {
          font-size: 2rem;
      }
      #language-switcher{
          margin-top: 1rem;
      }
  }




.container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

img {
    max-width: 100%;
    height: auto;
}


/* Hero Section */
.contact-hero-section {
    position: relative;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.contact-hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.contact-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    padding: 12px 25px;
    border-radius: 50px;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-divider {
    height: 4px;
    width: 70px;
    background: var(--gradient-primary);
    margin-bottom: 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Contact Info Cards */
.contact-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.contact-card:hover:before {
    opacity: 0.05;
}

.contact-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--gradient-primary);
}

.contact-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon i {
    color: white;
}

.contact-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-title {
    color: var(--primary-color);
}

.contact-card-text {
    color: #666;
    margin-bottom: 15px;
}

.contact-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

.location-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.location-tab {
    cursor: pointer;
    padding: 5px 15px;
    border-radius: 20px;
    background: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.location-tab.active, .location-tab:hover {
    background: var(--gradient-primary);
    color: white;
}

/* Contact Form Styling */
.form-container {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.form-divider {
    height: 4px;
    width: 60px;
    background: var(--gradient-primary);
    margin-bottom: 20px;
    border-radius: 2px;
}

.form-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Updated Form Control Styles */
.contact-form .form-control {
    border: none;
    border-radius: 10px;
    background-color: #f0f3f8;
    height: 55px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 5px;
    box-shadow: none;
}

.contact-form textarea.form-control {
    height: 150px;
    padding-top: 1rem;
}

.contact-form .form-control::placeholder {
    color: #6c757d;
    opacity: 0.8;
}

.contact-form .form-control:focus {
    background-color: #e9eef5;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.2);
    border-color: transparent;
}

/* Style for the icon/text below input */
.input-info {
    display: block;
    padding-left: 5px;
    font-size: 0.85rem;
    color: #666 !important;
}

.input-info i {
    color: #888;
}

/* Button Styling */
.btn-submit {
    background: var(--gradient-primary);
    color: white;
    border: none;
    height: 55px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
    color: white;
}

.btn-submit i {
    transition: all 0.3s ease;
}

/* Map Styling */
.map-container {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    height: 100%;
}

.map-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.map-divider {
    height: 4px;
    width: 60px;
    background: var(--gradient-primary);
    margin-bottom: 20px;
    border-radius: 2px;
}

.location-details {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(0, 123, 255, 0.05);
    border-radius: 10px;
}

.location-address h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.location-address p {
    color: #666;
    margin-bottom: 0;
}

.map-frame {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-frame iframe {
    display: block;
    border-radius: 10px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    background-color: #fff;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(0, 123, 255, 0.05);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23007bff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 25px;
    color: #666;
    border-top: 1px solid rgba(0, 123, 255, 0.1);
}

/* Certifications Section - Reusing from support.php */
.certifications-area {
    background-color: #fff;
}

.certifications-container {
    position: relative;
    padding: 20px 0;
}

.cert-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 15px;
    position: relative;
    overflow: hidden;
}

.cert-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cert-card:hover:before {
    opacity: 0.05;
}

.cert-logo {
    max-width: 150px;
    max-height: 100px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    filter: grayscale(20%);
    width: auto; /* Ensure auto width based on height */
}

.cert-card:hover .cert-logo {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.cert-name {
    margin-top: 15px;
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cert-card:hover .cert-name {
    color: var(--primary-color);
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 -20px;
}

.owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: white !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    position: relative; /* Change from absolute to prevent overflow */
    margin: 0 10px; /* Add margin */
}

.owl-nav button:hover {
    background: var(--gradient-primary) !important;
}

.owl-nav button i {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.owl-nav button:hover i {
    color: white;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.2) !important;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: var(--gradient-primary) !important;
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .contact-hero-title {
        font-size: 3rem;
    }
    
    .section-title, .form-title, .map-title {
        font-size: 2.2rem;
    }
    
    /* Adjust carousel nav positioning */
    .owl-nav {
        position: static; /* Change positioning */
        transform: none;
        text-align: center; /* Center the buttons */
        margin-top: 15px;
    }
    
    .owl-nav button {
        display: inline-flex !important; /* Ensure buttons are inline */
        margin: 0 5px;
    }
}

@media (max-width: 992px) {
    .contact-hero-section {
        padding: 120px 0;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .form-container, .map-container {
        padding: 30px;
    }
    
    .owl-nav button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 100px 0;
    }
    
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title, .form-title, .map-title {
        font-size: 1.8rem;
    }
    /* Bring Owl nav inside */
    .certifications-container .owl-nav button {
        width: 40px;
        height: 40px;
        opacity: 0.6;
    }
    
    /* Remove specific left/right positioning to rely on static flow */
    .certifications-container .owl-nav button.owl-prev {
        /* left: 5px; */ 
    }
    .certifications-container .owl-nav button.owl-next {
        /* right: 5px; */
    }
    /* Add padding if needed */
    .certifications-container {
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .owl-carousel {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 576px) {
    .contact-hero-section {
        padding: 80px 0;
    }
    
    .contact-hero-title {
        font-size: 1.8rem;
    }
    
    .breadcrumb {
        padding: 8px 15px;
    }
    
    .section-title, .form-title, .map-title {
        font-size: 1.6rem;
    }
    
    .form-container, .map-container {
        padding: 20px;
    }
    
    .btn-submit {
        height: 50px;
        font-size: 1rem;
    }
}

/* Optional: Style modal header/footer */
#successModal .modal-header {
    background-color: #e9f7ef; /* Light success green */
    color: #155724; /* Darker success green */
}

#successModal .modal-title i {
     font-size: 1.5rem;
     vertical-align: middle;
}

#successModal .modal-footer .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
#successModal .modal-footer .btn-primary:hover {
    background-color: #0056b3; /* Darker primary */
    border-color: #0056b3;
}

/* Style dismissible alerts */
.alert-dismissible .btn-close {
    padding: 0.75rem 1rem; /* Adjust padding for easier clicking */
}

/* About Us Page Styles */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}

.container {
    width: 100%;
    max-width: 100%;
    padding-left: 15px;
    padding-right: 15px;
}

img {
    max-width: 100%;
    height: auto;
}

.about-hero-section {
    position: relative;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
}
.about-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.about-hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.breadcrumb {
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    padding: 12px 25px;
    border-radius: 50px;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item.active {
    color: #00c3ff;
}

.breadcrumb-item a:hover {
    color: #00c3ff;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

/* Section Styling */
.section-heading {
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.section-divider {
    height: 4px;
    width: 70px;
    background: linear-gradient(to right, #007bff, #00c3ff);
    margin-bottom: 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* About Story Section */
.about-image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    max-width: 100%;
}

.about-image-container img {
    border-radius: 15px;
    transition: all 0.5s ease;
    width: 100%;
}

.about-image-container:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #007bff, #00c3ff);
    color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.experience-badge .years {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    display: block;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.text-primary {
    color: #007bff !important;
}

.text-uppercase {
    letter-spacing: 2px;
    font-weight: 600;
}

/* Mission & Values Section */
.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 195, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 2.5rem;
    color: #007bff;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #007bff, #00c3ff);
}

.value-card:hover .value-icon i {
    color: white;
    transform: rotateY(360deg);
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    color: #666;
    margin-bottom: 0;
}

/* About Content Section */
.about-full-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-paragraph {
    font-size: 1.25rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: #444;
    text-align: center;
}

.company-name {
    color: #007bff;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.certification-intro {
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.certification-icon {
    font-size: 2.5rem;
    color: #007bff;
    margin-bottom: 1rem;
    display: block;
}

.certification-intro h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.certification-intro p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.certifications-container {
    width: 100%;
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: center;
}

.certifications-grid {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1.5rem;
    max-width: 1000px;
}

.certification-item {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    border-radius: 10px;
    padding: 1.5rem 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
    flex: 0 0 auto;
    width: 170px;
    margin: 0.5rem;
}

.certification-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: rgba(0,123,255,0.2);
}

.certification-item i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
    display: block;
}

.certification-item img.cert-logo {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.certification-item:hover img.cert-logo {
    transform: scale(1.1);
}

.certification-item span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 0.3rem;
}

.certification-item small {
    color: #666;
    font-size: 0.85rem;
    display: block;
}

.commitment-section {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 0 1rem;
}

.commitment-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.15rem;
}

.tagline-container {
    text-align: center;
    margin: 3rem 0 1rem;
}

.tagline {
    display: inline-block;
    position: relative;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0,123,255,0.05) 0%, rgba(0,195,255,0.05) 100%);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tagline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, #007bff, #00c3ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.tagline-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-right: 0.5rem;
}

.tagline-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: #007bff;
    display: inline-block;
}

/* Articles Section */
.articles-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.article-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    position: relative;
    overflow: hidden;
}

.article-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #007bff, #00c3ff);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.article-card:hover:before {
    opacity: 0.03;
}

.article-icon {
    flex: 0 0 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 195, 255, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.article-card:hover .article-icon {
    background: linear-gradient(135deg, #007bff, #00c3ff);
}

.article-icon i {
    font-size: 2rem;
    color: #007bff;
    transition: all 0.3s ease;
}

.article-card:hover .article-icon i {
    color: white;
    transform: rotateY(180deg);
}

.article-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.article-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    transition: all 0.3s ease;
}

.article-card:hover .article-info h4 {
    color: #007bff;
}

.article-excerpt {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #777;
}

.article-meta span {
    display: flex;
    align-items: center;
}

.article-meta i {
    margin-right: 5px;
    color: #007bff;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 195, 255, 0.1));
    color: #007bff;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.download-btn i {
    margin-right: 8px;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: linear-gradient(135deg, #007bff, #00c3ff);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.download-btn:hover i {
    transform: translateY(-2px);
}

/* Certifications Section */
.certifications-section {
    background-color: #f8f9fa;
}

.certification-carousel .owl-stage {
    display: flex;
    align-items: center;
}

.certification-item {
    padding: 15px;
    max-width: 100%;
}

.cert-inner {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.cert-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.certification-item img {
    max-height: 120px;
    max-width: 100%;
    width: auto;
    filter: grayscale(0%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.certification-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color) !important;
    color: white !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    opacity: 1;
    background: var(--primary-color) !important;
}

.owl-nav .owl-prev {
    left: 0;
}

.owl-nav .owl-next {
    right: 0;
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 100px 0;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .value-card {
        margin-bottom: 30px;
    }

    .cta-title {
        font-size: 2rem;
    }

    /* About Content Section Tablet */
    .certifications-grid {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .certification-item {
        width: calc(50% - 1rem);
        margin: 0.4rem;
        flex: 0 0 calc(50% - 1rem);
        padding: 1rem;
    }

    .certification-item i {
        font-size: 1.8rem;
        margin-bottom: 0.7rem;
    }

    .certification-item span {
        font-size: 1.1rem;
    }

    .certification-item small {
        font-size: 0.75rem;
    }

    .intro-paragraph {
        font-size: 1.15rem;
        padding: 0 1rem;
    }

    .commitment-section p {
        font-size: 1.1rem;
    }

    .tagline {
        padding: 1.3rem 1.8rem;
    }

    /* Articles Section Tablet */
    .article-card {
        padding: 20px;
    }

    .article-icon {
        flex: 0 0 60px;
        height: 60px;
    }

    .article-icon i {
        font-size: 1.8rem;
    }

    .article-info h4 {
        font-size: 1.15rem;
    }

    .article-excerpt {
        font-size: 0.9rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .cert-inner {
        height: 150px;
        padding: 15px;
    }

    .certification-item img {
        max-height: 100px;
    }

    .owl-nav button {
        width: 35px;
        height: 35px;
        opacity: 0.6;
    }
    .owl-nav .owl-prev {
        left: 0;
    }
    .owl-nav .owl-next {
        right: 0;
    }
    .certifications-section .row .col-12 {
         padding-left: 5px;
         padding-right: 5px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        padding: 80px 0;
    }

    .about-hero-title {
        font-size: 1.8rem;
    }

    .breadcrumb {
        padding: 8px 15px;
    }

    .experience-badge {
        padding: 10px;
        bottom: 15px;
        right: 15px;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }

    .btn-glow {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .owl-carousel {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* About Content Section Responsive */
    .intro-paragraph {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .certification-intro h3 {
        font-size: 1.5rem;
    }

    .certification-icon {
        font-size: 2rem;
    }

    .certifications-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .certification-item {
        padding: 1.2rem;
        width: 140px;
        margin: 0.3rem;
        flex: 0 0 calc(50% - 0.6rem);
    }

    .certification-item i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .tagline {
        padding: 1.2rem 1.5rem;
    }

    .tagline-text, .tagline-highlight {
        display: block;
        margin: 0.3rem 0;
    }

    /* Articles Section Mobile */
    .article-card {
        padding: 15px;
        flex-direction: column;
    }

    .article-icon {
        margin: 0 auto 15px;
        width: 60px;
        height: 60px;
    }

    .article-info {
        text-align: center;
    }

    .article-info h4 {
        font-size: 1.1rem;
    }

    .article-excerpt {
        font-size: 0.85rem;
    }

    .article-meta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .article-meta span {
        margin-bottom: 5px;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }
}

/* CTA Section */
.about-cta-section {
    background: linear-gradient(135deg, #007bff 0%, #00c3ff 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: 0;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.about-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 0;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

.btn-glow {
    background: white;
    color: #007bff;
    padding: 14px 36px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    border: none;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .about-hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px;
    }

    .experience-badge .years {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .about-hero-section {
        padding: 120px 0;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-image-container {
        margin-bottom: 30px;
    }

    .team-member {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 100px 0;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .value-card {
        margin-bottom: 30px;
    }

    .cta-title {
        font-size: 2rem;
    }

    /* About Content Section Tablet */
    .certifications-grid {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .certification-item {
        width: calc(50% - 1rem);
        margin: 0.4rem;
        flex: 0 0 calc(50% - 1rem);
        padding: 1rem;
    }

    .certification-item i {
        font-size: 1.8rem;
        margin-bottom: 0.7rem;
    }

    .certification-item img.cert-logo {
        max-height: 50px;
        margin-bottom: 0.7rem;
    }

    .certification-item span {
        font-size: 1.1rem;
    }

    .certification-item small {
        font-size: 0.75rem;
    }

    .intro-paragraph {
        font-size: 1.15rem;
        padding: 0 1rem;
    }

    .commitment-section p {
        font-size: 1.1rem;
    }

    .tagline {
        padding: 1.3rem 1.8rem;
    }

    /* Articles Section Tablet */
    .article-card {
        padding: 20px;
    }

    .article-icon {
        flex: 0 0 60px;
        height: 60px;
    }

    .article-icon i {
        font-size: 1.8rem;
    }

    .article-info h4 {
        font-size: 1.15rem;
    }

    .article-excerpt {
        font-size: 0.9rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .cert-inner {
        height: 150px;
        padding: 15px;
    }

    .certification-item img {
        max-height: 100px;
    }

    .owl-nav button {
        width: 35px;
        height: 35px;
        opacity: 0.6;
    }
    .owl-nav .owl-prev {
        left: 0;
    }
    .owl-nav .owl-next {
        right: 0;
    }
    .certifications-section .row .col-12 {
         padding-left: 5px;
         padding-right: 5px;
    }
}

@media (max-width: 576px) {
    .about-hero-section {
        padding: 80px 0;
    }

    .about-hero-title {
        font-size: 1.8rem;
    }

    .breadcrumb {
        padding: 8px 15px;
    }

    .experience-badge {
        padding: 10px;
        bottom: 15px;
        right: 15px;
    }

    .experience-badge .years {
        font-size: 1.5rem;
    }

    .btn-glow {
        padding: 12px 30px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .owl-carousel {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* About Content Section Responsive */
    .intro-paragraph {
        font-size: 1.1rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .certification-intro h3 {
        font-size: 1.5rem;
    }

    .certification-icon {
        font-size: 2rem;
    }

    .certifications-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.8rem;
    }

    .certification-item {
        padding: 1.2rem;
        width: 140px;
        margin: 0.3rem;
        flex: 0 0 calc(50% - 0.6rem);
    }

    .certification-item i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .certification-item img.cert-logo {
        max-height: 45px;
        margin-bottom: 0.8rem;
    }

    .tagline {
        padding: 1.2rem 1.5rem;
    }

    .tagline-text, .tagline-highlight {
        display: block;
        margin: 0.3rem 0;
    }

    /* Articles Section Mobile */
    .article-card {
        padding: 15px;
        flex-direction: column;
    }

    .article-icon {
        margin: 0 auto 15px;
        width: 60px;
        height: 60px;
    }

    .article-info {
        text-align: center;
    }

    .article-info h4 {
        font-size: 1.1rem;
    }

    .article-excerpt {
        font-size: 0.85rem;
    }

    .article-meta {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .article-meta span {
        margin-bottom: 5px;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }
}




/* Hero Section */
.services-hero-section {
    position: relative;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.services-hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.services-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    padding: 12px 25px;
    border-radius: 50px;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-divider {
    height: 4px;
    width: 70px;
    background: var(--gradient-primary);
    margin-bottom: 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Categories */
.service-category-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.service-category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 195, 255, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.category-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.divider {
    height: 3px;
    width: 50px;
    background: var(--gradient-primary);
    margin-bottom: 20px;
    border-radius: 2px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    margin-bottom: 12px;
}

.service-link {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: block;
    padding: 8px 0;
}

.service-link i {
    color: var(--primary-color);
    margin-right: 10px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-link:hover i {
    transform: translateX(3px);
}

/* Featured Services */
.service-item {
    margin: 15px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    background: #fff;
    display: flex;
    flex-direction: column;
    width: calc(100% - 30px); /* Account for margins */
    max-width: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.service-image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background-color: #f0f0f0; /* Background color in case of image gaps */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0; /* Ensure no bottom margin */
    max-width: 100%;
    width: 100%; /* Ensure full width */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Center the image to ensure balanced filling */
    transition: transform 0.5s ease;
    display: block;
    max-width: 100%; /* Constrain image to container width */
    min-height: 100%;
    margin: 0;
    transform: scale(1); /* No initial scaling to prevent overflow */
}

.service-item:hover .service-image img {
    transform: scale(1.08); /* More moderate scale on hover to prevent overflow */
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.service-item:hover .service-overlay {
    opacity: 1;
}

.btn-service-details {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-service-details:hover {
    background: #fff;
    color: var(--primary-color);
}

.service-content {
    padding: 25px;
    margin-top: 0; /* Ensure no top margin */
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.service-content p {
    color: #666;
    margin-bottom: 0;
}

/* CTA Section */
.services-cta {
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px;
    padding: 50px 40px;
    margin: 50px 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    border: none;
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Owl Carousel Styling */
.project-carousel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color) !important;
    color: white !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    font-size: 1.5rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: var(--primary-color) !important;
    opacity: 1;
}

.owl-nav button.owl-prev {
    left: 0;
}

.owl-nav button.owl-next {
    right: 0;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .services-hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .owl-nav button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 992px) {
    .services-hero-section {
        padding: 120px 0;
    }

    .services-hero-title {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 100px 0;
    }

    .services-hero-title {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .service-image {
        height: 250px;
    }

    .owl-nav button.owl-prev {
        left: 0;
    }

    .owl-nav button.owl-next {
        right: 0;
    }
    /* Add styles to bring nav buttons inside on mobile */
    .featured-services .owl-nav button {
        opacity: 0.6;
    }
    .featured-services .owl-nav button.owl-prev {
        left: 5px;
    }
    .featured-services .owl-nav button.owl-next {
        right: 5px;
    }
    /* Add padding if needed to prevent content overlap */
    .featured-services .row .col-12 {
        padding-left: 5px;
        padding-right: 5px;
    }

    /* Ensure owl carousel is constrained */
    .owl-carousel {
        width: 100% !important;
        max-width: 100% !important;
    }
}

@media (max-width: 576px) {
    .services-hero-section {
        padding: 80px 0;
    }

    .services-hero-title {
        font-size: 1.8rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .breadcrumb {
        padding: 8px 15px;
    }

    .category-title {
        font-size: 1.3rem;
    }

    .service-image {
        height: 230px;
    }

    .services-cta {
        padding: 30px 20px;
    }

    .btn-cta {
        width: 100%;
        margin-top: 15px;
    }
}


/* Hero Section */
.brands-hero-section {
    position: relative;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.brands-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.brands-hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.brands-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    padding: 12px 25px;
    border-radius: 50px;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-divider {
    height: 4px;
    width: 70px;
    background: var(--gradient-primary);
    margin-bottom: 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Category Navigation */
.category-navigation {
    position: relative;
    padding: 10px 0;
}

/* Desktop Category Pills */
.category-nav {
    display: flex;
    flex-wrap: nowrap;
    border-radius: 50px;
    background: #f8f9fa;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    padding: 5px;
    transition: all 0.3s ease;
}

.category-nav .nav-item {
    margin: 0 5px;
}

.category-nav .nav-link {
    color: var(--dark-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.category-nav .nav-link:hover {
    background-color: rgba(0, 123, 255, 0.1);
    color: var(--primary-color);
}

.category-nav .nav-link.active {
    background: var(--gradient-primary) !important;
    color: white !important;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3) !important;
}

/* Mobile Category Dropdown */
.mobile-category-nav {
    margin: 0 auto;
    max-width: 90%;
}

.mobile-category-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.mobile-category-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-align-last: center;
}

.mobile-category-select option {
    background: white;
    color: var(--dark-color);
    font-weight: 500;
    text-align: left;
}

.mobile-select-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    pointer-events: none;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Brand Categories Styling */
.brand-category-section {
    padding: 40px 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.brand-category-section:nth-child(odd) {
    background-color: var(--light-color);
}

.brand-category-section:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.05);
    z-index: 0;
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.category-icon {
    font-size: 2rem;
    margin-right: 15px;
    color: var(--primary-color);
    background: rgba(0, 123, 255, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.brand-category-section:hover .category-icon {
    transform: rotateY(180deg);
    background: var(--gradient-primary);
    color: white;
}

.category-heading {
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0;
    margin-left: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.category-heading:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0.3);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.brand-category-section:hover .category-heading:after {
    transform: scaleX(1);
}

.category-divider {
    height: 3px;
    width: 60px;
    background: var(--gradient-primary);
    margin-bottom: 30px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.brand-category-section:hover .category-divider {
    width: 100px;
}

/* Brand Card Styling */
.brand-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    perspective: 1000px;
}

/* Mobile Swiper Styles */
.mobile-brand-slider {
    width: 100%;
    padding: 10px 0 40px;
}

.swiper-container {
    width: 100%;
    overflow: visible;
    padding: 10px 0;
}

.swiper-slide {
    width: auto;
    height: auto;
    transition: all 0.3s ease;
}

.swiper-pagination {
    bottom: 0;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    opacity: 0.3;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--gradient-primary);
    width: 20px;
    border-radius: 5px;
}

/* Mobile Brand Card */
.mobile-brand-card {
    margin: 0 5px;
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    height: 100%;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.mobile-brand-card .brand-image-container {
    height: 80px;
    margin-bottom: 10px;
}

.mobile-brand-card .brand-logo {
    filter: grayscale(0%);
    max-height: 80px;
}

.mobile-view-site-btn {
    display: inline-block;
    margin-top: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-brand-card:active {
    transform: scale(0.95);
}

/* Desktop Brand Card */
.brand-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    cursor: pointer;
}

.brand-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    transform: translateZ(-1px);
    border-radius: 15px;
}

.brand-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.brand-card:hover:before {
    opacity: 0.05;
}

.brand-image-container {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    padding: 10px;
    position: relative;
    transition: all 0.3s ease;
    max-width: 100%;
}

.brand-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-weight: 600;
    box-shadow: 0 5px 10px rgba(0, 123, 255, 0.3);
}

.brand-card:hover .brand-tooltip {
    opacity: 1;
    bottom: 0;
}

.brand-image-container:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.brand-card:hover .brand-image-container:after {
    width: 60%;
}

.brand-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
    filter: grayscale(20%);
    width: auto;
}

.brand-card:hover .brand-logo {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.brand-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: auto;
    margin-bottom: 0;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.brand-card:hover .brand-name {
    color: var(--primary-color);
}

.brand-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
}

/* Touch-friendly styles for mobile */
.touch-active {
    transform: scale(0.95);
    box-shadow: 0 8px 25px rgba(0,123,255,0.15);
}

.touch-active .brand-logo {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.touch-active .mobile-view-site-btn {
    background: var(--dark-color);
}

/* Specific brand logo adjustments */
.brand-logo[src*="bosch.png"],
.brand-logo[src*="juicebox.png"],
.brand-logo[src*="wyze.png"] {
    max-height: 80px;
}

/* Partner CTA Section */
.partner-cta {
    background: var(--gradient-primary);
    color: white;
    border-radius: 15px;
    padding: 50px 40px;
    margin: 50px 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    border: none;
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .brands-hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .category-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .brands-hero-section {
        padding: 120px 0;
    }

    .brands-hero-title {
        font-size: 2.5rem;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .brand-image-container {
        height: 80px;
    }
}

@media (max-width: 768px) {
    .brands-hero-section {
        padding: 100px 0;
    }

    .brands-hero-title {
        font-size: 2rem;
    }

    .brands-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .category-heading {
        font-size: 1.5rem;
    }

    .brand-image-container {
        height: 70px;
    }

    .brand-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .brands-hero-section {
        padding: 80px 0;
    }

    .brands-hero-title {
        font-size: 1.8rem;
    }

    .brands-hero-subtitle {
        font-size: 1rem;
    }

    .breadcrumb {
        padding: 8px 15px;
    }

    .category-heading {
        font-size: 1.3rem;
    }

    .partner-cta {
        padding: 30px 20px;
    }

    .btn-cta {
        width: 100%;
        margin-top: 15px;
    }
}


/* Hero Section */
.support-hero-section {
    position: relative;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.support-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.support-hero-title {
    color: #fff;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.support-hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    background: rgba(255,255,255,0.15);
    display: inline-flex;
    padding: 12px 25px;
    border-radius: 50px;
}

.breadcrumb-item a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item.active {
    color: var(--secondary-color);
}

.breadcrumb-item a:hover {
    color: var(--secondary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.7);
}

/* Section Styling */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.section-divider {
    height: 4px;
    width: 70px;
    background: var(--gradient-primary);
    margin-bottom: 20px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

/* Support Services Cards */
.support-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.support-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.support-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.support-card:hover:before {
    opacity: 0.05;
}

.support-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.support-card:hover .support-icon {
    background: var(--gradient-primary);
}

.support-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.support-card:hover .support-icon i {
    color: white;
}

.support-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.support-card:hover .support-card-title {
    color: var(--primary-color);
}

.support-card-text {
    color: #666;
    margin-bottom: 0;
}

/* Expertise Area */
.expertise-area {
    padding: 80px 0;
}

.expertise-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.expertise-divider {
    height: 4px;
    width: 70px;
    background: var(--gradient-primary);
    margin-bottom: 20px;
    border-radius: 2px;
}

.expertise-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.expertise-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    transform: translateX(5px);
}

.expertise-check {
    display: inline-flex;
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.expertise-text {
    font-size: 1.05rem;
    color: #555;
    font-weight: 500;
}

.expertise-image-container {
    position: relative;
    padding: 15px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    transition: all 0.3s ease;
    max-width: 100%;
}

.expertise-image-container:hover {
    transform: rotate(0);
}

.expertise-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    transform: rotate(-15deg);
    transition: all 0.3s ease;
}

.expertise-image-container:hover .expertise-badge {
    transform: rotate(0);
}

.expertise-year {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

/* Support Process */
.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.process-timeline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 50px;
    width: 2px;
    height: 100%;
    background: rgba(0, 123, 255, 0.2);
}

.process-step {
    position: relative;
    padding-left: 120px;
    margin-bottom: 50px;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-icon {
    position: absolute;
    left: 0;
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: var(--gradient-primary);
}

.process-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.process-step:hover .process-icon i {
    color: white;
}

.process-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.process-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.process-step:hover .process-content {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.process-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.process-text {
    color: #666;
    margin-bottom: 0;
}

/* Contact CTA */
.contact-cta {
    padding: 50px 0;
}

.cta-box {
    background: var(--gradient-primary);
    border-radius: 15px;
    padding: 50px;
    color: white;
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
}

.cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-text {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    border: none;
}

.btn-cta:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* Certifications Section */
.certifications-area {
    background-color: #fff;
}

.certifications-container {
    position: relative;
    padding: 20px 0;
}

.cert-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 20px 15px;
    position: relative;
    overflow: hidden;
}

.cert-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 0;
}

.cert-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.cert-card:hover:before {
    opacity: 0.05;
}

.cert-logo {
    max-width: 150px;
    max-height: 100px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    filter: grayscale(20%);
    width: auto;
}

.cert-card:hover .cert-logo {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.cert-name {
    margin-top: 15px;
    font-weight: 600;
    color: var(--dark-color);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.cert-card:hover .cert-name {
    color: var(--primary-color);
}

.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 -20px;
}

.owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    background: white !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    position: relative;
    margin: 0 10px;
}

.owl-nav button:hover {
    background: var(--gradient-primary) !important;
}

.owl-nav button i {
    font-size: 1.25rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.owl-nav button:hover i {
    color: white;
}

.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.2) !important;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: var(--gradient-primary) !important;
    transform: scale(1.2);
}

/* Slogan Section */
.slogan-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.tagline-container {
    text-align: center;
    margin: 3rem 0 1rem;
}

.tagline {
    display: inline-block;
    position: relative;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(0,123,255,0.05) 0%, rgba(0,195,255,0.05) 100%);
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.tagline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, #007bff, #00c3ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.tagline-text {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    margin-right: 0.5rem;
}

.tagline-highlight {
    font-size: 1.3rem;
    font-weight: 700;
    color: #007bff;
    display: inline-block;
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .support-hero-title {
        font-size: 3rem;
    }

    .section-title, .expertise-title, .cta-title {
        font-size: 2.2rem;
    }

    .slogan-text {
        font-size: 2rem;
    }

    .slogan-highlight {
        font-size: 2.2rem;
    }

    .owl-nav {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 15px;
    }

    .owl-nav button {
        display: inline-flex !important;
        margin: 0 5px;
    }
}

@media (max-width: 992px) {
    .support-hero-section {
        padding: 120px 0;
    }

    .support-hero-title {
        font-size: 2.5rem;
    }

    .process-timeline:before {
        left: 35px;
    }

    .process-step {
        padding-left: 90px;
    }

    .process-icon {
        width: 70px;
        height: 70px;
    }

    .process-icon i {
        font-size: 2rem;
    }

    .process-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .expertise-badge {
        width: 100px;
        height: 100px;
    }

    .owl-nav button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .support-hero-section {
        padding: 100px 0;
    }

    .support-hero-title {
        font-size: 2rem;
    }

    .support-hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title, .expertise-title, .cta-title {
        font-size: 1.8rem;
    }

    .cta-box {
        padding: 30px;
    }

    .expertise-items {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .certifications-container .owl-nav button {
        width: 40px;
        height: 40px;
        opacity: 0.6;
    }

    .certifications-container {
        padding-left: 5px;
        padding-right: 5px;
    }

    .tagline {
        padding: 1.3rem 1.8rem;
    }

    .owl-carousel {
        width: 100% !important;
        max-width: 100% !important;
    }

    .slogan-text {
        font-size: 1.6rem;
    }

    .slogan-highlight {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .support-hero-section {
        padding: 80px 0;
    }

    .support-hero-title {
        font-size: 1.8rem;
    }

    .breadcrumb {
        padding: 8px 15px;
    }

    .section-title, .expertise-title, .cta-title {
        font-size: 1.6rem;
    }

    .process-content {
        padding: 20px;
    }

    .process-title {
        font-size: 1.2rem;
    }

    .expertise-badge {
        width: 80px;
        height: 80px;
        right: -15px;
        bottom: -15px;
    }

    .expertise-year {
        font-size: 1.5rem;
    }

    .btn-cta {
        width: 100%;
    }

    .tagline {
        padding: 1.2rem 1.5rem;
    }

    .tagline-text, .tagline-highlight {
        display: block;
        margin: 0.3rem 0;
    }
}



.plc-hero-section {
  position: relative;
  padding: 60px 0;
  color: white;
  background-size: cover;
  background-position: center;
  text-align: center;
  width: 100%;
}

.plc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.plc-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.plc-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumb {
  background: rgba(0,0,0,0.25);
  display: inline-flex;
  padding: 12px 25px;
  border-radius: 50px;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #4da6ff;
}

.breadcrumb-item.active {
  color: #4da6ff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  height: 3px;
  width: 60px;
  background: #4da6ff;
  margin-bottom: 1.5rem;
}

/* PLC Intro Section */
.plc-intro {
  padding: 80px 0;
}

.plc-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #4da6ff;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.plc-content {
  padding: 0 0 0 20px;
}

.plc-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4da6ff;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

/* Project Showcase */
.project-item {
  margin: 15px;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 100%;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.btn-project-details {
  background: #4da6ff;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-project-details:hover {
  background: #3a8ad6;
  color: white;
}

.project-content {
  padding: 20px;
  background: white;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #333;
}

.project-content p {
  color: #666;
  margin-bottom: 0;
}

/* Owl Carousel Navigation */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4da6ff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  opacity: 1;
  background: #3a8ad6 !important;
}

.owl-nav .owl-prev {
  left: 10px;
}

.owl-nav .owl-next {
  right: 10px;
}

/* Call to Action */
.plc-cta {
  background: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.btn-cta {
  background: #4da6ff;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #3a8ad6;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .plc-hero-title {
    font-size: 2.5rem;
  }

  .plc-hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .plc-content {
    padding: 20px 0 0 0;
  }

  .project-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .plc-hero-section {
    padding: 100px 0;
  }

  .plc-hero-title {
    font-size: 2rem;
  }

  .plc-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px;
  }

  .project-image {
    height: 220px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  /* Carousel navigation adjustments */
  .owl-nav button {
    width: 35px;
    height: 35px;
    opacity: 0.6;
  }

  .owl-nav .owl-prev {
    left: 0;
  }

  .owl-nav .owl-next {
    right: 0;
  }

  .plc-showcase .row .col-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .plc-hero-section {
    padding: 80px 0;
  }

  .plc-hero-title {
    font-size: 1.8rem;
  }

  .breadcrumb {
    padding: 8px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .project-image {
    height: 200px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  /* Ensure owl carousel is constrained */
  .owl-carousel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .plc-showcase .row .col-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}


.automation-hero-section {
  position: relative;
  padding: 60px 0;
  color: white;
  background-size: cover;
  background-position: center;
  text-align: center;
  width: 100%;
}

.automation-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.automation-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.automation-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumb {
  background: rgba(0,0,0,0.25);
  display: inline-flex;
  padding: 12px 25px;
  border-radius: 50px;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #4da6ff;
}

.breadcrumb-item.active {
  color: #4da6ff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  height: 3px;
  width: 60px;
  background: #4da6ff;
  margin-bottom: 1.5rem;
}

/* Automation Intro Section */
.automation-intro {
  padding: 80px 0;
}

.automation-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #4da6ff;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.automation-content {
  padding: 0 0 0 20px;
}

.automation-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4da6ff;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

/* Project Showcase */
.project-item {
  margin: 15px;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 100%;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.btn-project-details {
  background: #4da6ff;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-project-details:hover {
  background: #3a8ad6;
  color: white;
}

.project-content {
  padding: 20px;
  background: white;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #333;
}

.project-content p {
  color: #666;
  margin-bottom: 0;
}

/* Owl Carousel Navigation */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4da6ff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  opacity: 1;
  background: #3a8ad6 !important;
}

.owl-nav .owl-prev {
  left: 10px;
}

.owl-nav .owl-next {
  right: 10px;
}

/* Call to Action */
.automation-cta {
  background: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.btn-cta {
  background: #4da6ff;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #3a8ad6;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .automation-hero-title {
    font-size: 2.5rem;
  }

  .automation-hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .automation-content {
    padding: 20px 0 0 0;
  }

  .project-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .automation-hero-section {
    padding: 100px 0;
  }

  .automation-hero-title {
    font-size: 2rem;
  }

  .automation-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px;
  }

  .project-image {
    height: 220px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  /* Carousel navigation adjustments */
  .owl-nav button {
    width: 35px;
    height: 35px;
    opacity: 0.6;
  }

  .owl-nav .owl-prev {
    left: 0;
  }

  .owl-nav .owl-next {
    right: 0;
  }

  .automation-showcase .row .col-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .automation-hero-section {
    padding: 80px 0;
  }

  .automation-hero-title {
    font-size: 1.8rem;
  }

  .breadcrumb {
    padding: 8px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .project-image {
    height: 200px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  /* Ensure owl carousel is constrained */
  .owl-carousel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .automation-showcase .row .col-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}



.maintenance-hero-section {
  position: relative;
  padding: 60px 0;
  color: white;
  background-size: cover;
  background-position: center;
  text-align: center;
  width: 100%;
}

.maintenance-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.maintenance-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.maintenance-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumb {
  background: rgba(0,0,0,0.25);
  display: inline-flex;
  padding: 12px 25px;
  border-radius: 50px;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #4da6ff;
}

.breadcrumb-item.active {
  color: #4da6ff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  height: 3px;
  width: 60px;
  background: #4da6ff;
  margin-bottom: 1.5rem;
}

/* Maintenance Intro Section */
.maintenance-intro {
  padding: 80px 0;
}

.maintenance-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #4da6ff;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.maintenance-content {
  padding: 0 0 0 20px;
}

.maintenance-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4da6ff;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

/* Project Showcase */
.project-item {
  margin: 15px;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 100%;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.btn-project-details {
  background: #4da6ff;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-project-details:hover {
  background: #3a8ad6;
  color: white;
}

.project-content {
  padding: 20px;
  background: white;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #333;
}

.project-content p {
  color: #666;
  margin-bottom: 0;
}

/* Owl Carousel Navigation */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4da6ff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  opacity: 1;
  background: #3a8ad6 !important;
}

.owl-nav .owl-prev {
  left: 10px;
}

.owl-nav .owl-next {
  right: 10px;
}

/* Call to Action */
.maintenance-cta {
  background: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.btn-cta {
  background: #4da6ff;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #3a8ad6;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .maintenance-hero-title {
    font-size: 2.5rem;
  }

  .maintenance-hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .maintenance-content {
    padding: 20px 0 0 0;
  }

  .project-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .maintenance-hero-section {
    padding: 100px 0;
  }

  .maintenance-hero-title {
    font-size: 2rem;
  }

  .maintenance-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px;
  }

  .project-image {
    height: 220px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  /* Carousel navigation adjustments */
  .owl-nav button {
    width: 35px;
    height: 35px;
    opacity: 0.6;
  }

  .owl-nav .owl-prev {
    left: 0;
  }

  .owl-nav .owl-next {
    right: 0;
  }

  .maintenance-showcase .row .col-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .maintenance-hero-section {
    padding: 80px 0;
  }

  .maintenance-hero-title {
    font-size: 1.8rem;
  }

  .breadcrumb {
    padding: 8px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .project-image {
    height: 200px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  /* Ensure owl carousel is constrained */
  .owl-carousel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .maintenance-showcase .row .col-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}


.wiring-hero-section {
  position: relative;
  padding: 60px 0;
  color: white;
  background-size: cover;
  background-position: center;
  text-align: center;
  width: 100%;
}

.wiring-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.wiring-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.wiring-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumb {
  background: rgba(0,0,0,0.25);
  display: inline-flex;
  padding: 12px 25px;
  border-radius: 50px;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #4da6ff;
}

.breadcrumb-item.active {
  color: #4da6ff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  height: 3px;
  width: 60px;
  background: #4da6ff;
  margin-bottom: 1.5rem;
}

/* Wiring Intro Section */
.wiring-intro {
  padding: 80px 0;
}

.wiring-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #4da6ff;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.wiring-content {
  padding: 0 0 0 20px;
}

.wiring-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4da6ff;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

/* Project Showcase */
.project-item {
  margin: 15px;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 100%;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.btn-project-details {
  background: #4da6ff;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-project-details:hover {
  background: #3a8ad6;
  color: white;
}

.project-content {
  padding: 20px;
  background: white;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #333;
}

.project-content p {
  color: #666;
  margin-bottom: 0;
}

/* Owl Carousel Navigation */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4da6ff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  opacity: 1;
  background: #3a8ad6 !important;
}

.owl-nav .owl-prev {
  left: 10px;
}

.owl-nav .owl-next {
  right: 10px;
}

/* Call to Action */
.wiring-cta {
  background: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.btn-cta {
  background: #4da6ff;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #3a8ad6;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .wiring-hero-title {
    font-size: 2.5rem;
  }

  .wiring-hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .wiring-content {
    padding: 20px 0 0 0;
  }

  .project-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .wiring-hero-section {
    padding: 100px 0;
  }

  .wiring-hero-title {
    font-size: 2rem;
  }

  .wiring-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px;
  }

  .project-image {
    height: 220px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  /* Carousel navigation adjustments */
  .owl-nav button {
    width: 35px;
    height: 35px;
    opacity: 0.6;
  }

  .owl-nav .owl-prev {
    left: 0;
  }

  .owl-nav .owl-next {
    right: 0;
  }

  .wiring-showcase .row .col-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .wiring-hero-section {
    padding: 80px 0;
  }

  .wiring-hero-title {
    font-size: 1.8rem;
  }

  .breadcrumb {
    padding: 8px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .project-image {
    height: 200px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  /* Ensure owl carousel is constrained */
  .owl-carousel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .wiring-showcase .row .col-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}


.smart-home-hero-section {
  position: relative;
  padding: 60px 0;
  color: white;
  background-size: cover;
  background-position: center;
  text-align: center;
  width: 100%;
}

.smart-home-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.smart-home-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.smart-home-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumb {
  background: rgba(0,0,0,0.25);
  display: inline-flex;
  padding: 12px 25px;
  border-radius: 50px;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #4da6ff;
}

.breadcrumb-item.active {
  color: #4da6ff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  height: 3px;
  width: 60px;
  background: #4da6ff;
  margin-bottom: 1.5rem;
}

/* Smart Home Intro Section */
.smart-home-intro {
  padding: 80px 0;
}

.smart-home-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #4da6ff;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.smart-home-content {
  padding: 0 0 0 20px;
}

.smart-home-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4da6ff;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

/* Project Showcase */
.project-item {
  margin: 15px;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 100%;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.btn-project-details {
  background: #4da6ff;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-project-details:hover {
  background: #3a8ad6;
  color: white;
}

.project-content {
  padding: 20px;
  background: white;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #333;
}

.project-content p {
  color: #666;
  margin-bottom: 0;
}

/* Owl Carousel Navigation */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4da6ff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  opacity: 1;
  background: #3a8ad6 !important;
}

.owl-nav .owl-prev {
  left: 10px;
}

.owl-nav .owl-next {
  right: 10px;
}

/* Call to Action */
.smart-home-cta {
  background: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.btn-cta {
  background: #4da6ff;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #3a8ad6;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .smart-home-hero-title {
    font-size: 2.5rem;
  }

  .smart-home-hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .smart-home-content {
    padding: 20px 0 0 0;
  }

  .project-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .smart-home-hero-section {
    padding: 100px 0;
  }

  .smart-home-hero-title {
    font-size: 2rem;
  }

  .smart-home-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px;
  }

  .project-image {
    height: 220px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  /* Carousel navigation adjustments */
  .owl-nav button {
    width: 35px;
    height: 35px;
    opacity: 0.6;
  }

  .owl-nav .owl-prev {
    left: 0;
  }

  .owl-nav .owl-next {
    right: 0;
  }

  .smart-home-showcase .row .col-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .smart-home-hero-section {
    padding: 80px 0;
  }

  .smart-home-hero-title {
    font-size: 1.8rem;
  }

  .breadcrumb {
    padding: 8px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .project-image {
    height: 200px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  /* Ensure owl carousel is constrained */
  .owl-carousel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .smart-home-showcase .row .col-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}



.lighting-hero-section {
  position: relative;
  padding: 60px 0;
  color: white;
  background-size: cover;
  background-position: center;
  text-align: center;
  width: 100%;
}

.lighting-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.lighting-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.lighting-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumb {
  background: rgba(0,0,0,0.25);
  display: inline-flex;
  padding: 12px 25px;
  border-radius: 50px;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #4da6ff;
}

.breadcrumb-item.active {
  color: #4da6ff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  height: 3px;
  width: 60px;
  background: #4da6ff;
  margin-bottom: 1.5rem;
}

/* Lighting Intro Section */
.lighting-intro {
  padding: 80px 0;
}

.lighting-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #4da6ff;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.lighting-content {
  padding: 0 0 0 20px;
}

.lighting-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4da6ff;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

/* Project Showcase */
.project-item {
  margin: 15px;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 100%;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.btn-project-details {
  background: #4da6ff;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-project-details:hover {
  background: #3a8ad6;
  color: white;
}

.project-content {
  padding: 20px;
  background: white;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #333;
}

.project-content p {
  color: #666;
  margin-bottom: 0;
}

/* Owl Carousel Navigation */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4da6ff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  opacity: 1;
  background: #3a8ad6 !important;
}

.owl-nav .owl-prev {
  left: 10px;
}

.owl-nav .owl-next {
  right: 10px;
}

/* Call to Action */
.lighting-cta {
  background: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.btn-cta {
  background: #4da6ff;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #3a8ad6;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .lighting-hero-title {
    font-size: 2.5rem;
  }

  .lighting-hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .lighting-content {
    padding: 20px 0 0 0;
  }

  .project-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .lighting-hero-section {
    padding: 100px 0;
  }

  .lighting-hero-title {
    font-size: 2rem;
  }

  .lighting-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px;
  }

  .project-image {
    height: 220px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  /* Carousel navigation adjustments */
  .owl-nav button {
    width: 35px;
    height: 35px;
    opacity: 0.6;
  }

  .owl-nav .owl-prev {
    left: 0;
  }

  .owl-nav .owl-next {
    right: 0;
  }

  .lighting-showcase .row .col-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .lighting-hero-section {
    padding: 80px 0;
  }

  .lighting-hero-title {
    font-size: 1.8rem;
  }

  .breadcrumb {
    padding: 8px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .project-image {
    height: 200px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  /* Ensure owl carousel is constrained */
  .owl-carousel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .lighting-showcase .row .col-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}


.security-hero-section {
  position: relative;
  padding: 60px 0;
  color: white;
  background-size: cover;
  background-position: center;
  text-align: center;
  width: 100%;
}

.security-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.security-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.security-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumb {
  background: rgba(0,0,0,0.25);
  display: inline-flex;
  padding: 12px 25px;
  border-radius: 50px;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #4da6ff;
}

.breadcrumb-item.active {
  color: #4da6ff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  height: 3px;
  width: 60px;
  background: #4da6ff;
  margin-bottom: 1.5rem;
}

/* Security Intro Section */
.security-intro {
  padding: 80px 0;
}

.security-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #4da6ff;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.security-content {
  padding: 0 0 0 20px;
}

.security-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4da6ff;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

/* Project Showcase */
.project-item {
  margin: 15px;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 100%;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.btn-project-details {
  background: #4da6ff;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-project-details:hover {
  background: #3a8ad6;
  color: white;
}

.project-content {
  padding: 20px;
  background: white;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #333;
}

.project-content p {
  color: #666;
  margin-bottom: 0;
}

/* Owl Carousel Navigation */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4da6ff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  opacity: 1;
  background: #3a8ad6 !important;
}

.owl-nav .owl-prev {
  left: 10px;
}

.owl-nav .owl-next {
  right: 10px;
}

/* Call to Action */
.security-cta {
  background: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.btn-cta {
  background: #4da6ff;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #3a8ad6;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .security-hero-title {
    font-size: 2.5rem;
  }

  .security-hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .security-content {
    padding: 20px 0 0 0;
  }

  .project-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .security-hero-section {
    padding: 100px 0;
  }

  .security-hero-title {
    font-size: 2rem;
  }

  .security-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px;
  }

  .project-image {
    height: 220px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  /* Carousel navigation adjustments */
  .owl-nav button {
    width: 35px;
    height: 35px;
    opacity: 0.6;
  }

  .owl-nav .owl-prev {
    left: 0;
  }

  .owl-nav .owl-next {
    right: 0;
  }

  .security-showcase .row .col-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .security-hero-section {
    padding: 80px 0;
  }

  .security-hero-title {
    font-size: 1.8rem;
  }

  .breadcrumb {
    padding: 8px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .project-image {
    height: 200px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  /* Ensure owl carousel is constrained */
  .owl-carousel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .security-showcase .row .col-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}


.electrical-hero-section {
  position: relative;
  padding: 60px 0;
  color: white;
  background-size: cover;
  background-position: center;
  text-align: center;
  width: 100%;
}

.electrical-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.electrical-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.electrical-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumb {
  background: rgba(0,0,0,0.25);
  display: inline-flex;
  padding: 12px 25px;
  border-radius: 50px;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #4da6ff;
}

.breadcrumb-item.active {
  color: #4da6ff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  height: 3px;
  width: 60px;
  background: #4da6ff;
  margin-bottom: 1.5rem;
}

/* Electrical Intro Section */
.electrical-intro {
  padding: 80px 0;
}

.electrical-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #4da6ff;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.electrical-content {
  padding: 0 0 0 20px;
}

.electrical-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4da6ff;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

/* Project Showcase */
.project-item {
  margin: 15px;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 100%;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.btn-project-details {
  background: #4da6ff;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-project-details:hover {
  background: #3a8ad6;
  color: white;
}

.project-content {
  padding: 20px;
  background: white;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #333;
}

.project-content p {
  color: #666;
  margin-bottom: 0;
}

/* Owl Carousel Navigation */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4da6ff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  opacity: 1;
  background: #3a8ad6 !important;
}

.owl-nav .owl-prev {
  left: 10px;
}

.owl-nav .owl-next {
  right: 10px;
}

/* Call to Action */
.electrical-cta {
  background: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.btn-cta {
  background: #4da6ff;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #3a8ad6;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .electrical-hero-title {
    font-size: 2.5rem;
  }

  .electrical-hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .electrical-content {
    padding: 20px 0 0 0;
  }

  .project-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .electrical-hero-section {
    padding: 100px 0;
  }

  .electrical-hero-title {
    font-size: 2rem;
  }

  .electrical-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px;
  }

  .project-image {
    height: 220px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  /* Carousel navigation adjustments */
  .owl-nav button {
    width: 35px;
    height: 35px;
    opacity: 0.6;
  }

  .owl-nav .owl-prev {
    left: 0;
  }

  .owl-nav .owl-next {
    right: 0;
  }

  .electrical-showcase .row .col-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .electrical-hero-section {
    padding: 80px 0;
  }

  .electrical-hero-title {
    font-size: 1.8rem;
  }

  .breadcrumb {
    padding: 8px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .project-image {
    height: 200px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  /* Ensure owl carousel is constrained */
  .owl-carousel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .electrical-showcase .row .col-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}



.ev-hero-section {
  position: relative;
  padding: 60px 0;
  color: white;
  background-size: cover;
  background-position: center;
  text-align: center;
  width: 100%;
}

.ev-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.ev-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.ev-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumb {
  background: rgba(0,0,0,0.25);
  display: inline-flex;
  padding: 12px 25px;
  border-radius: 50px;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #4da6ff;
}

.breadcrumb-item.active {
  color: #4da6ff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  height: 3px;
  width: 60px;
  background: #4da6ff;
  margin-bottom: 1.5rem;
}

/* EV Intro Section */
.ev-intro {
  padding: 80px 0;
}

.ev-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #4da6ff;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.ev-content {
  padding: 0 0 0 20px;
}

.ev-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4da6ff;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

/* Project Showcase */
.project-item {
  margin: 15px;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 100%;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.btn-project-details {
  background: #4da6ff;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-project-details:hover {
  background: #3a8ad6;
  color: white;
}

.project-content {
  padding: 20px;
  background: white;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #333;
}

.project-content p {
  color: #666;
  margin-bottom: 0;
}

/* Owl Carousel Navigation */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4da6ff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  opacity: 1;
  background: #3a8ad6 !important;
}

.owl-nav .owl-prev {
  left: 10px;
}

.owl-nav .owl-next {
  right: 10px;
}

/* Call to Action */
.ev-cta {
  background: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.btn-cta {
  background: #4da6ff;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #3a8ad6;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .ev-hero-title {
    font-size: 2.5rem;
  }

  .ev-hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .ev-content {
    padding: 20px 0 0 0;
  }

  .project-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .ev-hero-section {
    padding: 100px 0;
  }

  .ev-hero-title {
    font-size: 2rem;
  }

  .ev-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px;
  }

  .project-image {
    height: 220px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  /* Carousel navigation adjustments */
  .owl-nav button {
    width: 35px;
    height: 35px;
    opacity: 0.6;
  }

  .owl-nav .owl-prev {
    left: 0;
  }

  .owl-nav .owl-next {
    right: 0;
  }

  .ev-showcase .row .col-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .ev-hero-section {
    padding: 80px 0;
  }

  .ev-hero-title {
    font-size: 1.8rem;
  }

  .breadcrumb {
    padding: 8px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .project-image {
    height: 200px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  /* Ensure owl carousel is constrained */
  .owl-carousel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .ev-showcase .row .col-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}


.solar-hero-section {
  position: relative;
  padding: 60px 0;
  color: white;
  background-size: cover;
  background-position: center;
  text-align: center;
  width: 100%;
}

.solar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.solar-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.solar-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumb {
  background: rgba(0,0,0,0.25);
  display: inline-flex;
  padding: 12px 25px;
  border-radius: 50px;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #4da6ff;
}

.breadcrumb-item.active {
  color: #4da6ff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  height: 3px;
  width: 60px;
  background: #4da6ff;
  margin-bottom: 1.5rem;
}

/* Solar Intro Section */
.solar-intro {
  padding: 80px 0;
}

.solar-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #4da6ff;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.solar-content {
  padding: 0 0 0 20px;
}

.solar-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4da6ff;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

/* Project Showcase */
.project-item {
  margin: 15px;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 100%;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  visibility:hidden;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.btn-project-details {
  background: #4da6ff;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-project-details:hover {
  background: #3a8ad6;
  color: white;
}

.project-content {
  padding: 20px;
  background: white;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #333;
}

.project-content p {
  color: #666;
  margin-bottom: 0;
}

/* Owl Carousel Navigation */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4da6ff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  opacity: 1;
  background: #3a8ad6 !important;
}

.owl-nav .owl-prev {
  left: 10px;
}

.owl-nav .owl-next {
  right: 10px;
}

/* Call to Action */
.solar-cta {
  background: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.btn-cta {
  background: #4da6ff;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #3a8ad6;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .solar-hero-title {
    font-size: 2.5rem;
  }

  .solar-hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .solar-content {
    padding: 20px 0 0 0;
  }

  .project-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .solar-hero-section {
    padding: 100px 0;
  }

  .solar-hero-title {
    font-size: 2rem;
  }

  .solar-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px;
  }

  .project-image {
    height: 220px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  /* Carousel navigation adjustments */
  .owl-nav button {
    width: 35px;
    height: 35px;
    opacity: 0.6;
  }

  .owl-nav .owl-prev {
    left: 0;
  }

  .owl-nav .owl-next {
    right: 0;
  }

  .solar-showcase .row .col-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .solar-hero-section {
    padding: 80px 0;
  }

  .solar-hero-title {
    font-size: 1.8rem;
  }

  .breadcrumb {
    padding: 8px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .project-image {
    height: 200px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  /* Ensure owl carousel is constrained */
  .owl-carousel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .solar-showcase .row .col-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}


.wiring-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.wiring-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.wiring-hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.breadcrumb {
  background: rgba(0,0,0,0.25);
  display: inline-flex;
  padding: 12px 25px;
  border-radius: 50px;
  margin-top: 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.breadcrumb-item a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 500;
}

.breadcrumb-item a:hover {
  color: #4da6ff;
}

.breadcrumb-item.active {
  color: #4da6ff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

/* Section Styles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  height: 3px;
  width: 60px;
  background: #4da6ff;
  margin-bottom: 1.5rem;
}

/* Wiring Intro Section */
.wiring-intro {
  padding: 80px 0;
}

.wiring-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #4da6ff;
  color: white;
  padding: 15px 20px;
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.wiring-content {
  padding: 0 0 0 20px;
}

.wiring-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Feature Cards */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.feature-icon {
  font-size: 2.5rem;
  color: #4da6ff;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

/* Project Showcase */
.project-item {
  margin: 15px;
  transition: transform 0.3s ease;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  max-width: 100%;
}

.project-item:hover {
  transform: translateY(-5px);
}

.project-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  max-width: 100%;
}

.project-item:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-item:hover .project-overlay {
  opacity: 1;
}

.btn-project-details {
  background: #4da6ff;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn-project-details:hover {
  background: #3a8ad6;
  color: white;
}

.project-content {
  padding: 20px;
  background: white;
}

.project-content h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
  color: #333;
}

.project-content p {
  color: #666;
  margin-bottom: 0;
}

/* Owl Carousel Navigation */
.owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #4da6ff !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  opacity: 1;
  background: #3a8ad6 !important;
}

.owl-nav .owl-prev {
  left: 10px;
}

.owl-nav .owl-next {
  right: 10px;
}

/* Call to Action */
.wiring-cta {
  background: #f8f9fa;
  padding: 60px 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.cta-text {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 0;
}

.btn-cta {
  background: #4da6ff;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #3a8ad6;
  color: white;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .wiring-hero-title {
    font-size: 2.5rem;
  }

  .wiring-hero-subtitle {
    font-size: 1.1rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .wiring-content {
    padding: 20px 0 0 0;
  }

  .project-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .wiring-hero-section {
    padding: 100px 0;
  }

  .wiring-hero-title {
    font-size: 2rem;
  }

  .wiring-hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .feature-card {
    padding: 25px;
  }

  .project-image {
    height: 220px;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  /* Carousel navigation adjustments */
  .owl-nav button {
    width: 35px;
    height: 35px;
    opacity: 0.6;
  }

  .owl-nav .owl-prev {
    left: 0;
  }

  .owl-nav .owl-next {
    right: 0;
  }

  .wiring-showcase .row .col-12 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 576px) {
  .wiring-hero-section {
    padding: 80px 0;
  }

  .wiring-hero-title {
    font-size: 1.8rem;
  }

  .breadcrumb {
    padding: 8px 15px;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature-card h3 {
    font-size: 1.3rem;
  }

  .project-image {
    height: 200px;
  }

  .btn-cta {
    width: 100%;
    text-align: center;
  }

  /* Ensure owl carousel is constrained */
  .owl-carousel {
    width: 100% !important;
    max-width: 100% !important;
  }

  .wiring-showcase .row .col-12 {
    padding-left: 5px;
    padding-right: 5px;
  }
}


