:root {
  --background-color: #ffffff;
  --default-color: #303030;
  --heading-color: #556270;
  --accent-color: #f1571e;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --topbar: #111111;
}

:root {
  --nav-color: #303030;
  --nav-hover-color: #f1571e;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #556270;
  --nav-dropdown-hover-color: #f1571e;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

@font-face {
  font-family: Montserrat;
  src: url("../font/Montserrat-Medium.ttf");
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  font-family: Montserrat !important;
  overflow-x: hidden;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}






/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
  color: var(--default-color);
  padding: 15px 0;
  transition: all 0.5s;
  background: transparent;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 110px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  text-transform: uppercase;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {

  .image-container-banner {
    max-width: 80% !important;
  }

  /* .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  } */

  /* .header .navmenu {
    order: 3;
  } */
}

.scrolled .header {
  background-color: rgb(8, 8, 8);
}

.sub-heading {
  padding: 0px 0px 40px;

  span {
    color: var(--accent-color);
  }

  h2 {
    color: #1b1b1b;
    font-weight: 600;
    font-size: clamp(20px, 5vw, 28px);
  }
}

.bi-list {
  color: white !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: white;
    padding: 18px 15px;
    font-size: 18px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 5px 17px;
    font-size: 17px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Style for the search bar */
.search-bar {
  position: absolute;
  top: 10px;
  right: 20px;
  background-color: #fff;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: width 0.3s ease-in-out;
  /* Smooth transition for expanding */
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 0;
  overflow: hidden;
  opacity: 0;
  /* Start hidden */
}

.search-bar.active {
  width: 250px;
  /* Adjust the width as needed */
  opacity: 1;
  /* Make it visible */
}

.search-bar input {
  border: none;
  outline: none;
  padding: 5px;
  width: 100%;
  font-size: 16px;
}

/* Bouncy effect */
.search-bar.active {
  animation: bounce 0.5s ease-in-out;
  /* Apply bounce animation */
}

@keyframes bounce {
  0% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* General dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-menu-fullscreen {
  position: fixed;
  top: 8%;
  /* Adjusted top position for proper placement */
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  /* Hidden by default */
  z-index: 1000;
  /* Ensure it appears above all other content */
  flex-wrap: wrap;
  /* Allows wrapping on smaller screens */
  justify-content: center;
  align-items: start;
  /* Start alignment for flexible content positioning */
  padding: 20px;
  /* Padding for content spacing */
  overflow-y: auto;
  /* Enable scrolling for long content */
}

.dropdown-content {
  background: white;
  height: auto;
  padding: 20px;
  width: 100%;
  border: 1px solid #f2f2f2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 2px;
}

.products-info {
  padding: 20px;

}

.desc {
  font-size: 14px;
  text-align: left;
}

.product-info p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-info-sub {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

#categories-tab {
  border-right: 1px solid rgb(202, 202, 202);
}

/* Column styling */
.dropdown-content .products-info {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.dropdown-toggle::after {
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  display: none;
}

/* Typography and hover effects */
.dropdown-content h4 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #333;
}

.dropdown-content p {
  color: #666;
  font-size: 16px;
}

.dropdown-content ul li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s;
}

.dropdown-content ul li a:hover {
  color: #007bff;
  /* Highlight on hover */
}

.highlight {
  color: #fff;
  background-color: #F44336 !important;
  padding: 7px 12px !important;
  border-radius: 3px !important;
  transition: background-color 0.3s ease;
}

/* Show dropdown menu on hover */
.dropdown:hover .dropdown-menu-fullscreen {
  display: flex;
  /* Makes it visible */
}

/* Initially hide all images */
/* Initially hide all images */
.products-info img {
  display: none;
}

/* Style for active category */
.products-info.active p {
  font-weight: bold;
  color: var(--accent-color);
  cursor: pointer;
}

/* Ensure images are responsive */
.products-info img {
  width: 100%;
  height: auto;
}

/* Show images of the active category */
.products-info.active+.col-lg-9 .image-col-1 img,
.products-info.active+.col-lg-9 .image-col-2 img,
.products-info.active+.col-lg-9 .image-col-3 img {
  display: block;
}

/* Default: Show images of Signal Processor when active */
#signal-processor.active+.col-lg-9 .image-col-1 img,
#signal-processor.active+.col-lg-9 .image-col-2 img,
#signal-processor.active+.col-lg-9 .image-col-3 img {
  display: block;
}

/* Responsive styles */
@media (max-width: 992px) {
  .dropdown-content {
    flex-direction: column;
    /* Stack items vertically on medium screens */
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .dropdown-menu-fullscreen {
    padding: 10px;
  }

  .slick-prev {
    left: 0px;
  }

  .slick-next {
    right: 0px;
  }

  .image-container-banner {
    max-width: 100% !important;
  }

  .dropdown-content {
    width: 90%;
    /* Shrink content width */
  }

  .dropdown-menu-fullscreen {
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    /* Hidden by default */
    z-index: 1000;
    /* Ensure it appears above all other content */
    flex-wrap: wrap;
    /* Allows wrapping on smaller screens */
    justify-content: center;
    align-items: start;
    /* Start alignment for flexible content positioning */
    padding: 20px;
    /* Padding for content spacing */
    overflow-y: auto;
    /* Enable scrolling for long content */
  }
}

@media (max-width: 576px) {
  .dropdown-content .col-lg-4 {
    width: 100%;
    /* Full-width columns on small screens */
    margin-bottom: 10px;
  }

  .dropdown-content h4 {
    font-size: 16px;
  }

  .dropdown-content p {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: white !important;
  background: -webkit-linear-gradient(180deg, hsla(0, 0%, 73%, 1) 0%, hsla(0, 0%, 33%, 1) 100%);
  font-size: 14px;
  position: relative;

}

#footer {
  position: relative;
}

.footer-navlinks {
  list-style: none;
  padding: 0px;

  li {
    margin: 10px;
    font-size: 16px;
    color: white;
  }

  a {
    color: white;
  }
}

.footer-contact-info {
  p {
    margin: 0;
    padding: 0;
  }

  a {
    color: white;
  }
}

.footer-left {
  position: absolute;
  top: -25%;
  left: 0%;

  img {
    width: 250px;
  }
}

.footer-right {
  position: absolute;
  bottom: 0%;
  right: 0%;

  img {
    width: 230px;
  }
}

.footer .footer-top {
  padding-top: 50px;

}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid white;
  font-size: 16px;
  color: white;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: black;
  border-color: black;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);

}

.footer .copyright p {
  margin-bottom: 0;
  padding: 0px 10px;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.credits {
  a {
    color: #000;
    font-weight: 600;
  }
}

@media screen and (max-width:768px) {
  .footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid white;
    font-size: 11px;
    color: white;
    margin-right: 10px;
    transition: 0.3s;
  }

  .footer-navlinks {
    list-style: none;
    padding: 0px;

    li {
      margin: 10px;
      font-size: 14px;
      color: white;
    }

    a {
      color: white;
    }
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #101010;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #000;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background: url("../img/subbanner/subbanner.jpg");
  padding: 220px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 300;
  color: white;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;

}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: white;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  padding: 40px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 25px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 90px);
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

@media (max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 66px);
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 30px;
  }
}

.hero p {
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {

  .hero h2,
  .hero p {
    max-width: 60%;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 4px;
  transition: 0.5s;
  margin: 10px;
  animation: fadeInUp 1s both 0.4s;
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {

  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.about .read-more:hover i {
  transform: translate(5px, 0);
}

.vector-main {
  position: absolute;
  top: 10%;
  left: 0%;
  animation: Moving 3s ease-in-out infinite;
}

.vector-footer {
  position: absolute;
  top: 0%;
  animation: Moving 3s ease-in-out infinite;
}

.vector-footer img {
  transform: rotate(-180deg);
  /* Adjust this value as needed */
}

.about-2 {
  position: relative;
}

.about-2 .about-img img {
  position: relative;
  z-index: 2;
}

@keyframes Moving {

  0%,
  100% {
    transform: translateX(0);
    /* Start and end at original position */
  }

  50% {
    transform: translateX(-10px);
    /* Move up */
  }
}

.about-us-info {
  z-index: 100;
  position: relative;
  padding-right: 5%;

  p {
    text-align: justify;
  }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  padding: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  transition: 0.3s;
}

.services .service-item .icon {
  font-size: 36px;
  line-height: 0;
  margin-right: 30px;
  color: var(--accent-color);
}

.services .service-item .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.services .service-item .title a {
  color: var(--heading-color);
}

.services .service-item .description {
  line-height: 24px;
  font-size: 14px;
  margin: 0;
}

.services .service-item:hover {
  border-color: var(--accent-color);
}

.services .service-item:hover .title a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-filters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  display: inline-block;
  padding: 8px 20px;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 5px;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  font-family: var(--heading-font);
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.portfolio .portfolio-filters li:first-child {
  margin-left: 0;
}

.portfolio .portfolio-filters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .portfolio .portfolio-filters li {
    font-size: 14px;
    margin: 0 0 10px 0;
  }
}

.portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
}

.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: -100%;
  z-index: 3;
  transition: all ease-in-out 0.5s;
  background: color-mix(in srgb, var(--surface-color), transparent 10%);
  padding: 15px;
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 600;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 0;
  padding-right: 50px;
}

.portfolio .portfolio-item .portfolio-info .preview-link,
.portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 50px;
  font-size: 24px;
  top: calc(50% - 14px);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  transition: 0.3s;
  line-height: 0;
}

