@charset "utf-8";

/* Theme Fonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* Variables */
:root {
  --primary: #4261e4;
  --primary-dark: #3450c8;
  --dark: #1a1a1a;
  --text: #888888;
  --heading: #29293a;
  --light-bg: #f3f3f9;
  --white: #ffffff;
}

/* Common */
::-moz-selection {
  background: var(--primary);
  text-shadow: none;
  color: var(--white);
}
::selection {
  background: var(--primary);
  text-shadow: none;
  color: var(--white);
}

body {
  font-size: 14px;
  font-family: 'PT Sans', sans-serif;
  letter-spacing: 0.5px;
  font-weight: 400;
  color: var(--text);
  overflow-x: hidden;
}

p {
  line-height: 24px;
  color: var(--text);
  font-size: 15px;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--heading);
}

h2 { font-size: 36px; font-weight: 700; }
h3 { font-size: 26px; font-weight: 700; }
h4 { font-size: 24px; font-weight: 700; }
h5 { font-size: 18px; font-weight: 700; }
h6 { font-size: 16px; font-weight: 700; }

img { max-width: 100%; }

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

a:hover { text-decoration: none; }

.pt-70 { padding-top: 70px; }
.pb-40 { padding-bottom: 40px; }
.pt-80 { padding-top: 80px; }
.pb-50 { padding-bottom: 50px; }
.mb-30 { margin-bottom: 30px; }
.mt-30 { margin-top: 30px; }

/* Buttons */
.btn-style-1 {
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 18px 24px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  display: inline-block;
  background-color: var(--primary);
  transition: all 0.3s ease-in-out;
}
.btn-style-1:hover {
  color: #fff;
  background-color: var(--dark);
}

.btn-style-2 {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border: 2px solid #ececec;
  font-family: 'Montserrat', sans-serif;
  color: var(--primary);
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.btn-style-2:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}

/* Preloader */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99999;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

#productList{
  margin-top: 32px;
}

.footer-top{
  padding: 48px 0;
}

/* Scroll Top */
.scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
.scroll-top i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 14px;
  display: block;
  color: #535353;
  background-color: #fff;
  border: 1px solid #535353;
  transition: all 0.3s ease;
  border-radius: 50%;
}
.scroll-top i:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Section Title */
.section-title h2 {
  font-weight: 600;
  font-size: 34px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title h2 span {
  border-bottom: 1px solid var(--primary);
  padding: 0 0 12px 0;
  display: inline-block;
}

/* Header Upper */
.header-upper {
  background-color: var(--light-bg);
  padding: 14px 0;
}
.header-upper ul li {
  padding-right: 16px;
  color: var(--heading);
}
.header-upper ul li a {
  color: var(--heading);
}
.header-upper ul li span,
.header-upper ul li span a {
  display: flex;
  align-items: center;
}
.header-upper ul li i {
  padding-right: 10px;
  font-size: 19px;
  color: var(--primary);
}
.header-upper ul li a:hover { color: var(--primary); }

.header-tagline {
  color: var(--primary);
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Navigation */
.navigation {
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  animation: slideDown 0.4s ease;
}
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.navbar-brand {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 20px 0;
}
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: -1px;
}
.logo-accent { color: var(--primary); }
.logo-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.navigation .navbar-nav .nav-link {
  color: #333;
  padding: 30px 0;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-left: 24px;
  position: relative;
}
.navigation .navbar-nav .nav-link:hover,
.navigation .navbar-nav .nav-link.active {
  color: var(--primary);
}
.navigation .navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.navbar-toggler {
  border: none;
  padding: 0;
  width: 30px;
  height: 24px;
  position: relative;
}
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--heading);
  margin-bottom: 5px;
  transition: all 0.3s;
}
.navbar-toggler span:last-child { margin-bottom: 0; }

/* Slider */
.slider { position: relative; }
.slider .carousel-item {
  height: 600px;
  overflow: hidden;
}
.slider .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slider .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(26,26,26,0.75) 0%, rgba(66,97,228,0.45) 100%);
  z-index: 1;
}
.slider .carousel-caption {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  left: 0;
  right: 0;
  padding: 0;
}
.slider-caption-box p {
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.slider-caption-box h2 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 30px;
}
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 3;
}
.carousel-control-prev { left: 30px; }
.carousel-control-next { right: 30px; }
.carousel-control-prev i,
.carousel-control-next i {
  color: #fff;
  font-size: 24px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: var(--primary);
}
.carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  opacity: 1;
}
.carousel-indicators .active {
  background: var(--primary);
  border-color: var(--primary);
}

/* Promo Box */
.promo-box {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid #ececec;
  transition: all 0.3s ease-in-out;
  height: 100%;
}
.promo-box:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(66,97,228,0.1);
  transform: translateY(-5px);
}
.promo-box i {
  font-size: 48px;
  color: var(--primary);
  margin-bottom: 20px;
  display: block;
}
.promo-box h3 {
  font-size: 20px;
  margin-bottom: 16px;
}

