/* ===============================================================
   FINAL, UNIFIED, AND COMPLETE STYLESHEET FOR LNT GLOBAL
===============================================================*/

html {
    scroll-behavior: smooth;
  }

  /*--------------------------------------------------------------
  # THEME COLOR VARIABLES
  --------------------------------------------------------------*/
  :root, [data-bs-theme="light"] {
    --color-default: #222222;
    --color-background: #ffffff;
    --color-background-secondary: #f6f6f6;
    --color-heading: #333333;
    --color-text: #555555;
    --color-accent: #f26522;
    --color-accent-hover: #fd7e14;
    --color-contrast: #ffffff;
    --color-footer-bg: #1a1a1a;
    --color-footer-top-bg: #242424;
  }

  [data-bs-theme="dark"] {
    --color-default: #ffffff;
    --color-background: #121212;
    --color-background-secondary: #1a1a1a;
    --color-heading: #eeeeee;
    --color-text: #aaaaaa;
    --color-footer-bg: #0d0d0d;
    --color-footer-top-bg: #121212;
  }

  /*--------------------------------------------------------------
  # General
  --------------------------------------------------------------*/
  body {
      font-family: "Open Sans", sans-serif;
      color: var(--color-text);
      background-color: var(--color-background);
      padding-top: 115px; /* Space for fixed Top Bar + Header */
  }

  a {
      color: var(--color-accent);
      text-decoration: none;
      transition: 0.3s;
  }

  a:hover {
      color: var(--color-accent-hover);
      text-decoration: none;
  }

  h1, h2, h3, h4, h5, h6 {
      font-family: "Poppins", sans-serif;
      color: var(--color-heading);
  }

  /*--------------------------------------------------------------
  # Sections General
  --------------------------------------------------------------*/
  section {
      padding: 60px 0;
      overflow: hidden;
  }

  .home .services {
    background-color: var(--color-background-secondary);
  }

  .section-title {
      text-align: center;
      padding-bottom: 30px;
  }

  .section-title h2 {
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 20px;
      padding-bottom: 20px;
      position: relative;
  }

  .section-title h2::after {
      content: '';
      position: absolute;
      display: block;
      width: 50px;
      height: 3px;
      background: var(--color-accent);
      bottom: 0;
      left: calc(50% - 25px);
  }

  .section-title p {
      margin-bottom: 0;
  }

  /*--------------------------------------------------------------
  # Top Bar
  --------------------------------------------------------------*/
  #topbar {
      background: var(--color-accent);
      height: 45px;
      font-size: 14px;
      color: var(--color-contrast);
      transition: all 0.5s;
      padding: 0;
      z-index: 996;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
  }

  #topbar .contact-info a, #topbar .contact-info i {
      color: var(--color-contrast);
  }

  #topbar .social-links a {
      color: var(--color-contrast);
      padding-left: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: 0.3s;
  }

  #topbar .contact-info a:hover,
  #topbar .social-links a:hover {
      opacity: 0.8;
  }

  #topbar .contact-info i {
      padding-right: 8px;
      line-height: 0;
  }

  #topbar .social-links span {
      margin-right: 10px;
  }

  /*--------------------------------------------------------------
  # Header
  --------------------------------------------------------------*/
  #header {
      background: var(--color-background);
      transition: all 0.5s;
      z-index: 997;
      height: 70px;
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
      position: fixed;
      top: 45px;
      left: 0;
      right: 0;
  }

  [data-bs-theme="dark"] #header {
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.4);
  }

  #header .logo img {
      max-height: 60px;
  }

  /* Theme Toggle Button Styles (Inside Header) */
  .theme-toggle { cursor: pointer; padding: 10px 15px; }
  .theme-icon-dark { display: none; }
  [data-bs-theme="dark"] .theme-icon-light { display: none; }
  [data-bs-theme="dark"] .theme-icon-dark { display: inline-block; }


  /*--------------------------------------------------------------
  # Unified Navigation Menu Styles
  --------------------------------------------------------------*/
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar > ul > li > a i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: var(--color-accent);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 20px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-background);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  [data-bs-theme="dark"] .navbar .dropdown ul {
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4);
  }

  .navbar .dropdown ul li {
    min-width: 220px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: var(--color-text);
    display: block;
    white-space: nowrap;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    background-color: var(--color-accent);
    color: var(--color-contrast);
  }

  .navbar .dropdown .dropdown-divider {
    border-top: 1px solid var(--border-color);
    margin: 5px 0;
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .mobile-nav-toggle {
    color: var(--color-heading);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
  }

  @media (max-width: 991px) {
    .mobile-nav-toggle {
      display: block;
    }
    .navbar ul {
      display: none;
    }
  }

  .navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 998;
  }

  .navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #fff;
  }

  .navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: var(--color-background);
    overflow-y: auto;
    transition: 0.3s;
    border-radius: 8px;
  }

  .navbar-mobile a,
  .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--color-text);
  }

  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover > a {
    color: var(--color-accent);
  }

  .navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: var(--color-background-secondary);
    box-shadow: inset 0px 0px 5px rgba(0, 0, 0, 0.1);
  }

  .navbar-mobile .dropdown-active > ul {
    display: block;
  }


  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #hero {
    width: 100%;
    height: calc(100vh - 115px);
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  #hero .carousel, #hero .carousel-inner, #hero .carousel-item {
    height: 100%;
  }

  .carousel-item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .carousel-caption-box {
    background: rgba(0, 0, 0, 0.65);
    padding: 40px 50px;
    color: var(--color-contrast);
    text-align: center;
    width: 60%;
    border-top: 4px solid var(--color-accent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .carousel-caption-box h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-contrast);
  }

  .btn-get-started {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 15px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    color: var(--color-contrast);
    background: transparent;
    border: 2px solid var(--color-accent);
  }

  .btn-get-started:hover {
    background: var(--color-accent);
  }

  #hero .carousel-indicators button {
    width: 30px;
    height: 3px;
    margin: 0 5px;
    background-color: var(--color-accent) !important;
    opacity: 0.5;
    border: none;
    border-radius: 0;
    padding: 0;
    transition: opacity 0.3s ease;
  }

  #hero .carousel-indicators .active {
    opacity: 1;
  }

  .carousel-control-prev-icon,
  .carousel-control-next-icon {
      background-color: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      width: 3rem;
      height: 3rem;
      background-size: 50%;
  }

  @media (max-width: 992px) {
      .carousel-caption-box {
          width: 85%;
          padding: 30px 20px;
      }
      .carousel-caption-box h2 {
          font-size: 28px;
      }
  }


  /*--------------------------------------------------------------
  # Brands Section
  --------------------------------------------------------------*/
  .brands {
    padding: 20px 0;
    background-color: var(--color-background-secondary);
  }

  .brands .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .brands .swiper-slide img {
    max-height: 45px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
  }

  .brands .swiper-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
  }

  [data-bs-theme="dark"] .brands .swiper-slide img {
    opacity: 0.8;
  }


  /*--------------------------------------------------------------
  # About Us Section
  --------------------------------------------------------------*/
  .about .icon-boxes {
    margin-top: 40px;
  }

  .about .icon-box {
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    background: var(--color-background);
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    border-radius: 8px;
    z-index: 1;
    width: 100%;
  }

  [data-bs-theme="dark"] .about .icon-box {
    box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.25);
  }

  .about .icon-box .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
  }

  .about .icon-box .title a {
    color: var(--color-heading);
    transition: 0.3s;
  }

  .about .content p {
    text-align: justify;
    line-height: 1.8;
  }

  .about .icon-box .description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: justify;
  }

  .about .icon-box .icon {
    margin-bottom: 20px;
    padding-top: 10px;
    display: inline-block;
    transition: all 0.3s ease-in-out;
    font-size: 36px;
    line-height: 1;
    color: var(--color-accent);
  }

  .about .icon-box:hover {
    transform: translateY(-10px);
  }

  .about .icon-box:hover .title a {
    color: var(--color-accent);
  }


  /*--------------------------------------------------------------
  # Services Section
  --------------------------------------------------------------*/
  .services .service-box {
    padding: 30px;
    background: var(--color-background);
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
    width: 100%;
  }

  [data-bs-theme="dark"] .services .service-box {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.25);
  }

  .services .service-box .icon {
    margin-bottom: 20px;
  }

  .services .service-box .icon i {
    font-size: 48px;
    line-height: 1;
    color: var(--color-accent);
    transition: 0.3s;
  }

  .services .service-box h4 {
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 24px;
  }

  .services .service-box h4 a {
    color: var(--color-heading);
    transition: ease-in-out 0.3s;
  }

  .services .service-box p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
  }

  .services .service-box:hover {
    transform: translateY(-10px);
  }

  .services .service-box:hover h4 a {
    color: var(--color-accent);
  }

  /* Styles for service boxes that have an image */
  .service-box.with-image {
    padding: 0;
  }

  .service-box.with-image .service-img {
    height: 180px;
    overflow: hidden;
  }

  .service-box.with-image .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
  }

  .service-box.with-image .icon {
    margin: -40px auto 0 auto;
    width: 80px;
    height: 80px;
    background: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid var(--color-background);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  }

  .service-box.with-image h4,
  .service-box.with-image p {
    padding: 0 20px;
  }

  .service-box.with-image p {
    padding-bottom: 20px;
  }

  .service-box.with-image:hover .service-img img {
    transform: scale(1.1);
  }


  /*--------------------------------------------------------------
  # Cta (Call to Action) Section
  --------------------------------------------------------------*/
  .cta {
    background: var(--color-background-secondary);
    padding: 80px 0;
  }

  .cta h3 {
    color: var(--color-heading);
    font-size: 32px;
    font-weight: 700;
  }

  .cta p {
    color: var(--color-text);
    margin: 20px auto 30px auto;
    max-width: 700px;
  }

  .cta .cta-btn {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 16px;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 5px;
    transition: 0.5s;
    color: var(--color-contrast);
    background: var(--color-accent);
  }

  .cta .cta-btn:hover {
    background: var(--color-accent-hover);
  }


  /*--------------------------------------------------------------
  # Features Section
  --------------------------------------------------------------*/
  .features {
    background: var(--color-accent);
    padding: 40px 0;
    color: var(--color-contrast);
  }

  .feature-box {
    display: flex;
    align-items: center;
    padding: 20px;
    width: 100%;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
  }

  .features .col-lg-3:first-child .feature-box {
    border-left: 0;
  }

  .feature-box .icon {
    font-size: 42px;
    line-height: 1;
    margin-right: 20px;
  }

  .feature-box .title {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 16px;
    color: var(--color-contrast);
  }

  .feature-box .description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.8;
  }

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

  @media (max-width: 991px) {
    .features .col-md-6:nth-child(odd) .feature-box {
      border-left: 0;
    }
  }

  @media (max-width: 767px) {
    .feature-box {
      border-left: 0;
    }
  }


  /*--------------------------------------------------------------
  # Footer
  --------------------------------------------------------------*/
  #footer {
      background: var(--color-footer-bg);
      padding: 0;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.7);
  }

  #footer .footer-top {
      background: var(--color-footer-top-bg);
      padding: 60px 0 30px 0;
  }

  #footer .footer-logo {
      max-height: 50px;
      margin-bottom: 20px;
  }

  #footer .footer-top h4 {
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      position: relative;
      padding-bottom: 12px;
  }

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

  #footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    position: relative;
  }

  #footer .footer-top .footer-links ul a,
  #footer .footer-top .footer-contact a,
  #footer .copyright,
  #footer .copyright a {
      color: rgba(255, 255, 255, 0.7);
      transition: 0.3s;
  }

  #footer .footer-top .footer-links ul a:hover,
  #footer .copyright a:hover,
  #footer .footer-top .footer-contact a:hover {
      color: var(--color-accent);
      transform: translateX(5px);
  }

  #footer .footer-contact .contact-item { display: flex; align-items: flex-start; margin-top: 15px; }
  #footer .footer-contact .contact-item:first-of-type { margin-top: 0; }
  #footer .footer-contact .contact-item i { font-size: 20px; color: var(--color-accent); margin-right: 15px; flex-shrink: 0; line-height: 1.6; }
  #footer .footer-contact .contact-item div { font-size: 14px; line-height: 1.6; }
  #footer .footer-top .footer-newsletter form { margin-top: 30px; background: var(--color-background); padding: 6px 10px; position: relative; border-radius: 4px; }
  #footer .footer-top .footer-newsletter form input[type=email] { border: 0; padding: 4px; width: calc(100% - 110px); background: transparent; color: var(--color-text); }
  #footer .footer-top .footer-newsletter form input[type=submit] { position: absolute; top: 0; right: 0; bottom: 0; border: 0; background: var(--color-accent); font-size: 16px; padding: 0 20px; color: var(--color-contrast); transition: 0.3s; border-radius: 0 4px 4px 0; }
  #footer .footer-top .footer-newsletter form input[type=submit]:hover { background: var(--color-accent-hover); }
  #footer .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding: 1rem; }
  #footer .social-links a { font-size: 18px; display: inline-block; background: #333; color: #fff; line-height: 1; padding: 8px 0; margin-right: 4px; border-radius: 4px; text-align: center; width: 36px; height: 36px; transition: 0.3s; }
  #footer .social-links a:hover { background: var(--color-accent); color: var(--color-contrast); }


  /*--------------------------------------------------------------
  # Breadcrumbs
  --------------------------------------------------------------*/
  .breadcrumbs {
    padding: 20px 0;
    background: var(--color-background-secondary);
    min-height: 40px;
  }

  .breadcrumbs h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-heading);
  }

  .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
  }

  .breadcrumbs ol li + li {
    padding-left: 10px;
  }

  .breadcrumbs ol li + li::before {
    display: inline-block;
    padding-right: 10px;
    color: #6c757d;
    content: "/";
  }

  .breadcrumbs ol li:last-child {
    color: var(--color-text);
    pointer-events: none;
  }

  @media (max-width: 768px) {
    .breadcrumbs .d-flex { display: block !important; }
    .breadcrumbs ol { display: block; }
    .breadcrumbs ol li { display: inline-block; }
  }


  /*--------------------------------------------------------------
  # Contact Section
  --------------------------------------------------------------*/
  .contact .info { border-top: 3px solid var(--color-accent); border-bottom: 3px solid var(--color-accent); padding: 30px; background: var(--color-background); width: 100%; box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1); }
  [data-bs-theme="dark"] .contact .info { box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.25); }
  .contact .info i { font-size: 20px; color: var(--color-accent); float: left; width: 44px; height: 44px; background: #e7f5fb; display: flex; justify-content: center; align-items: center; border-radius: 50px; transition: all 0.3s ease-in-out; }
  [data-bs-theme="dark"] .contact .info i { background: rgba(255, 255, 255, 0.1); }
  .contact .info h4 { padding: 0 0 0 60px; font-size: 22px; font-weight: 600; margin-bottom: 5px; }
  .contact .info p { padding: 0 0 10px 60px; margin-bottom: 20px; font-size: 14px; }
  .contact .info .email p { padding-top: 5px; }
  .contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i { background: var(--color-accent); color: #fff; }
  .contact .php-email-form { width: 100%; border-top: 3px solid var(--color-accent); border-bottom: 3px solid var(--color-accent); padding: 30px; background: var(--color-background); box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12); }
  [data-bs-theme="dark"] .contact .php-email-form { box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.25); }
  .contact .php-email-form .form-group { padding-bottom: 8px; }
  .contact .php-email-form input, .contact .php-email-form textarea { border-radius: 0; box-shadow: none; font-size: 14px; }
  .contact .php-email-form input { height: 44px; }
  .contact .php-email-form textarea { padding: 10px 12px; }
  .contact .php-email-form button[type=submit] { background: var(--color-accent); border: 0; padding: 10px 24px; color: #fff; transition: 0.4s; border-radius: 4px; }
  .contact .php-email-form button[type=submit]:hover { background: var(--color-accent-hover); }


  /*--------------------------------------------------------------
  # Portfolio Section
  --------------------------------------------------------------*/
  .portfolio #portfolio-flters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
  }

  .portfolio #portfolio-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
  }

  .portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
    color: var(--color-contrast);
    background: var(--color-accent);
  }

  .portfolio .portfolio-item {
    margin-bottom: 30px;
  }

  .portfolio .portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: 8px;
  }

  .portfolio .portfolio-wrap::before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
  }

  .portfolio .portfolio-wrap img {
    transition: all ease-in-out 0.3s;
  }

  .portfolio .portfolio-wrap .portfolio-info {
    opacity: 0;
    position: absolute;
    bottom: -20px;
    left: 15px;
    right: 15px;
    transition: all ease-in-out 0.3s;
    z-index: 3;
  }

  .portfolio .portfolio-wrap .portfolio-info h4 {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
  }

  .portfolio .portfolio-wrap .portfolio-info p {
    color: #fff;
    font-size: 14px;
    margin-bottom: 0;
  }

  .portfolio .portfolio-wrap .portfolio-links {
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: all ease-in-out 0.3s;
    z-index: 3;
  }

  .portfolio .portfolio-wrap .portfolio-links a {
    color: #fff;
    font-size: 28px;
    text-align: center;
    background: var(--color-accent);
    transition: 0.3s;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    margin: 0 4px;
  }

  .portfolio .portfolio-wrap .portfolio-links a:hover {
    background: var(--color-accent-hover);
  }

  .portfolio .portfolio-wrap:hover::before {
    opacity: 1;
  }

  .portfolio .portfolio-wrap:hover .portfolio-info {
    opacity: 1;
    bottom: 15px;
  }

  .portfolio .portfolio-wrap:hover .portfolio-links {
    opacity: 1;
  }

  .portfolio .portfolio-wrap:hover img {
    transform: scale(1.1);
  }


  /*--------------------------------------------------------------
  # Quote Form Section
  --------------------------------------------------------------*/
  .quote-form {
    padding: 60px 0;
  }

  .quote-form .php-email-form {
    width: 100%;
    padding: 30px;
    background: var(--color-background);
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
  }

  [data-bs-theme="dark"] .quote-form .php-email-form {
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.25);
  }

  .quote-form .php-email-form .form-group {
    padding-bottom: 8px;
  }

  .quote-form .php-email-form label {
    padding-bottom: 8px;
    font-weight: 500;
  }

  .quote-form .php-email-form input,
  .quote-form .php-email-form textarea,
  .quote-form .php-email-form select {
    border-radius: 4px;
    box-shadow: none;
    font-size: 14px;
  }

  .quote-form .php-email-form input {
    height: 44px;
  }

  .quote-form .php-email-form textarea {
    padding: 10px 12px;
  }

  .quote-form .php-email-form button[type=submit] {
    background: var(--color-accent);
    border: 0;
    padding: 10px 30px;
    color: #fff;
    transition: 0.4s;
    border-radius: 5px;
  }

  .quote-form .php-email-form button[type=submit]:hover {
    background: var(--color-accent-hover);
  }


  /*--------------------------------------------------------------
  # Brands Page & Section Header
  --------------------------------------------------------------*/
  .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
  }

  .section-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-heading);
    margin: 0;
  }

  .section-header a {
    font-weight: 500;
    color: var(--color-accent);
  }

  .brands-page .brand-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background: var(--color-background);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    transition: 0.3s;
    height: 100%;
  }

  [data-bs-theme="dark"] .brands-page .brand-logo-box {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  }

  .brands-page .brand-logo-box img {
    max-height: 50px;
    transition: 0.3s;
  }

  .brands-page .brand-logo-box:hover img {
    transform: scale(1.1);
  }


  /*--------------------------------------------------------------
  # Brand Products Page
  --------------------------------------------------------------*/
  .brand-products .brand-header {
    text-align: center;
    padding-bottom: 40px;
  }

  .brand-products .brand-header img {
    max-height: 80px;
  }

  .brand-products .product-card {
    background: var(--color-background);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
  }

  [data-bs-theme="dark"] .brand-products .product-card {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.25);
  }

  .brand-products .product-card .product-img {
    max-height: 250px;
    overflow: hidden;
  }

  .brand-products .product-card .product-img img {
    width: 100%;
    transition: 0.3s ease-in-out;
  }

  .brand-products .product-card .product-info {
    padding: 25px;
  }

  .brand-products .product-card .product-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .brand-products .product-card .product-info p {
    font-size: 14px;
    margin-bottom: 20px;
    color: var(--color-text);
  }

  .brand-products .product-card .product-info .btn-get-quote {
    background: var(--color-accent);
    color: var(--color-contrast);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
  }

  .brand-products .product-card .product-info .btn-get-quote:hover {
    background: var(--color-accent-hover);
  }

  .brand-products .product-card:hover .product-img img {
    transform: scale(1.1);
  }

  .brand-products .brand-introduction {
    margin-bottom: 40px;
  }

  .brand-products #product-flters {
    padding: 0;
    margin: 0 auto 35px auto;
    list-style: none;
    text-align: center;
  }

  .brand-products #product-flters li {
    cursor: pointer;
    display: inline-block;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    color: var(--color-text);
    margin: 0 4px 8px 4px;
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
    background: var(--color-background-secondary);
  }

  .brand-products #product-flters li:hover,
  .brand-products #product-flters li.filter-active {
    color: var(--color-contrast);
    background: var(--color-accent);
  }


  /*--------------------------------------------------------------
  # Back to Top Button
  --------------------------------------------------------------*/
  .back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: var(--color-accent);
    width: 40px;
    height: 40px;
    border-radius: 50px;
    transition: all 0.4s;
  }

  .back-to-top i {
    font-size: 28px;
    color: #fff;
    line-height: 0;
  }

  .back-to-top:hover {
    background: var(--color-accent-hover);
    color: #fff;
  }

  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }
  /* Search Bar in Header */