.portfolio .portfolio-item .portfolio-info .preview-link:hover,
.portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-item .portfolio-info .details-link {
  right: 14px;
  font-size: 28px;
}

.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 0;
}

.details li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  text-transform: capitalize !important;

}

.details li::before {
  content: "\2192";
  color: var(--accent-color);
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  /* Centers the bullet vertically */
}

/*.details{*/
/*     overflow:scroll ; */
/*}*/

@media screen and (max-width:768px) {
  .details {
    border: 1px solid rgb(212, 212, 212);
    box-shadow: 2px 2px 10px rgb(228, 228, 228);
    padding: 20px;
    overflow: scroll;
  }
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/



/* Why choose us */
.feature-section {
  display: flex;
  flex-wrap: wrap;
}

.feature-item {
  position: relative;
  margin-bottom: 30px;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  height: 250px;
  gap: 20px;
  background-color: #fff;
  box-shadow: 2px 2px 12px rgb(231, 231, 231);
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

.feature-item:hover {
  transform: scale(1.05);
  /* Subtle scaling effect */
}

.feature-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 5px;
  border: 2px solid transparent;
  z-index: 1;
  pointer-events: none;
  transition: border-color 0.3s ease-in-out;
}

.feature-item:hover::before {
  border-color: var(--accent-color, #0d6efd);
  animation: smooth-border-running 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes smooth-border-running {
  0% {
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
  }

  25% {
    clip-path: polygon(0 0, 100% 0, 0 0, 0 0);
  }

  50% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
  }

  75% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

.feature-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
}

.feature-title {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}

.feature-description {
  font-size: 14px;
  margin-top: 5px;
  color: var(--nav-dropdown-color);
  text-align: center;
}


/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
  padding: 10px 0;
}

.stats .stats-item {
  padding: 30px;
  width: 100%;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 48px;
  display: block;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.stats .stats-item span:after {
  content: "";
  position: absolute;
  display: block;
  width: 25px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.stats .stats-item p {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .team-member {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  border-radius: 5px;
  transition: 0.5s;
  padding: 30px;
  height: 100%;
}

@media (max-width: 468px) {
  .team .team-member {
    flex-direction: column;
    justify-content: center !important;
    align-items: center !important;
  }
}

.team .team-member .pic {
  overflow: hidden;
  width: 150px;
  border-radius: 5px;
  flex-shrink: 0;
}

.team .team-member .pic img {
  transition: ease-in-out 0.3s;
}

.team .team-member:hover {
  transform: translateY(-10px);
}

.team .team-member .member-info {
  padding-left: 30px;
}

@media (max-width: 468px) {
  .team .team-member .member-info {
    padding: 30px 0 0 0;
    text-align: center;
  }
}

.team .team-member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
}

.team .team-member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

.team .team-member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  bottom: 0;
  left: 0;
}

@media (max-width: 468px) {
  .team .team-member span::after {
    left: calc(50% - 25px);
  }
}

.team .team-member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.team .team-member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

@media (max-width: 468px) {
  .team .team-member .social {
    justify-content: center;
  }
}

.team .team-member .social a {
  background: color-mix(in srgb, var(--default-color), transparent 94%);
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  width: 36px;
  height: 36px;
}

.team .team-member .social a i {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 16px;
  margin: 0 2px;
}

.team .team-member .social a:hover {
  background: var(--accent-color);
}

.team .team-member .social a:hover i {
  color: var(--contrast-color);
}

.team .team-member .social a+a {
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  height: 100%;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--background-color);
  float: left;
  margin: 0 10px 0 0;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 50%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  overflow: hidden;


}

.features-read-more {
  background: var(--accent-color);
  color: white;
  padding: 10px 12px;
  border-radius: 50px;
  font-size: 14px;
  transition: all ease-in-out 0.3s;
}

.features-read-more:hover {
  background: #1b1b1b;
  color: white;
}


.features .nav-tabs {
  border: 0;
  display: flex;
  justify-content: center;
}

.features .nav-link {
  border: 0;
  transition: 0.3s;
  color: var(--default-color);
  border-radius: 0;
  font-weight: 600;
  font-size: 15px;
  padding: 12px;
}

.features .nav-link:hover {
  color: var(--accent-color);
}

.features .nav-link.active {
  color: white;
  background-color: var(--accent-color);
}


.features .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
}

.features .details p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .features .nav-tabs {
    border: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;

  }

  .image-container-banner {
    max-width: 75% !important;
  }

  .features .nav-link.active {
    color: #ffffff;
    background: var(--accent-color);
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;

}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-des-main {
  background-color: rgba(255, 255, 255, 0.637);
  padding: 20px;
}

/*.main-slider .swiper-slide img{*/
/*        padding: 5px 20px;*/
/* background: #fbfbfb;*/
/*    border:1px solid #fafafa;;*/
/*}*/

/*--------------------------------------------------------------
# Product Section
--------------------------------------------------------------*/

.shop-section {
  padding: 50px 0;
}

.shop-section .filter-wrap {
  padding: 20px;
}