/* About */
.about-text h2 { margin-bottom: 16px; }
.about-text h6 {
  color: var(--primary);
  margin-bottom: 20px;
  line-height: 1.6;
}
.about-img {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.about-img img {
  width: 100%;
  transition: transform 0.5s ease;
}
.about-img:hover img { transform: scale(1.05); }

/* Why List */
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.6;
}
.why-list li i {
  color: var(--primary);
  font-size: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Counter */
.single-count-item {
  text-align: center;
  padding: 30px 20px;
  border: 1px solid #ececec;
  transition: all 0.3s;
}
.single-count-item:hover {
  border-color: var(--primary);
  background: var(--light-bg);
}
.single-count-item h3 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--text);
}
.single-count-item .counter {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}
.counter-suffix {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
}

/* Services */
.service-box {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
  height: 100%;
}
.service-box:hover {
  box-shadow: 0 15px 40px rgba(66,97,228,0.12);
  transform: translateY(-5px);
}
.service-box .image {
  overflow: hidden;
  height: 220px;
}
.service-box .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.service-box:hover .image img { transform: scale(1.08); }
.service-box .lower-box { padding: 24px; }
.service-box .caption h4 {
  font-size: 18px;
  margin-bottom: 12px;
}
.service-box .caption p { margin-bottom: 16px; }

/* Portfolio / Products */
.filter-tabs .filter {
  background: none;
  border: 2px solid #ececec;
  padding: 8px 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--heading);
  cursor: pointer;
  transition: all 0.3s;
  margin: 4px;
}
.filter-tabs .filter:hover,
.filter-tabs .filter.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.portfolio-item {
  background: #fff;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: all 0.3s;
  height: 100%;
}
.portfolio-item:hover {
  box-shadow: 0 15px 40px rgba(66,97,228,0.12);
  transform: translateY(-5px);
}
.portfolio-item-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.portfolio-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.portfolio-item:hover .portfolio-item-img img { transform: scale(1.08); }
.zoom-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(66,97,228,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio-item:hover .zoom-icon { opacity: 1; }
.zoom-icon i {
  color: #fff;
  font-size: 36px;
}
.box-content {
  padding: 24px;
}
.box-content .title {
  font-size: 20px;
  margin-bottom: 4px;
}
.box-content p {
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.product-desc {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

.product-item {
  transition: opacity 0.4s, transform 0.4s;
}
.product-item.hidden {
  display: none;
}

/* Testimonials */
.testimonial-item {
  background: #fff;
  padding: 30px;
  border: 1px solid #ececec;
  height: 100%;
  transition: all 0.3s;
  position: relative;
}
.testimonial-item::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.3;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-item:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(66,97,228,0.1);
}
.testimonial-content {
  padding-top: 20px;
  margin-bottom: 20px;
}
.testimonial-content p {
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
}
.testimonial-author .author-info h5 {
  font-size: 16px;
  margin-bottom: 4px;
}
.testimonial-author .author-info span {
  color: var(--primary);
  font-size: 13px;
}

/* Contact */
.contact-info-box {
  background: var(--dark);
  color: #fff;
  padding: 40px;
  height: 100%;
}
.contact-info-box h3 {
  color: #fff;
  margin-bottom: 16px;
}
.contact-info-box > p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 30px;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-details li i {
  color: var(--primary);
  font-size: 22px;
  margin-top: 4px;
}
.contact-details h5 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-details a,
.contact-details span {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.5;
}
.contact-details a:hover { color: var(--primary); }

.contact-form .form-control {
  border: 1px solid #ececec;
  border-radius: 0;
  padding: 14px 18px;
  font-size: 14px;
  font-family: 'PT Sans', sans-serif;
}
.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.15rem rgba(66,97,228,0.15);
}

/* Footer */
footer { background: var(--dark); }
.f-widgettitle {
  color: #fff;
  font-size: 18px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-link li { margin-bottom: 10px; }
.footer-link a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: all 0.3s;
}
.footer-link a:hover {
  color: var(--primary);
  padding-left: 6px;
}
.footer-contact li { margin-bottom: 20px; }
.footer-contact h5 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-contact span,
.footer-contact span a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.5;
}
.footer-contact a:hover { color: var(--primary); }
.text-white-opacity {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.7;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.copyright {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
  .slider .carousel-item { height: 500px; }
  .slider-caption-box h2 { font-size: 36px; }
  .navigation .navbar-nav .nav-link {
    padding: 12px 0;
    margin-left: 0;
  }
  .navigation .navbar-nav .nav-link.active::after { display: none; }
  body.nav-open { padding-top: 0; }
}

@media (max-width: 767px) {
  .slider .carousel-item { height: 420px; }
  .slider-caption-box h2 { font-size: 28px; }
  .section-title h2 { font-size: 26px; }
  h2 { font-size: 28px; }
  .header-upper ul li span { font-size: 12px; }
  .carousel-control-prev { left: 10px; }
  .carousel-control-next { right: 10px; }
  .single-count-item .counter { font-size: 36px; }
}

@media (max-width: 575px) {
  .slider .carousel-item { height: 380px; }
  .slider-caption-box h2 { font-size: 24px; }
  .btn-style-1 { padding: 14px 20px; }
}