.search-item {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.header-search-form {
    background: #f6f9ff; /* Light grey background */
    border: 1px solid #e0e0e0;
    border-radius: 50px; /* Pill shape */
    padding: 5px 15px;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

/* Dark Mode Support for Search Bar */
[data-bs-theme="dark"] .header-search-form {
    background: #333;
    border-color: #444;
}

.header-search-form input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: #555;
    width: 120px; /* Compact width */
    transition: width 0.4s ease-in-out;
}

[data-bs-theme="dark"] .header-search-form input {
    color: #eee;
}

/* Expand the search bar when user clicks it */
.header-search-form input:focus {
    width: 200px;
}

.header-search-form button {
    border: none;
    background: transparent;
    color: #f26522; /* Your Theme Orange */
    padding: 0;
    margin-left: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-search-form button:hover {
    color: #d95316;
}

/* Mobile Adjustment */
@media (max-width: 991px) {
    .search-item {
        margin: 15px 20px; /* Add spacing in mobile menu */
    }
    .header-search-form {
        width: 100%; /* Full width on mobile */
    }
    .header-search-form input {
        width: 100%; /* Full width input on mobile */
    }
}

            .whatsapp-float {
                position: fixed;
                width: 60px;
                height: 60px;
                bottom: 60px;
                right: 10px;
                background-color: #25d366;
                color: #FFF;
                border-radius: 50px;
                text-align: center;
                font-size: 30px;
                box-shadow: 2px 2px 3px #999;
                z-index: 9999;
                /* High z-index ensures it stays on top */
                display: flex;
                align-items: center;
                justify-content: center;
                transition: transform 0.3s ease;
                /* Smooth hover effect */
            }

            .whatsapp-float:hover {
                transform: scale(1.1);
                /* Grows slightly when hovered */
            }

            .whatsapp-float img {
                width: 35px;
                height: 35px;
            }

            /* Mobile Adjustment: Move it slightly to avoid covering content on small screens */
            @media (max-width: 768px) {
                .whatsapp-float {
                    width: 50px;
                    height: 50px;
                    bottom: 20px;
                    right: 20px;
                }

                .whatsapp-float img {
                    width: 28px;
                    height: 28px;
                }
            }