.filter-wrap .layout-tab ul {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.filter-wrap .layout-tab ul li a {
  display: inline-block;
  padding: 10px 12px;
  background: #ffffff;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.filter-wrap .layout-tab ul li a:hover {
  background: var(--accent-color);
  color: #fff;
}

.filter-wrap .result-text {
  font-size: 18px;
  font-weight: 500;
}

.product-grid {
  transition: transform 0.3s ease-in-out;
}

.product-grid:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

.product-grid .item-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.product-grid .item-image img {
  width: 100%;
  transition: transform 0.4s ease-in-out;
}

.product-grid .item-image:hover img {
  transform: scale(1.1);
}

.product-grid .item-content {
  text-align: center;
  padding: 15px 0;
}

.product-grid .item-title a {
  font-size: 16px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-grid .item-title a:hover {
  color: #0d6efd;
}

.product-grid .rating-star ul {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.product-grid .rating-star ul li {
  color: #ffcc00;
}

.sidebar-section {
  background: #ffffff;
  padding: 20px !important;
  border-right: 1px solid #d9d9d9;
}

.sidebar-section .widget {
  margin-bottom: 20px;
}

.sidebar-section .widget-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: var(--nav-color);
}

.sidebar-section .products-category ul li a {
  display: block;
  padding: 10px 15px;
  border-bottom: 1px solid rgb(231 231 231 / 52%);
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.sidebar-section .products-category ul li a:hover {
  background: var(--accent-color);
  color: #fff;
}

.clearfix {
  list-style: none;
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
}

.blog-posts .post-img {
  max-height: 440px;
  margin: -30px -30px 0 -30px;
  overflow: hidden;
}

.blog-posts .title {
  font-size: 24px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-posts .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-posts .meta-top ul li+li {
  padding-left: 20px;
}

.blog-posts .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-posts .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-posts .content {
  margin-top: 20px;
}

.blog-posts .content .read-more {
  text-align: right;
}

.blog-posts .content .read-more a {
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-block;
  padding: 8px 30px;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 4px;
}

.blog-posts .content .read-more a:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Blog Pagination Section
--------------------------------------------------------------*/
.blog-pagination {
  padding-top: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog-pagination li a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-pagination li a.active,
.blog-pagination li a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-pagination li a.active a,
.blog-pagination li a:hover a {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  padding-bottom: 30px;
}

.blog-details .article {
  background-color: var(--surface-color);
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog-details .title {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 30px 0;
}

.blog-details .content {
  margin-top: 20px;
}

.blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog-details .content blockquote {
  overflow: hidden;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog-details .content blockquote p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--accent-color);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog-details .meta-top {
  margin-top: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-details .meta-top a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .meta-bottom i {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  display: inline;
}

.blog-details .meta-bottom a {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.blog-details .meta-bottom a:hover {
  color: var(--accent-color);
}

.blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--default-color);
  content: ",";
}

.blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog-details .meta-bottom .share i {
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments {
  padding: 10px 0;
}

.blog-comments .comments-count {
  font-weight: bold;
}

.blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog-comments .comment .comment-img img {
  width: 60px;
}

.blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog-comments .comment h5 a {
  font-weight: bold;
  color: var(--default-color);
  transition: 0.3s;
}

.blog-comments .comment h5 a:hover {
  color: var(--accent-color);
}

.blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 5px;
}

.blog-comments .comment.comment-reply {
  padding-left: 40px;
}

/*--------------------------------------------------------------
# Comment Form Section
--------------------------------------------------------------*/
.comment-form {
  padding-top: 10px;
}

.comment-form form {
  background-color: var(--surface-color);
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.comment-form form h4 {
  font-weight: bold;
  font-size: 22px;
}

.comment-form form p {
  font-size: 14px;
}

.comment-form form input {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  border-radius: 4px;
  padding: 10px 10px;
}

.comment-form form input:focus {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border-color: var(--accent-color);
}

.comment-form form input::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form textarea {
  background-color: var(--surface-color);
  color: var(--default-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  height: 120px;
}

.comment-form form textarea:focus {
  color: var(--default-color);
  box-shadow: none;
  border-color: var(--accent-color);
  background-color: var(--surface-color);
}

.comment-form form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.comment-form form .form-group {
  margin-bottom: 25px;
}

.comment-form form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.comment-form form .btn-primary:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact h4 {
  font-size: 18px;
}

.info-item {
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border: 1px solid rgb(165, 165, 165);
  transition: all ease-in 0.3s;
  gap: 10px;
  height: 280px;

}

.info-item:hover {
  border: 1px solid var(--accent-color);
  border-radius: 5px;
}

.contact .info-item i {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;

}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-form-main {
  padding: 30px;
  box-shadow: 2px 2px 10px gainsboro;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-forms {
  height: 100%;
}

.contact .php-email-forms input[type="text"],
.contact .php-email-forms input[type="email"],
.contact .php-email-forms textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  border-radius: 0;
  color: var(--default-color);
  background-color: color-mix(in srgb,
      var(--background-color),
      transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-forms input[type="text"]:focus,
.contact .php-email-forms input[type="email"]:focus,
.contact .php-email-forms textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-forms input[type="text"]::placeholder,
.contact .php-email-forms input[type="email"]::placeholder,
.contact .php-email-forms textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-forms button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 4px;
}

.contact .php-email-forms button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type="text"] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type="text"]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

.categories-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.tags-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/* -------------- Contact---------------- */
.user_details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 25px;
}

.user_details .input_box {
  width: calc(100% / 2 - 20px);
  margin: 0 0 12px 0;
}

.input_box label {
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
}

.input_box label::after {
  content: " *";
  color: red;
}

.input_box input {
  width: 100%;
  height: 45px;
  border: none;
  outline: none;
  font-size: 16px;
  padding-left: 15px;
  box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.1);
  transition: all 120ms ease-out 0s;
}

.input_box input:focus,
.input_box input:valid {
  box-shadow: 0px 0px 0px 2px var(--accent-color);
}

form .gender {
  padding: 0px 25px;
}

.gender .gender_title {
  font-size: 20px;
  font-weight: 500;
}

.gender .category {
  width: 80%;
  display: flex;
  justify-content: space-between;
  margin: 5px 0;
}

.gender .category label {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.gender .category label .dot {
  height: 18px;
  width: 18px;
  background: #d9d9d9;
  border-radius: 50%;
  margin-right: 10px;
  border: 4px solid transparent;
  transition: all 0.3s ease;
}

#radio_1:checked~.category label .one,
#radio_2:checked~.category label .two,
#radio_3:checked~.category label .three {
  border-color: #d9d9d9;
  background: #d64141;
}

.gender input {
  display: none;
}

.register-btn a {
  border: 1px solid var(--accent-color);
}

.register-btn a {
  padding: 5px 12px;
  font-size: 14px;
  transition: all ease-in 0.3s;
}

.register-btn a:hover {
  background-color: var(--accent-color);
  border-radius: 2px;
  color: white;
}

.register-btn:hover .register-btn a {
  color: #fff;
}

.sign-btn {
  border: 1px solid var(--accent-color);
  padding: 8px 12px;
  margin: 15px 0;
  transition: all ease-in 0.3s;
}

.sign-btn:hover {
  background-color: var(--accent-color);
  color: white !important;
}

.sign-btn:hover .sign-btn a {
  color: white;
}

.reg_btn {
  padding: 25px;
  margin: 15px 0;
}

.reg_btn input {
  height: 45px;
  width: 100%;
  border: none;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  background: linear-gradient(to right, #f37a65, #d64141);
  border-radius: 5px;
  color: #ffffff;
  letter-spacing: 1px;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
}

.reg_btn input:hover {
  background: linear-gradient(to right, #d64141, #f37a65);
}

.register-form {
  border: 1px solid var(--accent-color);
  border-radius: 5px;
  padding: 20px;

  .title {
    text-align: center;
    font-family: DMsans;
    font-size: 22px;
  }
}

.login-form {
  display: grid;
  grid-template: 100% / 50% 50%;
  max-width: 800px;
  box-shadow: 2px 2px 9px 0 #e7e7e7;
  padding: 20px;
  border-radius: 5px;
}

.signin-form-main {
  width: 100%;
}

.signin-form {
  display: flex;
  justify-content: center;
}

.forget-info a {
  font-size: 12px;
}

/* Eamil Recovery */
.recovery-email {
  max-width: 800px;
  box-shadow: 2px 2px 9px 0 #e7e7e7;
  padding: 20px;
  border-radius: 5px;
  margin: 0 auto;
}

/* Otp */
.otp-container {
  background: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  width: 100%;
  max-width: 400px;
}

.otp-inputs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.otp-input {
  width: 40px;
  height: 50px;
  font-size: 18px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.otp-input:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 5px var(--accent-color);
}

.resend a {
  color: var(--accent-color);
  text-decoration: none;
}

/* Recovery Mail */
.recovery-mail-btn {
  border: none;
  background-color: white;
  border: 1px solid var(--accent-color);
  transition: all ease-in 0.3s;
  padding: 5px 12px;
  margin: 10px 0px 0px;
}

.recovery-mail-btn:hover {
  background-color: var(--accent-color);
  color: white;
  border-radius: 2px;
}

/* Otp Modal */
.modal {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 30px;
  cursor: pointer;
}

.otp-btn {
  border: 1px solid var(--accent-color);
  background: white;
  padding: 5px 14px;
  font-size: 14px;
  margin: 0px 0px 10px;
  transition: all ease-in 0.3s;
}

.otp-btn:hover {
  background-color: var(--accent-color);
  color: white;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .login-form {
    display: block;
    grid-template: 100%;
  }

  .signin-form {
    display: block;
  }
}

@media screen and (max-width: 584px) {
  .user_details {
    max-height: 340px;
    overflow-y: scroll;
  }

  .user_details::-webkit-scrollbar {
    width: 0;
  }

  .user_details .input_box {
    width: 100%;
  }

  .gender .category {
    width: 100%;
  }
}

@media screen and (max-width: 419px) {
  .gender .category {
    flex-direction: column;
  }
}

/* Careers */
/* From Uiverse.io by vinodjangid07 */
.file-upload-form {
  width: fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
}

.file-upload-label input {
  display: none;
}

.file-upload-label svg {
  height: 30px;
  fill: rgb(82, 82, 82);
}

.file-upload-form {
  border: 1px dashed rgb(82, 82, 82);
  border-radius: 5px;
  padding: 10px;
  font-size: 14px;
}

.file-upload-label {
  cursor: pointer;
}

.file-upload-design {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0px 5px;
}

.browse-button {
  background-color: rgb(82, 82, 82);
  padding: 5px 15px;
  border-radius: 10px;
  color: white;
  transition: all 0.3s;
}

.browse-button:hover {
  background-color: rgb(14, 14, 14);
}

#careers {
  background: url("../img/careers/careers-bg.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.careers-form-main {
  background-color: white;
  padding: 25px;
  border: 1px solid rgb(216, 216, 216);
  border-radius: 5px;
}

/* Product Page */
.product {
  margin-bottom: 30px;
}

.product-dropdown {
  height: auto;
  padding: 0 10px;
}

.product-img {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  border: 1px solid grey;
  transition: all ease-in 0.3s;
}

.product-img img {
  width: 300px;
  position: relative;
  display: block;
  padding: 0px 0px 5px;
  transition: all ease-in 0.3s;
}

.product-img:hover {
  border: 1px solid #dbdbdb;
  border-radius: 7px;
}

.product-info {
  position: relative;
}

.enquiry-details {}

.product-details a {
  border: 1px solid var(--accent-color);
  padding: 6px 12px;
  font-size: 13px;
  transition: all 0.3s ease-in-out;
}

.product-details a:hover {
  background-color: var(--accent-color);
  color: white;
  border-radius: 5px;
}

.enquiry-details {
  margin: 0px 10px;
}

.enquiry-details a {
  border: 1px solid rgb(19, 19, 19);
  padding: 6px 12px;
  font-size: 13px;
  transition: all 0.3s ease-in-out;
  color: #000;
}

.enquiry-details a:hover {
  background-color: #101010;
  color: white;
  border-radius: 5px;
}



.clear-btn a {
  color: white !important;
}

.clear-btn:hover {
  background-color: var(--accent-color);
  color: white !important;
}

.clear-btn:hover a {
  color: white !important;
}

#clear-filter {
  color: white;
}

.clear-filter {
  cursor: pointer;
}

.product-info {
  margin-top: 10px;
  padding: 15px 0px;

  p {
    font-size: 14px;
  }
}

.product-info h3 {
  font-size: 14px;
  color: var(--accent-color);
}

.product-inner {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.product img {
  margin-bottom: 10px;
}

.product-dropdown-main {
  height: 100%;
  padding: 25px 0px;
}

.product-dropdown-main {
  position: sticky;
  top: 0px;
  /* This will make the element stick after 50px of scrolling */
  z-index: 10;
  /* Optional: to ensure it stays on top of other elements */
}

.unique-amplifier-container {
  padding: 10px 10px;
  margin: 12px 0px;
  overflow: hidden;
  position: relative;
}

.unique-amplifier-header {
  color: #111;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
}

.unique-amplifier-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--accent-color);
  background-color: #f9f9f9;
  max-height: 35vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #f1571e #f1f1f1;
}

.unique-amplifier-menu::-webkit-scrollbar {
  width: 8px;
}

.unique-amplifier-menu::-webkit-scrollbar-thumb {
  background-color: #4caf50;
  border-radius: 10px;
}

.unique-amplifier-menu::-webkit-scrollbar-track {
  background-color: #f1f1f1;
  border-radius: 10px;
}

.unique-amplifier-menu::-webkit-scrollbar-thumb:hover {
  background-color: #45a049;
}

.unique-amplifier-item {
  padding: 10px 12px;
  cursor: pointer;
  font-size: 1rem;
  border-bottom: 1px solid #ddd;
  position: relative;
  background: white;
}

.unique-amplifier-item::after {}

.unique-amplifier-subitem {
  padding: 5px 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
  transition: all 0.3s ease-in;
}

.unique-amplifier-subitem:hover {
  background-color: #333;
  color: #fff;
}

.unique-amplifier-submenu {
  display: none;
  list-style: none;
  padding-left: 0;
  margin-top: 5px;
}

.unique-amplifier-search-container {
  display: none;
  padding: 10px;
  border-top: 2px solid #4caf50;
}

.unique-amplifier-container {
  padding: 5px 10px;
  margin: 12px 0px;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.unique-amplifier-content {
  margin-top: 20px;
}

.unique-amplifier-content-item {
  display: none;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 10px;
  font-size: 1rem;
  background-color: #f4f9f4;
}

/* .unique-amplifier-item-list {
  border-bottom: 1px solid #e8e8e8;
} */
/* .unique-amplifier-header {
  border-bottom: 1px solid rgb(196, 196, 196);
} */
.tab-content-main {
  padding: 20px;
  margin: 10px 0px;
  border-radius: 5px;
}

.tab-content .tab-pane {
  display: none;
}

.tab-content .tab-pane.show {
  display: block;
}

.tab-pane.show.active {
  display: block;
}

.unique-amplifier-subitem.active {
  background-color: #333;
  color: #fff;
}

.toggle-icon {
  cursor: pointer;
  font-size: 15px;
}

.unique-amplifier-container input[type="search"] {
  border: none;
  outline: none;
  background: transparent;
  box-shadow: none;
  padding: 0;
  width: 100%;
}

.product-searchbar {
  border: 1px solid #b3b3b3;
  border-radius: 50px;
}

.product-hr {
  margin: 10px 5px !important;
}

/* Carosuel Slider */
/* General Styles */
.custom-carousel-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 20px;
  gap: 20px;
}

.custom-carousel-content {
  flex: 1;
  max-width: 500px;
}

.custom-carousel-content h1 {
  font-size: 130px;
  line-height: 0.7;
  font-family: Righteous;
  font-weight: bolder;
  color: #101010;
}

.custom-carousel-content h2 {
  font-size: clamp(20px, 5vw, 35px);
  margin-bottom: 15px;
  color: var(--accent-color);
}

.custom-product-tagline {
  font-size: clamp(30px, 5vw, 65px) !important;
  color: white !important;
  -webkit-background-clip: text;
  background-clip: text;
  background-color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
    1px 1px 0 #000;
}

.custom-carousel-content p {
  font-size: clamp(14px, 2vw, 18px);
}

.custom-read-more {
  background-color: orange;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 1rem;
}

.custom-carousel {
  flex: 1;
  position: relative;
  width: 100%;
  max-width: 600px;
  overflow: hidden;
}

.custom-carousel-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.custom-slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
}

.custom-slide img {
  width: 100%;
  height: auto;
}

.custom-carousel-controls {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.custom-carousel-controls button {
  background-color: white;
  border: 2px solid #f15922;
  padding: 10px;
  cursor: pointer;
  font-size: 15px;
  border-radius: 50%;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .custom-carousel-container {
    flex-direction: column;
    align-items: center;
  }

  .custom-carousel-content {
    max-width: 100%;
    text-align: center;
  }

  .custom-carousel-content h1 {
    font-size: 2.5rem;
  }

  .custom-carousel-content h2 {
    font-size: 1.5rem;
  }

  .custom-carousel-content p {
    font-size: 0.9rem;
  }

  .custom-read-more {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .custom-carousel {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .custom-carousel-content h1 {
    font-size: 2rem;
  }

  .custom-carousel-content h2 {
    font-size: 1.2rem;
  }

  .custom-carousel-content p {
    font-size: 0.8rem;
  }

  .custom-read-more {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .custom-carousel-controls button {
    padding: 8px;
    font-size: 0.8rem;
  }
}

/* Categories */
.categories-img {
  background-color: #f3f3f3;
  border-radius: 50%;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.categories-slider {
  display: flex;
  justify-content: space-between;
}

.categories-slider-item {
  padding: 18px;
  border-radius: 50px;
  border: 1px solid #e9e9e9;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 80px;
  border-radius: 50px;
}

.categories-slider-item-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.categories-slider-item-main span {
  color: var(--accent-color);
  font-size: 14px;
}

.gallery-grid-main {
  text-align: center;

  h2 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    color: #101010;
  }
}

.gallery-grid-item {
  opacity: 0;
  transform: scale(0.5);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.gallery-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.gallery-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  border-radius: 15px;
}

.gallery-grid-item:hover img {
  transform: scale(1.1);
  opacity: 0.8;
  border-radius: 15px;
}

.gallery-grid-item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease-in-out;
}

.gallery-grid-item:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/* Mixed Grid Sizes */
.gallery-grid-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-grid-item:nth-child(2) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid-item:nth-child(3) {
  grid-column: span 2;
}

.gallery-grid-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-grid-item:nth-child(5) {
  grid-column: span 2;
  grid-row: span 1;
}

.gallery-grid-item:nth-child(6) {
  grid-column: span 2;
  grid-row: span 0;
}

.gallery-grid-item:nth-child(7) {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-grid-item:nth-child(8) {
  grid-column: span 4;
  grid-row: span 1;
}

.gallery-grid-item:nth-child(9) {
  grid-column: span 2;
  grid-row: span 1;
}

@media screen and (max-width: 1400px) {
  .gallery-grid-item:nth-child(7) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-grid-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-grid-item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media screen and (max-width: 1200px) {
  .gallery-grid-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-grid-item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media screen and (max-width: 1024px) {
  .gallery-grid-item:nth-child(9) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-grid-item:nth-child(8) {
    grid-column: span 2;
    grid-row: span 1;
  }
}


@media screen and (max-width: 992px) {

  /* Mixed Grid Sizes */
  .gallery-grid-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-grid-item:nth-child(2) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-grid-item:nth-child(3) {
    grid-column: span 2;
  }

  .gallery-grid-item:nth-child(4) {
    grid-column: span 2;
  }

  .gallery-grid-item:nth-child(5) {
    grid-column: span 2;
  }

  .gallery-grid-item:nth-child(6) {
    grid-column: span 2;
  }

  .gallery-grid-item:nth-child(7) {
    grid-column: span 2;
    grid-row: span 1;
  }

  .gallery-grid-item:nth-child(8) {
    grid-column: span 2;
  }

  .gallery-grid-item:nth-child(9) {
    grid-column: span 4;
    grid-row: span 1;
  }

  .categories-slider-item-main {
    span {
      font-size: 12px;
    }
  }
}

@media screen and (max-width: 768px) {
  .gallery-grid-item img {
    width: 100%;
    height: 250px !important;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }

  /* Mixed Grid Sizes */
  .gallery-grid-item:nth-child(1) {
    grid-column: span 2;
  }

  .gallery-grid-item:nth-child(2) {
    grid-column: span 2;
  }

  .gallery-grid-item:nth-child(3) {
    grid-column: span 2;
  }

  .gallery-grid-item:nth-child(4) {
    grid-column: span 2;
  }

  .gallery-grid-item:nth-child(5) {
    grid-column: span 2;
  }

  .gallery-grid-item:nth-child(6) {
    grid-column: span 2;
  }

  .gallery-grid-item:nth-child(7) {
    grid-column: span 2;
  }

  .gallery-grid-item:nth-child(8) {
    grid-column: span 2;
  }

  .gallery-grid-item:nth-child(9) {
    grid-column: span 4;
    grid-row: span 1;
  }
}

@media screen and (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr)) !important;
  }

}

@media screen and (max-width: 425px) {
  .gallery-grid-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }

  .gallery-grid-item {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Services */

.image-container-services {
  position: relative;
  width: 100%;
  max-width: 400px;
  /* Adjust the max width as needed */
  overflow: hidden;
}

.image-container-services img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease-in-out;
  border-radius: 15px;
  aspect-ratio: 3 / 3;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 15px;
}

.image-container-services:hover .overlay {
  transform: translateY(0);
  border-radius: 15px;
}

.overlay-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  text-align: left;

  h4 {
    font-size: 15px;
    color: var(--accent-color);
    font-weight: 700;
  }

  p {
    font-size: 12px;
    color: #fff;
    overflow: hidden;

  }
}

.image-container-services-main:nth-child(1) {
  margin: 150px 0px 0px;
}

.image-container-services-main:nth-child(2) {
  margin: 100px 0px 0px;
}

.image-container-services-main:nth-child(3) {
  margin: 50px 0px 0px;
}

.image-container-services-main:nth-child(4) {
  margin: 150px 0px 0px;
}

.image-container-services-main:nth-child(5) {
  margin: 100px 0px 0px;
}

.image-container-services-main:nth-child(6) {
  margin: 50px 0px 0px;
}

.image-container-services-main:nth-child(7) {
  margin: 150px 0px 0px;
}

.image-container-services-main:nth-child(8) {
  margin: 100px 0px 0px;
}

.image-container-services-main:nth-child(9) {
  margin: 50px 0px 0px;
}

@media screen and(max-width:1024px) {

  .overlay-content {
    position: absolute;
    bottom: 20px;
    left: 10px;
    color: #fff;
    text-align: left;

    h4 {
      font-size: 12px;
      color: var(--accent-color);
      font-weight: 500;
    }

    p {
      font-size: 12px;
      color: #fff;
      overflow: hidden;
      display: -webkit-box !important;
      -webkit-line-clamp: 4 !important;
      -webkit-box-orient: vertical !important;

    }
  }
}


@media screen and (max-width: 992px) {
  .image-container-banner {
    position: absolute;
    right: -7px !important;
    bottom: -15px !important;

  }


  .overlay-content {
    position: absolute;
    bottom: 20px;
    left: 10px;
    color: #fff;
    text-align: left;

    h4 {
      font-size: 12px;
      color: var(--accent-color);
      font-weight: 500;
    }

    p {
      font-size: 12px;
      color: #fff;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;

    }
  }


  /* Mixed Grid Sizes */
  .image-container-services-main:nth-child(1) {
    margin: 0px 0px 10px;
  }

  .image-container-services-main:nth-child(2) {
    margin: 0px 0px 10px;
  }

  .image-container-services-main:nth-child(3) {
    margin: 0px 0px 10px;
  }

  .image-container-services-main:nth-child(4) {
    margin: 0px 0px 10px;
  }

  .image-container-services-main:nth-child(5) {
    margin: 0px 0px 10px;
  }

  .image-container-services-main:nth-child(6) {
    margin: 0px 0px 10px;
  }

  .image-container-services-main:nth-child(7) {
    margin: 0px 0px 10px;
  }

  .image-container-services-main:nth-child(8) {
    margin: 0px 0px 10px;
  }

  .image-container-services-main:nth-child(9) {
    margin: 0px 0px 10px;
    display: none;
  }
}

/* Testimonals */
.testimonial-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.testimonial-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 30px;
  color: #333;
}

.unique-testimonial-carousel .testimonial-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.unique-testimonial-carousel .testimonial-item:hover {
  transform: scale(1.05);
}

.unique-testimonial-carousel .testimonial-item p {
  font-size: 1rem;
  font-style: italic;
  color: #666;
  margin-bottom: 15px;
}

.unique-testimonial-carousel .testimonial-item h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 5px;
}

.unique-testimonial-carousel .testimonial-item span {
  font-size: 0.9rem;
  color: #777;
}

/* Count up */
.count-up {
  position: relative;
  background: hsla(0, 0%, 73%, 1);

  background: linear-gradient(180deg,
      hsla(0, 0%, 73%, 1) 0%,
      hsla(0, 0%, 33%, 1) 100%);

  background: -moz-linear-gradient(180deg,
      hsla(0, 0%, 73%, 1) 0%,
      hsla(0, 0%, 33%, 1) 100%);

  background: -webkit-linear-gradient(180deg,
      hsla(0, 0%, 73%, 1) 0%,
      hsla(0, 0%, 33%, 1) 100%);

  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#BBBBBB", endColorstr="#555555", GradientType=1);
}

.count-up {
  padding: 80px 0;
  background-color: #f9f9f9;

  p {
    font-weight: 600;
    color: #000;
  }

  span {
    text-align: start;
  }
}

.count-up h4 {
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  color: #fff;
  font-weight: 600;
  margin-bottom: 20px;
}

.count-up-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .count-up-stats {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 20px;
    text-align: center;
  }
}

.stat-item {
  text-align: center;
  background: white;
  border-radius: 20px;
  padding: 20px;

  span {
    font-size: 15px;
  }
}

.count-up-stats {
  display: grid;
}

.count-info {
  span {
    font-size: clamp(20px, 5vw, 26px);
    font-weight: bold;
    color: #ff5722;
    margin-bottom: 10px;
  }
}

.stat-item h2 {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: bold;
  color: #ff5722;
  margin-bottom: 10px;
}


.stat-item p {
  font-size: 1.2rem;
}

/* Features */
.my-unique-slider .slide-1,
.my-unique-slider .slide-2,
.my-unique-slider .slide-3 {
  text-align: center;
  padding: 15px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.my-unique-slider img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.my-unique-slider h2 {
  font-size: 20px;
  color: #333;
  margin-bottom: 10px;
}

.my-unique-slider p {
  font-size: 14px;
  color: #666;
}

.slick-prev,
.slick-next {
  background: #ffffff;
  color: #fff;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  box-shadow: 2px 2px 10px rgb(177, 177, 177);
  transition: all ease-in 0.3s;
}

.slick-next:before,
.slick-prev:before {
  font-family: slick;
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #3c3c3c !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev:hover,
.slick-next:hover {
  background: #ffffff;
}

.slick-prev:hover,
.slick-next:hover {
  background: #ffffff !important;
}

/* Wave Bg */
.wave-background {
  background: url("../img/bg/wave-2.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.wave-background-main {
  position: absolute;
  left: 0;
  top: 0;
}

/* slider-main */
.slider-main {
  background: url("../img/bg/slider.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  position: relative;
}

@media screen and (max-width: 768px) {

  .text-container {
    position: absolute;
    left: 5%;
    top: 25% !important;
    width: 400px !important;
  }

  .header .logo img {
    max-height: 80px !important;
    margin-right: 8px;
  }

  .logo-container {
    position: absolute;
    left: 0;
    bottom: 10px;
    z-index: -1;
  }

  .logo-container img {
    width: 80px !important;
  }

  .custom-slider-row {
    position: relative;
    height: 70vh !important;
  }
}

/* Projects */
.projects-main {
  position: relative;
}

.projects-main-bg {
  position: absolute;
  top: -50%;
  left: 8px;
  z-index: -1;
}

.projects-slider {
  background-color: white;
}

.projects-slider-info {
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 0%,
      rgb(209 209 209) 100%);
  border-radius: 0px 10px 10px 0px;
}

.projects-slider-img img {
  padding: 20px;
}

.projects-slider-info p {
  color: var(--accent-color);
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  /* Ensure content beyond the 3 lines is hidden */
  text-overflow: ellipsis;
  /* Adds the dots after truncation */
  white-space: normal;
  /* Allow wrapping within the lines */
}

.view-more {
  color: var(--accent-color);
  font-size: 14px;
  text-decoration: none;

  a {
    display: flex;

    align-items: center;
  }

  i {
    display: flex;
    font-size: 22px;
  }
}

.count-up-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonial-card img {
  width: 120px;
  border-radius: 10px;
}

.testimonial-card-main {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  margin: 0px 10px;
  box-shadow: 2px 2px 10px gainsboro;
}

.testimonial-card-info {
  padding: 20px 0px;
}

.rating i {
  color: gold;
}

/* Testimonial */
.testimonial-name {
  font-size: 16px;
}

.testimonial-text {
  font-size: 12px;
}

.slick-dots li {
  border-radius: 50px;
  background-color: rgb(204, 204, 204);
  border: 2px solid rgb(204, 204, 204);
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li.slick-active {
  border: 2px solid var(--accent-color);
}

.slick-dots li button:before {
  font-family: slick;
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: #00000000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: #00000000;
}

/* Projects */
.projects-slider {
  box-shadow: 2px 2px 10px grey;
  display: flex;
  justify-content: center;
  border-radius: 10px;
  flex-direction: column;
  margin: 10px 20px;
  border: 1px solid #ebebeb;
}

.projects-slider-info {
  padding: 20px;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.logo-container {
  position: absolute;
  left: 0;
  bottom: 10px;
  z-index: -1;

  img {
    width: 150px;
  }
}

.slide {
  padding: 0px !important;
}

.text-container {
  position: absolute;
  left: 5%;
  top: 20%;
  width: 600px;
  z-index: 1;

  h4 {
    font-size: clamp(24px, 5vw, 50px);
    /* Responsive font size */
    color: #ebebeb;
    font-weight: 600;
  }

  p {
    color: #ebebeb;
    font-size: 14px;
  }
}

.projects-slider-img img {
  width: 200px;
  height: auto;

}

.projects-slider-info {
  padding: 16px;
  flex-grow: 1;
}

/* General Slider Styles */
.custom-slider .slide {
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.custom-slider .text-container {
  animation: fadeInLeft 1s ease-in-out;
}

.custom-slider-main {
  position: relative;
}

.custom-slider .image-container-banner {
  text-align: right;
  animation: fadeInRight 1s ease-in-out;
}

.image-container-banner {
  position: absolute;
  right: 15px;
  bottom: -30px;
}

.custom-slider .logo-container {
  text-align: center;
  margin-top: 20px;
  animation: fadeInUp 1s ease-in-out;
}

.custom-slider h4 {
  font-weight: bold;
}

.custom-slider p {
  margin-top: 10px;
}

.btn-explore {
  margin-top: 20px;
  font-size: 12px;
  text-decoration: none;
  padding: 5px 15px;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

.btn-explore:hover {
  background-color: #333;
  color: white;
}

/* Animations */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-main {
  position: relative;
}

.custom-slider-row {
  position: relative;
  height: 80vh;
}

/* Features */
.features-main {
  h4 {
    font-size: clamp(18px, 4vw, 24px);
  }

  p {
    font-size: clamp(14px, 3vw, 16px);
  }




  @media screen and (max-width: 992px) {
    .features-img-1 {
      width: 350px;
    }

    .features-img-2 {
      width: 350px;
    }

  }



}

.features-read-more {
  font-size: clamp(12px, 3vw, 14px);
  text-decoration: none;

}

/* Swiper */
.categories-swiper-main {
  position: relative;
}

.custom-nav {
  position: absolute;
  right: 10px;
  bottom: 10px;

}

.custom-nav .next-btn {
  border: 2px solid #bfbfbf;
  background: rgb(255, 255, 255);
  border-radius: 50px;
  color: black;
  transition: all ease-in 0.3s;
}

.custom-nav .prev-btn {
  border: 2px solid #bfbfbf;
  background: rgb(255, 255, 255);
  border-radius: 50px;
  color: black;
  transition: all ease-in 0.3s;
}

.custom-nav .prev-btn:hover {
  background: rgb(0, 0, 0);
  color: white;
}

.custom-nav .next-btn:hover {
  background: rgb(0, 0, 0);
  color: white;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
  display: none;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
  display: none;
}

.swiper-button-prev {
  display: flex;

  border: none;
  color: white;
  background-color: rgba(255, 255, 255, 0);

  i {
    color: white;
    background-color: rgb(8, 8, 8);
    border-radius: 50px;
    padding: 5px 9px;
    transition: all ease-in 0.3s;
  }

  i:hover {
    background: grey;
  }
}

.swiper-button-next {
  display: flex;
  border: none;
  color: white;
  background-color: rgba(255, 255, 255, 0);

  i {
    color: white;
    background-color: rgb(8, 8, 8);
    border-radius: 50px;
    padding: 5px 9px;
    transition: all ease-in 0.3s;
  }

  i:hover {
    background: grey;
  }
}

/* Products */
/* Styling for the custom select dropdown */
.custom-select {
  width: 100px;
  border: none;
  border-bottom: 2px solid #000;
  padding: 5px 0;
  background-color: transparent;
  font-size: 14px;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.product-dropdown-main-column {
  position: relative;
  /* Default position */
  top: 0 !important;
  transition: all 0.3s ease;
  /* Smooth transition for sticky effect */
}

.sticky {
  position: sticky;
  top: 80px !important;
  z-index: 100;
  /* Ensure it stays above other elements */
  background-color: white;
  /* Optional: Add background to avoid overlap issues */
}


.custom-select::after {
  content: '\2193';
  font-size: 16px;
  color: #000;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;

}


.custom-select::-ms-expand {
  display: none;
}

.custom-select:focus {
  outline: none;

  border-bottom: 2px solid #007bff;

}

.product-searchbar {
  position: relative;
  margin: 0px 10px;
}

.product-searchbar input[type="search"] {
  padding: 5px 30px 5px 10px;
  width: 100%;
}

.search-icon {
  position: absolute;
  right: 10px;

  top: 50%;
  transform: translateY(-50%);
  /* Center the icon vertically */
  font-size: 18px;
  color: #999;
}


.product-searchbar input[type="search"]::-webkit-search-cancel-button {
  display: none;
}

.unique-amplifier-menu,
.unique-amplifier-submenu {

  /* Start with collapsed height */
  overflow: hidden;
  transition: max-height 0.3s ease;
  /* Smooth transition */
}

.unique-amplifier-menu.open,
.unique-amplifier-submenu.open {
  max-height: max-content !important;
}

/* For smoother transition of max-height */
.unique-amplifier-menu,
.unique-amplifier-submenu {
  transition: max-height 0.3s ease-in-out;
  max-height: max-content !important;
  overflow: hidden;
  /* Hide content that exceeds max-height */
}

.toggle-icon {
  transition: transform 0.3s ease-in-out;
}

/* Optional: Add a smooth scale effect to the icon */
.toggle-icon.bi-chevron-up {
  transform: rotate(180deg);
  /* Arrow pointing up */
}

.toggle-icon.bi-chevron-down {
  transform: rotate(0deg);
  /* Arrow pointing down */
}

#search-icon {
  cursor: pointer;
}

#search-bar {
  transition: width 0.4s ease-in-out;
  overflow: hidden;
  position: relative;
}

#search-input-header {
  border: 1px solid white;
  background: white;
  position: absolute;
  color: white;
  font-size: 14px;
  outline: none;
  width: 100%;
  padding: 0;
  transition: padding 0.4s ease-in-out;
}

#search-bar.expanded {
  width: 300px;
  /* Expand to desired width */
}

#search-bar.expanded #search-input-header {
  padding: 5px;
  /* Input field expands with padding */
}

/*  */

.category-container {
  padding: 15px 15px 0px;
}

.category {
  margin-bottom: 15px;
}

.category-header {
  font-weight: 500;
  font-size: 18px;
  color: #333;
  cursor: pointer;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.category-header i {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.subcategory,
.sub-subcategory {
  margin-left: 20px;
  padding: 5px 0;

}

.checkbox-label {
  cursor: pointer;
  padding: 3px 0;
  font-size: 14px;
}

input[type="checkbox"] {
  margin-right: 10px;
  accent-color: black;
}

.open .subcategory {
  display: block;
}

.open .sub-subcategory {
  display: block;
}

.open .category-header i {
  transform: rotate(180deg);
}

.clear-btn {
  border: 1px solid grey;
  color: black;
  padding: 6px 15px;
  background-color: white;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
}

.clear-btn:hover {
  background-color: #e63946;
  border-radius: 5px;
  border: 1px solid var(--accent-color);
}

.subitems {
  margin-left: 20px;
}

.subcategory-label {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: var(--accent-color) !important;
}

.form-check-input:checked {
  background-color: #000000 !important;
  border-color: #000000 !important;
}

/* Style for subcategory content */
.subcategory {
  overflow: hidden;
  max-height: 300px;
  overflow-y: scroll;
  transition: max-height 0.3s ease-out;

}

/* Style for an open category */
.category.open .subcategory {
  max-height: 300px;
  overflow-y: scroll;
}

.category-header {
  cursor: pointer;
  /* Make the header clickable */
}

.checkbox-label {
  margin: 5px 0;
}

.sub-subcategory-label {
  font-size: 16px !important;
}

/* Product details */

.custom-table {
  border-collapse: collapse;
  width: 100%;
  font-size: 15px;
}

.custom-table thead th {
  background-color: #f8f9fa;
  color: #f96302;
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px;
  text-align: left;
}

.custom-table tbody tr td {
  padding: 10px;
  vertical-align: middle;
}

.custom-table tbody tr:nth-child(even) {
  background-color: #dddddd;
}

.custom-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}

.custom-table tbody tr td strong {
  color: #333;
}

.custom-table tbody tr .highlighted {
  background-color: #fff3cd;
  /* Yellow highlight for specific row */
  color: #d39e00;
  /* Text color for highlighted row */
  font-weight: bold;
}

.table-wrapper {
  position: relative;
}

.custom-table tbody {
  text-align: left;
}

.hidden-row {
  display: none;
}

.table-wrapper.blurred .hidden-row {
  display: table-row;
  filter: blur(5px);
  /* Blurs the additional rows */
}

.table-wrapper.expanded .hidden-row {
  display: table-row;
  filter: none;
  /* Removes the blur when expanded */
}

#toggle-button {
  margin-top: 10px;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

#toggle-button:hover {
  margin-top: 10px;
  border: 1px solid var(--accent-color);
  color: white;
  background-color: var(--accent-color);
}

.thumbs-slider .swiper-slide img {
  /*width:200px;*/
  border: 1px solid rgb(233 233 233);
  transition: all ease-in 0.3s;
  padding: 10px;
  cursor: pointer;
  background: #fafafa;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 13px !important;
}

.thumbs-slider .swiper-slide img:hover {

  border: 1px solid rgb(139, 139, 139);
  border-radius: 5px;
}

#features-info .nav-item {
  color: #F1571E !important;
}

.nav-tabs .nav-item .nav-link {
  color: #F1571E !important;
}

.nav-tabs .nav-item .nav-link.active {
  color: #000 !important;
}

.breadcrumbs {
  color: white !important;
}


/* Sidebar info */

.qr-code {
  width: 150px;
}

.siderbar-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  right: -250px;
  top: 50%;
  transition: right 0.5s ease;
  background-color: white;
  border: 1px solid rgb(236, 236, 236);
  padding: 20px;
  z-index: 1240;
  box-shadow: 2px 2px 10px rgb(189, 189, 189);
}

.sidebar-info-text {
  background-color: var(--accent-color);
  color: white;
  font-weight: 500;
  position: fixed;
  right: 0px;
  top: 50%;
  padding: 12px;
  text-align: center;
  z-index: 1250;
  cursor: pointer;

  span {
    font-size: 12px;
  }
}

.sidebar-info-text:hover+.siderbar-info,
.siderbar-info:hover {
  right: 35px;
}


/* Product details */


/* Lightbox Overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.lightbox-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.lightbox-content img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox-close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #ff5e57;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
}


.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

/* Modal Content */
.custom-state-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 90%;
  max-width: 400px;
  z-index: 1100;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

/* Style for the button */
.checkprice-info {
  padding: 10px 15px;
  background-color: rgb(255, 255, 255);
  color: black;
  border: none;
  cursor: pointer;
  transition: all ease-in 0.3s;
}

.checkprice-info:hover {
  background-color: rgb(0, 0, 0);
  color: white;
  border-radius: 5px;

}

/* Style for the price */
.price-display {
  margin-left: 20px;
  font-size: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -45%);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Close Button */
.custom-state-popup .close-btn {
  background: #F44336;
  border: none;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

/* Dropdown */
.state-dropdown {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 14px 0;
  font-size: 13px;
}

.state-pincode {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin: 14px 0;
  font-size: 13px;
}

/* Open Modal Button */
.enquiry-details {
  display: inline-block;
  padding: 5px 12px;
  color: #000;
  background-color: rgb(255, 255, 255);
  text-decoration: none;
  border: 1px solid grey;
  font-size: 13px;
  text-align: center;
  cursor: pointer;
}

.enquiry-details:hover {
  background-color: #000;
  color: #ddd;
  border-radius: 5px;
}

.checkprice-info {
  display: unset;
  border: 1px solid grey;
  font-size: 13px;
  padding: 5px 10px;
}

.checkprice-info {
  border: 1px solid grey;
  font-size: 13px;
  padding: 5px 10px;
}

.amplifier-main {
  box-shadow: 2px 2px 10px rgb(223, 223, 223);
  padding: 20px;
}

.enquiry-now {
  cursor: pointer;
}

.enquiry-form-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 500px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 9999;
}

.enquiry-form-popup .close-btn {
  background: #F44336;
  border: none;
  color: white;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 10px;
}

.enquiry-form-popup h2 {
  margin-bottom: 20px;
  font-size: 22px;
}

.enquiry-form {
  margin-bottom: 15px;
}

.enquiry-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 13px;
}

.submit-btn {
  background: rgb(255, 255, 255);
  color: black;
  padding: 5px 12px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  border: 1px solid #000;
  transition: all ease-in 0.3s;
}

.submit-btn:hover {
  border-radius: 5px;
  background: rgb(10, 10, 10);
  color: white;
}

.enquiry-form span {
  color: red;
}

.decoration-main {
  padding: 20px;
  box-shadow: 2px 2px 10px rgb(223, 223, 223);
}


/* Subbanner */

/* Products */
.page-title-products {
  color: var(--default-color);
  background: url(../img/subbanner/productsubbanner.png);
  padding: 220px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;

  h1 {
    color: white;
  }
}

.page-title-products .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: white;
}

.page-title-products .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: white;
}

.page-title-products .breadcrumbs ol li+li {
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .page-title-products {
    color: var(--default-color);
    background: url(../img/subbanner/productsubbanner.png);
    padding: 170px 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
  }
}


/* About */

.page-title-about {
  color: var(--default-color);
  background: url(../img/subbanner/aboutsubbanner.jpg);
  padding: 220px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;

  h1 {
    color: white;
  }
}

.page-title-about .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: white;
}

.page-title-about .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: white;
}

.page-title-about .breadcrumbs ol li+li {
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .page-title-about {
    color: var(--default-color);
    background: url(../img/subbanner/aboutsubbanner.jpg);
    padding: 170px 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
  }
}

/* Contact */

.page-title-contact {
  color: var(--default-color);
  background: url(../img/subbanner/contactsubbanner.jpg);
  padding: 220px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;

  h1 {
    color: white;
  }
}

.page-title-contact .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: white;
}

.page-title-contact .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: white;
}

.page-title-contact .breadcrumbs ol li+li {
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .page-title-contact {
    color: var(--default-color);
    background: url(../img/subbanner/contactsubbanner.jpg);
    padding: 170px 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
  }
}

/*ContactNew*/

.page-titles {
  color: var(--default-color);
  background: url(../img/subbanner/subbanner-new.png);
  padding: 220px 0;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 100;

  h1 {
    color: white;
  }
}

.page-titles .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  color: white;
}

.page-titles .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: white;
}

.page-titles .breadcrumbs ol li+li {
  padding-left: 10px;
}

@media screen and (max-width: 768px) {
  .page-titles {
    color: var(--default-color);
    background: url(../img/subbanner/contactsubbanner.jpg);
    padding: 170px 0;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100;
  }
}

.iti__selected-flag {
  display: flex;
  align-items: center;
  gap: 2px;
}

.iti {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#country-code {
  padding: 10px 10px;
  border: 1px solid #ccc;
  border-right: none;
  color: grey;
}

.custom-pagination .page-item .page-link {
  border-radius: 50px;
  margin: 0 5px;
  color: #333;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.custom-pagination {
  display: flex;
  flex-wrap: wrap;
}

.custom-pagination .page-item.active .page-link {
  background-color: #FF5733;
  border-color: #FF5733;
  color: white;
  transform: scale(1.1);
}

.custom-pagination .page-item .page-link:hover {
  background-color: #ddd;
  color: #333;
}

.image-container-banner {
  position: absolute;
  right: -7px !important;
  bottom: -15px !important;
  max-width: 60%;

}


#product-dropdown-main-column {
  position: relative;
  z-index: 100 !important;
}

.form-check-input:checked+.form-check-label {
  background-color: var(--accent-color);
  font-weight: bold;
  padding: 5px;
  color: white;
}

.category-header {
  cursor: pointer;
  padding: 10px 15px 5px;
}


/* Services */
.section-switcher {
  padding: 20px;
}

.menu-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 20px;
  justify-items: center;
  padding: 20px;
}

.menu-button {
  background: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.menu-button h6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  border: 1px solid #ddd;
  margin: 10px 0px;
  padding: 7px 10px;
  text-transform: uppercase;
  font-weight: bold;
  color: #333;

  &:hover {
    background-color: #101010;
    color: white;
    border-radius: 5px;
  }

  transition: all 0.3s ease;
}


.menu-button.active-btn h6 {
  color: white;
  background-color: #101010;

}

.folder {
  display: flex;
  justify-content: center;
  position: relative;
}

.folder__back {
  position: relative;
  width: 100px;
  height: 80px;
  background: #f06035;
  border-radius: 0px 5px 5px 5px;
}

.folder__back::after {
  content: "";
  position: absolute;
  bottom: 98%;
  left: 0;
  width: 30px;
  height: 10px;
  background: #f06035;
  border-radius: 5px 5px 0 0;
}

.paper {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%, 10%);
  width: 70%;
  height: 80%;
  background: #e6e6e6;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.paper:nth-child(2) {
  background: #f2f2f2;
  width: 80%;
  height: 70%;
}

.paper:nth-child(3) {
  background: #ffffff;
  width: 90%;
  height: 60%;
}

.folder__front {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f06035;
  border-radius: 5px;
  transform-origin: bottom;
  transition: all 0.3s ease-in-out;
}

.folder__front.right {
  left: 0;
}

.folder:hover {
  transform: translateY(-8px);
}

.folder:hover .paper {
  transform: translate(-50%, 0%);
}

.folder:hover .folder__front {
  transform: skew(15deg) scaleY(0.6);
}

.folder:hover .right {
  transform: skew(-15deg) scaleY(0.6);
}

.content-display {
  margin-top: 30px;
}

.content-block {
  position: relative;

  display: none;

  h5 {
    font-size: 17px;
    margin: 14px 0px;
  }

  h4 {
    font-size: 17px;
    margin: 14px 0px;
    position: relative;

  }

  p {
    font-size: 14px;
  }
}

.content-block.active-block {
  display: block;
}

.card-content {
  padding: 2px 10px;
  box-shadow: 2px 2px 8px 0px #9a9a9a96;
  background: linear-gradient(to bottom, rgb(255 255 255), rgba(242, 117, 80, 0.4));
  border-radius: 0px 0px 5px 5px;
  transition: all 0.3s ease;
  min-height: 155px;
  display: flex;
  flex-direction: column;
  justify-content: center;

}


.card-content::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
  animation: none;
}

.card-content:hover::after {
  animation: splash 0.6s ease-out;
}

.card-content:hover {
  transform: scale(1.01);
}

@keyframes splash {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(10);
    opacity: 0.4;
  }

  100% {
    transform: translate(-50%, -50%) scale(15);
    opacity: 0;
  }
}

.logo-slider-container {
  position: relative;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  top: 150px !important;
}

.swiper-horizontal>.swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  top: 150px !important;
  height: 6px;
  background: rgba(66, 66, 66, 0.007);
  border-radius: 10px;
}

.swiper-scrollbar .swiper-scrollbar-horizontal {
  background: #ededed !important;
}

/* Scrollbar drag handle */
.swiper-scrollbar-drag {
  background: rgb(240 96 53) !important;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
  height: 13px !important;
  margin-top: -5px;
}

.swiper-scrollbar-drag:hover {
  background: linear-gradient(90deg, #e52e71, #ff8a00);
  height: 13px;

}

.menu-button i {
  padding: 10px 12px;
  font-size: 27px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #F1571E;
  margin: 0px 0px 10px;
  transition: all ease-in 0.3s;

  &:hover {
    background: #F1571E;
    color: white;
  }
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px;
  text-align: center;
}

.icon-box {
  position: relative;
  background: #f5f5f530;
  padding: 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  z-index: 0;
  border: 1px solid #F1571E;
  border-bottom-width: 8px;

}

.icon-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #F1571E, #ff855a, #F1571E, #ff855a);
  background-size: 300% 300%;
  border-radius: 14px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: gradient-rotate 3s linear infinite;
}

.icon-box:hover::before {
  opacity: 1;
}

@keyframes gradient-rotate {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}


.icon-box i {
  font-size: 30px;
  color: #333;
  margin-bottom: 10px;
}

.icon-box span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-top: 5px;
  color: #444;
}

/* Hover Effect */
.icon-box:hover {
  background-color: #000;
  color: #fff;
}

.icon-box:hover i,
.icon-box:hover span {
  color: #fff;
}

.services-text h4 {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 1.8rem;
  color: #222;
}

.services-text h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #F1571E;
  border-radius: 2px;
}

.services-text h4::after {
  animation: slideFade 0.8s ease forwards;
  opacity: 0;
}

@keyframes slideFade {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: 80px;
    opacity: 1;
  }
}

.footer-top img {
  max-height: 110px !important;
}

.icon-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 0;
}

.service-box {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.service-box i {
  font-size: 40px;
  color: #e74c3c;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.service-box h4 {
  font-size: 20px;
  margin: 10px 0;
  font-weight: 600;
  color: #333;
}

.service-box p {
  font-size: 14px;
  color: #666;
}

/* Hover effect with before/after pseudo elements */
.service-box::before,
.service-box::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 100%;
  background: rgba(231, 76, 60, 0.1);
  z-index: -1;
  transition: top 0.3s ease;
  border-radius: 16px;
}

.service-box::after {
  background: rgba(231, 76, 60, 0.05);
  top: 110%;
}

.service-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-box:hover::before,
.service-box:hover::after {
  top: 0;
}

.service-box:hover i {
  color: #c0392b;
}

.page-title-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* Adjust opacity as needed */
  z-index: -1;
}

.page-link {
  position: relative;
  display: block;
  padding: var(--bs-pagination-padding-y) var(--bs-pagination-padding-x);
  font-size: var(--bs-pagination-font-size);
  color: #F44336 !important;
  text-decoration: none;
  background-color: var(--bs-pagination-bg);
  border: var(--bs-pagination-border-width) solid var(--bs-pagination-border-color);
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.active>.page-link,
.page-link.active {
  z-index: 3;
  color: #fff !important;
  background-color: #F44336 !important;
  border-color: #F44336 !important;
}


@media and screen (min-width:992px) {
  .about-main {
    padding: 0px 80px !important;
  }
}




/****** about us page ********/


/* about-1 */

.about-1 {
  padding: 0px 0px;
}

.about-1 .sub-heading {
  color: var(--accent-color);
  font-weight: 500;
  font-size: clamp(20px, 5vw, 28px);
  text-align: center;
  padding: 0px;

}


.about-1 .main-heading {
  color: #1b1b1b;
  font-weight: 600;
  font-size: clamp(20px, 5vw, 28px);
  text-align: center;
}

.about-1 .section-desc {
  font-size: 16px;
  text-align: center;
  margin: 20px 0px;
  line-height: 1.5;
  font-weight: 500;
}

.about-1 .section-content .sec-desc {
  padding: 10px 10px;
  box-shadow: 2px 2px 12px rgb(231, 231, 231);
  border-radius: 12px;
}

.about-1 .about-sec-btn a {
  padding: 15px 40px;
  border-radius: 50px;
  /* background-color: var(--accent-color); */
  color: var(--accent-color);
  text-align: center;
  transition: all 0.5s ease;
  border: 1px solid var(--accent-color);
  font-size: 20px;
}

.about-1 .about-sec-btn a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.about-1 .about-sec-btn {
  margin-top: 40px;
  text-align: center;
}

.about-1 .section-img {
  margin-top: 30px;
}

.about-1 .section-img img {
  width: 100%;
  position: relative;
  z-index: 0;
}

.about-1 .section-content {
  margin-top: 30px;
}

.about-1 .section-content .sec-desc .desc-icon {
  margin-right: 20px;
}

.about-1 .section-content .sec-desc h5 {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.about-1 .section-content .sec-desc p {
  font-size: 16px;
  text-align: center;
  margin-top: 10px;
}

.about-1 .section-details {
  margin-top: 50px;
}

.about-1 .inner-content {
  margin-top: 20px;
  margin-left: 10px;
  text-align: justify;
}

/* about-2 */

.about-2 {
  padding: 0px 0px;
}

.about-2 .sub-heading {
  color: var(--accent-color);
  font-weight: 500;
  font-size: clamp(20px, 5vw, 28px);
  text-align: center;
  padding: 0px;
}

.about-2 .main-heading {
  color: #1b1b1b;
  font-weight: 600;
  font-size: clamp(20px, 5vw, 28px);
  text-align: center;
}

.about-2 .section-desc {
  font-size: 16px;
  text-align: center;
  margin: 20px 0px;
  line-height: 1.5;
  font-weight: 500;
}

.about-2 .section-content {
  margin-top: 50px;
}

.about-2 .section-content .focus-card .img-card img {
  width: 100%;
  transform: scale(1.0);
  transition: all 0.5s ease;
}

.about-2 .section-content .focus-card .img-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 25px;
}

.about-2 .section-content .focus-card .img-card:hover img {
  transform: scale(1.05);
}

.about-2 .section-content .focus-card .img-card::before {
  content: '';
  position: absolute;
  top: 0%;
  left: 0%;
  height: 100%;
  width: 100%;
  background: linear-gradient(to top, #1110106e, #11101000);
  z-index: 1;
}

.about-2 .section-content .focus-card .img-card .img-overlay p {
  text-align: justify;
}

.about-2 .section-content .focus-card .img-card .img-overlay {
  position: absolute;
  bottom: 5%;
  left: 2%;
  width: 95%;
  /* max-width: 600px; */
  color: var(--contrast-color);
  z-index: 5;
}

.about-2 .section-content .focus-card .img-card .img-overlay h5 {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  margin: 20px 0px;
}

.about-2 .section-content .focus-card .img-card .img-overlay p {
  font-size: 14px;
  color: #fff;
}


/* about-3 */


.about-3 .main-heading {
  color: #1b1b1b;
  font-weight: 600;
  font-size: clamp(20px, 5vw, 28px);
  text-align: center;
  padding: 0px;
  margin-bottom: 50px;
}

#chooseus {
  padding: 40px 0px 0px;
}



.about-3 {
  background: url(../img/about-page/pope-about-bg-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
  padding: 40px 0px;
}

.about-3 .left-image img {
  width: 100%;
  border-radius: 10px;
}

/* .about-3 .main-heading {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #1b1b1b;
} */

.about-3 .caption {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 24px;
  background-color: var(--accent-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transform: scale(1.0);
  transition: all 0.5s ease;
}

.about-3 .caption:hover {
  transform: scale(1.03);
}

.about-3 .caption .caption-icon {
  font-size: 40px;
  margin-top: 5px;
  color: #fff;
  transform: rotate(0deg);
  transition: all 0.5s ease;
}

.about-3 .caption:hover .caption-icon {
  transform: rotatey(180deg);
}



.about-3 .caption .caption-text strong {
  display: block;
  font-size: 18px;
  margin-bottom: 0.3rem;
}

.about-3 .caption .caption-text {
  font-size: 16px;
}


@media screen and (max-width: 991px) {
  .about-3 .main-heading {
    margin-bottom: 41px;
  }
}








@media screen and (max-width: 575px) {

  .about-1 .sub-heading,
  .about-1 .main-heading,
  .about-1 .section-desc,
  .about-1 .about-sec-btn {
    text-align: start;
  }

  .about-1 .section-desc {
    margin: 13px 0px;
  }

  .about-1 .about-sec-btn a {
    padding: 10px 20px;
    font-size: 16px;
  }

  section .about-1 {
    padding: 0px 0px 0px;
  }

  .about-1 .container {
    padding: 0;
  }

  .about-1 .inner-content {
    margin-left: 0px;
  }

  .about-2 .sub-heading,
  .about-2 .main-heading,
  .about-2 .section-desc {
    text-align: start;
  }

  section .about-2 {
    padding: 0px 0px;
  }

  .about-1 .section-content .sec-desc {
    padding: 13px 5px;
  }

  .about-2 .section-content .focus-card .img-card .img-overlay h5 {
    font-size: 20px;
    margin: 10px 0px;
  }

  .about-2 .section-content .focus-card .img-card .img-overlay p {
    font-size: 12px;
  }

  .about-3 .caption .caption-text {
    font-size: 14px;
  }

  .about-3 {
    padding: 30px 0px;
  }

  .about-3 .main-heading {
    margin-bottom: 28px;
  }

  .about-3 .caption {
    padding: 9px 6px;
  }

  .about-1 .section-content .sec-desc h5 {
    font-size: 17px;
  }

  .about-1 .section-content .sec-desc p {
    font-size: 14px;
  }
}

.about-2 .container-fluid {
  width: 80%;
}

@media screen and (max-width:1600px) {
  .about-2 .container-fluid {
    width: 90%;
  }

  .about-2 .section-content .focus-card .img-card .img-overlay p {
    font-size: 12px;
  }

  .about-2 .section-content .focus-card .img-card .img-overlay {
    max-width: 95%;
  }
}

@media screen and (max-width:1445px) {
  .about-2 .container-fluid {
    width: 95%;
  }

  .about-2 .section-content .focus-card .img-card .img-overlay p {
    font-size: 12px !important;
  }

  .about-2 .section-content .focus-card .img-card .img-overlay {
    max-width: 570px !important;
  }
}

@media screen and (max-width:1300px) {
  .about-2 .container-fluid {
    width: 100%;
  }


  .about-2 .section-content .focus-card .img-card .img-overlay {
    max-width: 535px !important;
  }
}

@media screen and (max-width:1200px) {

  .about-2 .section-content .focus-card .img-card .img-overlay {
    max-width: 500px !important;
  }
}

@media screen and (max-width:991px) {
  .about-2 .section-content .focus-card .img-card .img-overlay {
    max-width: 95% !important;
  }
}

@media screen and (max-width:575px) {
  .about-2 .section-content .focus-card .img-card .img-overlay p {
    font-size: 10px !important;
  }
}

@media screen and (max-width:425px) {
  .about-2 .section-content .focus-card .img-card .img-overlay h5 {
    font-size: 18px;
    margin: 5px 0px;
  }

  .about-2 .section-content .focus-card .img-card .img-overlay {
    bottom: 0%;
  }

.about-2  .desc {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 1rem;
    line-height: 1.5;
    color: #1F4339;
  }
}