/**
 * LISIKO TECHNOLOGIES
 * Main Website Stylesheet
 * Brand: Deep Technology Green + Lisiko Yellow
 */

/*==================================================
  GOOGLE FONTS
==================================================*/

@import url("https://fonts.googleapis.com/css2?family=Hind:wght@400;500;600;700&family=Montserrat:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");


/*==================================================
  BRAND VARIABLES
==================================================*/

:root {
  --lisiko-green: #004225;
  --lisiko-green-dark: #002d1a;
  --lisiko-green-deep: #001f13;
  --lisiko-green-light: #eaf3ee;

  --lisiko-yellow: #f5c400;
  --lisiko-yellow-hover: #dcae00;
  --lisiko-yellow-light: #fff6c9;

  --lisiko-white: #ffffff;
  --lisiko-light: #f5f8f6;
  --lisiko-gray: #f5f8f9;

  --lisiko-dark: #242424;
  --lisiko-text: rgba(0, 0, 0, 0.65);
  --lisiko-muted: #777777;

  --lisiko-border: rgba(0, 0, 0, 0.06);
}


/*==================================================
  GENERAL
==================================================*/

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  font-family: "Hind", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  color: var(--lisiko-text);
  overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: var(--lisiko-dark);
}

h1,
.h1 {
  font-size: 2.5rem;
}

h2,
.h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 42px;
}

h3,
.h3 {
  font-size: 1.5rem;
}

h4,
.h4 {
  font-size: 1.3rem;
  line-height: 30px;
}

h5,
.h5 {
  font-size: 1.25rem;
}

h6,
.h6 {
  font-size: 1rem;
}

p {
  line-height: 30px;
}

img {
  max-width: 100%;
}

a {
  color: var(--lisiko-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover,
a:focus {
  color: var(--lisiko-green);
  text-decoration: none;
}

a:focus {
  outline: none;
}


/*==================================================
  FORMS
==================================================*/

input[type="email"],
input[type="password"],
input[type="text"],
input[type="tel"] {
  box-shadow: none;
  height: 45px;
  outline: none;
  font-size: 14px;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus {
  box-shadow: none;
  border: 1px solid var(--lisiko-green);
}

.form-control {
  box-shadow: none;
  border-radius: 0;
}

.form-control:focus {
  box-shadow: none;
  border: 1px solid var(--lisiko-green);
}


/*==================================================
  BUTTONS
==================================================*/

.btn {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 1rem 2.5rem 0.8rem;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.btn.btn-icon i {
  font-size: 16px;
  vertical-align: middle;
  margin-right: 5px;
}

.btn:focus {
  outline: 0;
  box-shadow: none;
}

.btn-main,
.btn-small,
.btn-transparent {
  background: var(--lisiko-green);
  color: var(--lisiko-white);
  transition: all 0.3s ease;
}

.btn-main:hover,
.btn-small:hover {
  background: var(--lisiko-yellow);
  color: var(--lisiko-green-deep);
}

.btn-solid-border {
  border: 2px solid var(--lisiko-yellow);
  background: transparent;
  color: var(--lisiko-white);
}

.btn-solid-border:hover {
  border-color: var(--lisiko-yellow);
  background: var(--lisiko-yellow);
  color: var(--lisiko-green-deep);
}

.btn-transparent {
  background: transparent;
  padding: 0;
  color: var(--lisiko-green);
}

.btn-transparent:hover {
  background: transparent;
  color: var(--lisiko-yellow-hover);
}

.btn-large {
  padding: 20px 45px;
}

.btn-small {
  padding: 13px 25px 10px;
  font-size: 12px;
}

.btn-round {
  border-radius: 4px;
}

.btn-round-full {
  border-radius: 50px;
}

.btn.active:focus,
.btn:active:focus,
.btn:focus {
  outline: 0;
}


/*==================================================
  BACKGROUNDS
==================================================*/

.bg-gray {
  background: var(--lisiko-gray);
}

.bg-primary {
  background: var(--lisiko-green) !important;
}

.bg-primary-dark {
  background: var(--lisiko-green-dark) !important;
}

.bg-primary-darker {
  background: var(--lisiko-green-deep) !important;
}

.bg-dark {
  background: var(--lisiko-dark);
}

.bg-gradient {
  background: linear-gradient(
    145deg,
    var(--lisiko-green) 0%,
    var(--lisiko-green-dark) 100%
  );
}


/*==================================================
  SECTIONS
==================================================*/

.section {
  padding: 100px 0;
}

.section-sm {
  padding: 70px 0;
}

.section-title {
  margin-bottom: 70px;
}

.section-title .title {
  font-size: 50px;
  line-height: 50px;
}

.section-title p {
  color: #666;
  font-family: "Poppins", sans-serif;
}

.subtitle {
  color: var(--lisiko-green);
  font-size: 14px;
  letter-spacing: 1px;
}

.content-title {
  font-size: 40px;
  line-height: 50px;
}


/*==================================================
  TEXT COLORS
==================================================*/

.text-color {
  color: var(--lisiko-green) !important;
}

.text-black {
  color: var(--lisiko-dark);
}

.text-color2 {
  color: var(--lisiko-yellow);
}

.text-sm {
  font-size: 14px;
}

.text-md {
  font-size: 2.25rem;
}

.text-lg {
  font-size: 3.75rem;
}

.no-spacing {
  letter-spacing: 0;
}


/*==================================================
  OVERLAYS
==================================================*/

.overly,
.hero-img,
.cta,
.slider,
.page-title {
  position: relative;
}

.overly:before,
.hero-img:before,
.cta:before,
.slider:before,
.page-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  background: var(--lisiko-green-deep);
}

.overly-2,
.latest-blog,
.cta-block,
.bg-counter {
  position: relative;
}

.overly-2:before,
.latest-blog:before,
.cta-block:before,
.bg-counter:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 31, 19, 0.88);
}


/*==================================================
  PAGE TITLE
==================================================*/

.page-title {
  padding: 100px 0;
}

.page-title .block h1,
.page-title .block p {
  color: var(--lisiko-white);
}


/*==================================================
  PAGE WRAPPER
==================================================*/

.page-wrapper {
  padding: 70px 0;
}


/*==================================================
  NAVIGATION
==================================================*/

#navbar {
  background: var(--lisiko-green-deep);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

#navbar li {
  padding-left: 15px;
}

#navbar .nav-link {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: var(--lisiko-white);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
}

#navbar .nav-link:hover,
#navbar .nav-link:focus,
#navbar .active .nav-link {
  color: var(--lisiko-yellow);
}

#navbar .btn {
  padding: 0.7rem 1.5rem 0.5rem;
  color: var(--lisiko-white);
}

.navbar-toggler {
  padding: 0;
  font-size: 1.5rem;
  color: var(--lisiko-white);
}

.navbar-toggler:focus {
  outline: 0;
}

.navbar-brand {
  color: var(--lisiko-white);
  font-weight: 600;
  letter-spacing: 1px;
}

.navbar-brand span {
  color: var(--lisiko-yellow);
}


/*==================================================
  TOP HEADER
==================================================*/

.header-top {
  background: var(--lisiko-green-deep);
  color: #b4c1ba;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top .header-top-socials {
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 0;
}

.header-top .header-top-socials {
  margin-left: -8px;
}

.header-top .header-top-socials a {
  color: #b4c1ba;
  margin-right: 8px;
  font-size: 16px;
  padding: 0 8px;
}

.header-top .header-top-socials a:hover {
  color: var(--lisiko-yellow);
}

.header-top .header-top-info {
  color: #b4c1ba;
  font-size: 16px;
}

.header-top .header-top-info a span {
  color: var(--lisiko-white);
}

.header-top .header-top-info a {
  margin-left: 35px;
  color: #b4c1ba;
}

.header-top .header-top-info a:hover {
  color: var(--lisiko-yellow);
}


/*==================================================
  DROPDOWN MENU
==================================================*/

.dropdown-menu {
  padding: 0;
  border: 0;
  border-radius: 0;
}

.dropdown-menu li:first-child {
  margin-top: 5px;
}

.dropdown-menu li:last-child {
  margin-bottom: 5px;
}

.dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-menu,
.dropright .dropdown-menu {
  margin: 0;
}

.dropdown-item {
  padding: 0.8rem 1.5rem 0.55rem;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.dropdown-submenu.active > .dropdown-toggle,
.dropdown-submenu:hover > .dropdown-item,
.dropdown-item.active,
.dropdown-item:hover {
  background: var(--lisiko-green);
  color: var(--lisiko-white);
}

ul.dropdown-menu li {
  padding-left: 0 !important;
}


/*==================================================
  BACKGROUND IMAGES
==================================================*/

.bg-1 {
  background: url("../images/equip.jpg") no-repeat 50% 50%;
  background-size: cover;
}

.bg-2 {
  background: url("../images/bg/home-5.jpg");
  background-size: cover;
}


/*==================================================
  HERO SLIDER
==================================================*/

.slider {
  background: url("../images/bg/home-1.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 200px 0;
  position: relative;
}

.slider .block {
  position: relative;
  z-index: 2;
}

.slider .block h1 {
  font-size: 70px;
  line-height: 80px;
  font-weight: 600;
  color: var(--lisiko-white);
}

.slider .block p {
  margin-bottom: 30px;
  color: #d8e2dc;
  font-size: 18px;
  line-height: 27px;
  font-weight: 300;
}

.slider .block span {
  letter-spacing: 1px;
  color: var(--lisiko-yellow);
  font-weight: 600;
}


/*==================================================
  INTRO SECTION
==================================================*/

.intro-item {
  transition: all 0.3s ease;
}

.intro-item:hover {
  transform: translateY(-8px);
}

.intro-item i {
  font-size: 60px;
  line-height: 60px;
  color: var(--lisiko-green);
}

.color-one {
  color: var(--lisiko-green);
}

.color-two {
  color: var(--lisiko-yellow);
}

.color-three {
  color: var(--lisiko-green-dark);
}

.color-four {
  color: #088ed3;
}


/*==================================================
  ABOUT SECTION
==================================================*/

.bg-about {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 45%;
  min-height: 650px;
  background: url("../images/about/home-8.jpg") no-repeat;
  background-size: cover;
}

.about-content {
  padding: 20px 0 0 80px;
}

.about-content h4 {
  font-weight: 600;
}

.about-content h4:before {
  position: absolute;
  content: "\f576";
  font-family: "Font Awesome 5 Free";
  font-size: 30px;
  top: 8px;
  left: -65px;
  font-weight: 700;
  color: var(--lisiko-yellow);
}


/*==================================================
  COUNTER
==================================================*/

.counter-item .counter-stat {
  font-size: 50px;
  color: var(--lisiko-green);
}

.counter-item p {
  margin-bottom: 0;
}


/*==================================================
  SERVICES
==================================================*/

.service-item {
  position: relative;
  padding-left: 80px;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-6px);
}

.service-item i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 50px;
  color: var(--lisiko-green);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.service-item:hover i {
  color: var(--lisiko-yellow);
  opacity: 1;
}

.service-item h4 {
  transition: all 0.3s ease;
}

.service-item:hover h4 {
  color: var(--lisiko-green);
}


/*==================================================
  CTA SECTION
==================================================*/

.cta {
  background: url("../images/bg/home-3.jpg") fixed 50% 50%;
  background-size: cover;
  padding: 120px 0;
}

.cta-item {
  position: relative;
  z-index: 2;
}

.cta-item h2 {
  color: var(--lisiko-dark);
}

.cta-item h3 {
  color: var(--lisiko-green);
}


/*==================================================
  TESTIMONIALS
==================================================*/

.testimonial-item {
  padding: 50px 30px;
}

.testimonial-item i {
  font-size: 40px;
  position: absolute;
  left: 30px;
  top: 30px;
  z-index: 1;
  color: var(--lisiko-green);
}

.testimonial-item .testimonial-text {
  font-size: 20px;
  line-height: 38px;
  color: var(--lisiko-dark);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-item .testimonial-item-content {
  padding-left: 65px;
}

.testimonial-author h5 {
  color: var(--lisiko-green);
}


/*==================================================
  LATEST BLOG
==================================================*/

.latest-blog {
  position: relative;
  padding-bottom: 150px;
}

.blog-item-content h3 {
  line-height: 36px;
}

.blog-item-content h3 a {
  transition: all 0.4s ease;
}

.blog-item-content h3 a:hover {
  color: var(--lisiko-yellow) !important;
}

.lh-36 {
  line-height: 36px;
}


/*==================================================
  CTA BLOCK
==================================================*/

.cta-block {
  background: url("../images/bg/home-3.jpg") no-repeat;
  background-size: cover;
}

.cta-block-2 {
  border-left: 5px solid var(--lisiko-yellow);
}


/*==================================================
  PORTFOLIO
==================================================*/

.portflio-item .portfolio-item-content {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.35s ease;
}

.portflio-item:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 31, 19, 0.88);
  opacity: 0;
  transition: all 0.35s ease;
  overflow: hidden;
}

.portflio-item:hover:before {
  opacity: 1;
}

.portflio-item:hover .portfolio-item-content {
  opacity: 1;
  bottom: 20px;
  right: 30px;
}

.portflio-item .overlay-item {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: var(--lisiko-yellow);
  opacity: 0;
  transition: all 0.35s ease;
}

.portflio-item:hover .overlay-item {
  opacity: 1;
}


/*==================================================
  CONTACT FORMS
==================================================*/

.contact-form-wrap .form-group {
  padding-bottom: 15px;
  margin: 0;
}

.contact-form-wrap .form-group .form-control {
  background: var(--lisiko-gray);
  height: 48px;
  border: 1px solid #eef2f6;
  box-shadow: none;
  width: 100%;
}

.contact-form-wrap .form-group-2 {
  margin-bottom: 13px;
}

.contact-form-wrap .form-group-2 textarea {
  background: var(--lisiko-gray);
  height: 135px;
  border: 1px solid #eef2f6;
  box-shadow: none;
  width: 100%;
}


/*==================================================
  ADDRESS / MAP
==================================================*/

.address-block li {
  margin-bottom: 10px;
}

.address-block li i {
  font-size: 20px;
  width: 20px;
  color: var(--lisiko-green);
}

.social-icons li {
  margin: 0 6px;
}

.social-icons i {
  margin-right: 15px;
  font-size: 25px;
}

.google-map {
  position: relative;
}

.google-map #map {
  width: 100%;
  height: 450px;
}


/*==================================================
  BLOG
==================================================*/

.tags a {
  background: var(--lisiko-gray);
  display: inline-block;
  padding: 8px 23px;
  border-radius: 38px;
  margin-bottom: 10px;
  border: 1px solid #eee;
  font-size: 14px;
  text-transform: capitalize;
}

.tags a:hover {
  background: var(--lisiko-green);
  color: var(--lisiko-white);
}

.pagination .nav-links a,
.pagination .nav-links span.current {
  font-size: 20px;
  font-weight: 500;
  color: #c9c9c9;
  margin: 0 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.pagination .nav-links span.current,
.pagination .nav-links a.next,
.pagination .nav-links a.prev {
  color: var(--lisiko-green);
}


/*==================================================
  QUOTE
==================================================*/

h3.quote {
  font-size: 24px;
  line-height: 40px;
  font-weight: normal;
  padding: 0 25px 0 85px;
  margin: 65px 0 !important;
  position: relative;
}

h3.quote::before {
  content: "";
  width: 55px;
  height: 2px;
  background: var(--lisiko-yellow);
  position: absolute;
  top: 25px;
  left: 0;
}


/*==================================================
  BLOG SINGLE
==================================================*/

.post.post-single {
  border: none;
}

.post.post-single .post-thumb {
  margin-top: 30px;
}

.post-sub-heading {
  border-bottom: 1px solid #dedede;
  padding-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 20px;
}

.post-social-share {
  margin-bottom: 50px;
}

.post-comments {
  margin: 30px 0;
}

.post-comments .media {
  margin-top: 20px;
}

.post-comments .comment-author {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 500;
}

.post-comments time {
  margin: 0 0 5px;
  display: inline-block;
  color: #808080;
  font-size: 12px;
}

.post-excerpt {
  margin-bottom: 60px;
}

.post-excerpt h3 a {
  color: #000;
}

.post-excerpt p {
  margin: 0 0 30px;
}


/*==================================================
  WIDGETS
==================================================*/

.widget {
  margin-bottom: 30px;
  padding-bottom: 35px;
}

.widget .widget-title {
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 16px;
  color: #333;
  font-weight: 500;
  border-bottom: 1px solid #dedede;
}

.widget.widget-category ul li {
  margin-bottom: 10px;
}

.widget.widget-category ul li a {
  color: #837f7e;
  transition: all 0.3s ease;
}

.widget.widget-category ul li a:hover {
  color: var(--lisiko-green);
  padding-left: 5px;
}

.widget.widget-tag ul li {
  margin-bottom: 10px;
  display: inline-block;
  margin-right: 5px;
}

.widget.widget-tag ul li a {
  color: #837f7e;
  display: inline-block;
  padding: 8px 15px;
  border: 1px solid #dedede;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.widget.widget-tag ul li a:hover {
  color: var(--lisiko-white);
  background: var(--lisiko-green);
  border-color: var(--lisiko-green);
}


/*==================================================
  FOOTER
==================================================*/

.footer {
  padding-bottom: 10px;
  background: var(--lisiko-light);
}

.footer .copyright a {
  font-weight: 600;
  color: var(--lisiko-green);
}

.footer-menu li a:hover {
  color: var(--lisiko-green);
}

.logo {
  color: var(--lisiko-dark);
  font-weight: 600;
  letter-spacing: 1px;
}

.logo span {
  color: var(--lisiko-yellow);
}

.sub-form {
  position: relative;
}

.sub-form .form-control {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--lisiko-white);
}

.footer-btm {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-socials li a {
  margin-left: 15px;
}

.footer-socials li a:hover {
  color: var(--lisiko-green);
}


/*==================================================
  SCROLL TO TOP
==================================================*/

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  height: 40px;
  width: 40px;
  background: var(--lisiko-green);
  border-radius: 50%;
  text-align: center;
  line-height: 43px;
  color: var(--lisiko-white);
  cursor: pointer;
  transition: 0.3s;
  display: none;
}

.scroll-to-top:hover {
  background: var(--lisiko-yellow);
  color: var(--lisiko-green-deep);
}


/*==================================================
  RESPONSIVE DESIGN
==================================================*/

@media (max-width: 992px) {

  #navbar li {
    padding-left: 0;
  }

  #navbar .btn {
    margin: 15px 0 10px;
  }

  .dropdown-menu {
    text-align: center;
    float: left !important;
    width: 100%;
    margin: 0;
  }

  .slider .block h1 {
    font-size: 56px;
    line-height: 70px;
  }

  .bg-about {
    display: none;
  }

  section.about {
    border: 1px solid #dee2e6;
    border-left: 0;
    border-right: 0;
  }

  .footer-socials {
    margin-top: 20px;
  }

  .footer-socials li a {
    margin-left: 0;
  }
}


@media (max-width: 768px) {

  .navbar-toggler {
    color: var(--lisiko-white);
  }

  .bg-about {
    display: none;
  }

  .slider {
    padding: 150px 0;
  }

  .slider .block h1 {
    font-size: 48px;
    line-height: 62px;
  }

  .blog-item-meta span {
    margin: 6px 0;
  }

  .widget {
    margin-bottom: 30px;
    padding-bottom: 0;
  }

  .testimonial-item .testimonial-item-content {
    padding-left: 0;
    padding-top: 30px;
  }
}


@media (max-width: 480px) {

  .header-top .header-top-info a {
    margin-left: 10px;
    margin-right: 10px;
  }

  .navbar-toggler {
    color: var(--lisiko-white);
  }

  .slider .block h1 {
    font-size: 38px;
    line-height: 50px;
  }

  .content-title {
    font-size: 28px;
    line-height: 46px;
  }

  .p-5 {
    padding: 2rem !important;
  }

  h2,
  .h2 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 36px;
  }

  .testimonial-item .testimonial-item-content {
    padding-left: 0;
    padding-top: 30px;
  }

  .widget {
    margin-bottom: 30px;
    padding-bottom: 0;
  }

  .text-lg {
    font-size: 3rem;
  }

  .scroll-to-top {
    bottom: 15px;
    right: 15px;
  }
}


@media (max-width: 400px) {

  .header-top .header-top-info a {
    display: block;
  }

  .navbar-toggler {
    color: var(--lisiko-white);
  }

  .content-title {
    font-size: 28px;
    line-height: 46px;
  }

  .bg-about {
    display: none;
  }

  .p-5 {
    padding: 2rem !important;
  }

  h2,
  .h2 {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 36px;
  }

  .testimonial-item .testimonial-item-content {
    padding-left: 0;
    padding-top: 30px;
  }

  .text-lg {
    font-size: 3rem;
  }

  .widget {
    margin-bottom: 30px;
    padding-bottom: 0;
  }
}
/* =========================================
   LISIKO QUOTE MODAL
========================================= */

.quote-modal {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    background: #ffffff;
}

.quote-modal .modal-header {
    padding: 30px 35px 20px;
    border-bottom: 1px solid #eeeeee;
}

.quote-modal .modal-header span {
    color: #f5c400;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.quote-modal .modal-title {
    color: #064d35;
    font-weight: 700;
}

.quote-modal .modal-header p {
    color: #777777;
}

.quote-modal .modal-body {
    padding: 30px 35px 10px;
}

.quote-modal .modal-footer {
    padding: 20px 35px 30px;
    border-top: 1px solid #eeeeee;
}

.quote-modal label {
    font-weight: 600;
    color: #064d35;
    margin-bottom: 8px;
}

.quote-modal .form-control {
    height: 50px;
    border: 1px solid #dddddd;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 14px;
}

.quote-modal textarea.form-control {
    height: auto;
    resize: vertical;
}

.quote-modal .form-control:focus {
    border-color: #064d35;
    box-shadow: 0 0 0 2px rgba(6, 77, 53, 0.08);
}

.quote-modal .btn-main {
    background: #064d35;
    border-color: #064d35;
}

.quote-modal .btn-main:hover {
    background: #f5c400;
    border-color: #f5c400;
    color: #064d35;
}

.quote-modal .btn-secondary {
    background: #eeeeee;
    border: none;
    color: #333333;
}

.quote-modal .btn-secondary:hover {
    background: #dddddd;
}

.quote-modal .close {
    font-size: 30px;
    font-weight: 300;
    color: #064d35;
    opacity: 1;
}

.quote-modal .close:hover {
    color: #f5c400;
}

@media (max-width: 575px) {

    .quote-modal .modal-header,
    .quote-modal .modal-body,
    .quote-modal .modal-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .quote-modal .modal-footer {
        display: block;
    }

    .quote-modal .modal-footer button {
        width: 100%;
        margin-bottom: 10px;
    }

}
/* =========================================================
   LISIKO TECHNOLOGIES
   MODERN GLASSMORPHISM CARD SYSTEM
========================================================= */

.lisiko-glass-card {

    position: relative;

    height: 100%;

    padding: 40px 35px;

    border-radius: 18px;

    background:

        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.92),
            rgba(255, 255, 255, 0.62)
        );

    border: 1px solid rgba(255, 255, 255, 0.75);

    box-shadow:

        0 15px 45px rgba(0, 45, 30, 0.08),

        inset 0 1px 0 rgba(255, 255, 255, 0.8);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;

    transition:

        transform 0.4s ease,

        box-shadow 0.4s ease,

        border-color 0.4s ease;

}


/* Decorative Glass Glow */

.lisiko-glass-card::before {

    content: "";

    position: absolute;

    top: -80px;

    right: -80px;

    width: 180px;

    height: 180px;

    background: rgba(245, 196, 0, 0.13);

    border-radius: 50%;

    filter: blur(10px);

    transition: 0.4s ease;

}


/* Bottom Green Accent */

.lisiko-glass-card::after {

    content: "";

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 4px;

    background: #f5c400;

    transition: width 0.4s ease;

}


/* Hover */

.lisiko-glass-card:hover {

    transform: translateY(-10px);

    border-color: rgba(6, 77, 53, 0.35);

    box-shadow:

        0 25px 60px rgba(0, 45, 30, 0.16),

        inset 0 1px 0 rgba(255, 255, 255, 0.9);

}


.lisiko-glass-card:hover::after {

    width: 100%;

}


.lisiko-glass-card:hover::before {

    transform: scale(1.4);

    background: rgba(245, 196, 0, 0.2);

}


/* =========================================================
   SERVICE CARD
========================================================= */

.service-glass-card {

    min-height: 390px;

    display: flex;

    flex-direction: column;

    justify-content: flex-start;

}


/* SERVICE ICON */

.service-icon {

    width: 68px;

    height: 68px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 25px;

    border-radius: 18px;

    background:

        linear-gradient(

            135deg,

            #064d35,

            #087b54

        );

    color: #ffffff;

    font-size: 27px;

    box-shadow:

        0 12px 25px rgba(6, 77, 53, 0.2);

    transition: 0.4s ease;

}


.lisiko-glass-card:hover .service-icon {

    transform: rotate(-5deg) scale(1.08);

    background:

        linear-gradient(

            135deg,

            #f5c400,

            #ffd83d

        );

    color: #064d35;

}


/* SERVICE NUMBER */

.service-number {

    position: absolute;

    top: 32px;

    right: 32px;

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

    color: rgba(6, 77, 53, 0.35);

}


/* SERVICE TITLE */

.service-glass-card h4 {

    position: relative;

    z-index: 2;

    margin-bottom: 16px;

    color: #064d35;

    font-size: 21px;

    font-weight: 700;

}


/* SERVICE DESCRIPTION */

.service-glass-card p {

    position: relative;

    z-index: 2;

    color: #666666;

    line-height: 1.8;

    margin-bottom: 25px;

}


/* SERVICE LINK */

.service-link {

    position: relative;

    z-index: 2;

    margin-top: auto;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #064d35;

    font-weight: 700;

    font-size: 14px;

    transition: 0.3s ease;

}


.service-link i {

    transition: transform 0.3s ease;

}


.service-link:hover {

    color: #f5c400;

}


.service-link:hover i {

    transform: translateX(6px);

}
/* =========================================================
   LISIKO TECHNOLOGIES
   WHY LISIKO SECTION
========================================================= */

.lisiko-why-section {

    position: relative;

    background:

        radial-gradient(
            circle at 10% 20%,
            rgba(6, 77, 53, 0.035),
            transparent 35%
        ),

        radial-gradient(
            circle at 90% 80%,
            rgba(245, 196, 0, 0.06),
            transparent 35%
        );

}


/* INTRO TEXT */

.why-intro {

    color: #666666;

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 0;

}


/* WHY CARD */

.lisiko-why-card {

    position: relative;

    height: 100%;

    min-height: 280px;

    padding: 35px;

    border-radius: 20px;

    background:

        linear-gradient(

            145deg,

            rgba(255, 255, 255, 0.92),

            rgba(255, 255, 255, 0.62)

        );

    border: 1px solid rgba(255, 255, 255, 0.8);

    box-shadow:

        0 15px 45px rgba(0, 45, 30, 0.07),

        inset 0 1px 0 rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    overflow: hidden;

    transition: all 0.4s ease;

}


/* DECORATIVE GLOW */

.lisiko-why-card::before {

    content: "";

    position: absolute;

    width: 180px;

    height: 180px;

    top: -100px;

    right: -80px;

    border-radius: 50%;

    background: rgba(245, 196, 0, 0.12);

    filter: blur(15px);

    transition: 0.4s ease;

}


/* HOVER */

.lisiko-why-card:hover {

    transform: translateY(-8px);

    border-color: rgba(6, 77, 53, 0.25);

    box-shadow:

        0 25px 60px rgba(0, 45, 30, 0.14);

}


.lisiko-why-card:hover::before {

    transform: scale(1.5);

}


/* TOP ROW */

.why-card-top {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;

}


/* ICON */

.why-icon {

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background:

        linear-gradient(

            135deg,

            #064d35,

            #087b54

        );

    color: #ffffff;

    font-size: 26px;

    box-shadow:

        0 12px 25px rgba(6, 77, 53, 0.18);

    transition: all 0.4s ease;

}


.lisiko-why-card:hover .why-icon {

    background:

        linear-gradient(

            135deg,

            #f5c400,

            #ffd83d

        );

    color: #064d35;

    transform: rotate(-6deg) scale(1.08);

}


/* NUMBER */

.why-number {

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    color: rgba(6, 77, 53, 0.35);

}


/* CONTENT */

.why-card-content {

    position: relative;

    z-index: 2;

}


.why-card-content h3 {

    color: #064d35;

    font-size: 23px;

    font-weight: 700;

    margin-bottom: 15px;

}


.why-card-content p {

    color: #666666;

    line-height: 1.8;

    margin-bottom: 0;

}


/* BOTTOM LINE */

.why-card-line {

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 4px;

    background: #f5c400;

    transition: width 0.4s ease;

}


.lisiko-why-card:hover .why-card-line {

    width: 100%;

}


/* BOTTOM BANNER */

.why-bottom-banner {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 32px 40px;

    border-radius: 18px;

    background:

        linear-gradient(

            135deg,

            #064d35,

            #043c2a

        );

    box-shadow:

        0 20px 45px rgba(6, 77, 53, 0.15);

}


.why-bottom-banner h3 {

    color: #ffffff;

    font-size: 23px;

}


.why-bottom-banner .text-color {

    color: #f5c400;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

}


/* RESPONSIVE */

@media (max-width: 767px) {

    .lisiko-why-card {

        min-height: auto;

        padding: 30px;

    }


    .why-bottom-banner {

        display: block;

        padding: 30px;

    }


    .why-bottom-banner .btn {

        margin-top: 25px;

    }

}
/* =========================================
   LISIKO WHY CHOOSE SECTION
========================================= */

.lisiko-why-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}


/* CONTENT */

.lisiko-why-content {
  position: relative;
  z-index: 2;
  padding-right: 45px;
}

.lisiko-why-content .content-title {
  font-size: 42px;
  line-height: 1.18;
  font-weight: 700;
}

.lisiko-lead {
  font-size: 17px;
  line-height: 1.8;
  color: #777;
  max-width: 520px;
}


/* FEATURE LIST */

.lisiko-feature-list {
  margin-top: 30px;
}

.lisiko-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  padding: 20px;
  border-radius: 14px;
  transition: all 0.35s ease;
  border: 1px solid transparent;
}

.lisiko-feature:hover {
  transform: translateX(8px);
  border-color: rgba(0, 174, 239, 0.18);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}


/* FEATURE ICON */

.lisiko-feature-icon {
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 174, 239, 0.10);
  color: #00aeef;
  font-size: 20px;
  transition: all 0.3s ease;
}

.lisiko-feature:hover .lisiko-feature-icon {
  background: #00aeef;
  color: #ffffff;
  transform: rotate(5deg);
}


/* FEATURE CONTENT */

.lisiko-feature-content h4 {
  margin: 0 0 8px;
  font-size: 19px;
  font-weight: 600;
}

.lisiko-feature-content p {
  margin: 0;
  color: #777;
  line-height: 1.7;
  font-size: 15px;
}


/* =========================================
   VISUAL SIDE
========================================= */

.lisiko-why-visual {
  position: relative;
  min-height: 560px;
  padding: 25px;
}


/* IMAGE */

.lisiko-image-wrapper {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 22px;
  z-index: 2;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.14);
}

.lisiko-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.lisiko-image-wrapper:hover img {
  transform: scale(1.06);
}


/* IMAGE OVERLAY */

.lisiko-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 174, 239, 0.15),
    rgba(0, 0, 0, 0.25)
  );
}


/* FLOATING CARD */

.lisiko-floating-card {
  position: absolute;
  bottom: 40px;
  left: -15px;
  z-index: 5;

  display: flex;
  align-items: center;
  gap: 15px;

  padding: 20px 25px;
  min-width: 245px;

  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}


.lisiko-floating-card span {
  display: block;
  font-size: 13px;
  color: #777;
}


.lisiko-floating-card strong {
  display: block;
  font-size: 20px;
  color: #222;
}


/* FLOATING ICON */

.lisiko-floating-icon {
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #00aeef;
  color: #ffffff;

  font-size: 20px;
}


/* DECORATIVE GRID */

.lisiko-grid-pattern {
  position: absolute;
  right: -10px;
  top: 0;

  width: 160px;
  height: 160px;

  opacity: 0.35;

  background-image: radial-gradient(
    #00aeef 1px,
    transparent 1px
  );

  background-size: 14px 14px;
  z-index: 1;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

  .lisiko-why-content {
    padding-right: 0;
    margin-bottom: 50px;
  }

  .lisiko-why-content .content-title {
    font-size: 36px;
  }

  .lisiko-why-visual {
    min-height: 500px;
  }

  .lisiko-image-wrapper {
    height: 450px;
  }

}


@media (max-width: 575px) {

  .lisiko-why-content .content-title {
    font-size: 30px;
  }

  .lisiko-lead {
    font-size: 15px;
  }

  .lisiko-why-visual {
    padding: 10px;
    min-height: 420px;
  }

  .lisiko-image-wrapper {
    height: 380px;
    border-radius: 16px;
  }

  .lisiko-floating-card {
    left: 5px;
    bottom: 25px;
    min-width: auto;
    padding: 15px;
  }

  .lisiko-floating-card strong {
    font-size: 17px;
  }

  .lisiko-feature {
    padding: 15px 0;
  }

}
/* =========================================
   LISIKO SERVICES PAGE CARDS
========================================= */

.lisiko-services-grid {
    row-gap: 30px;
}


/* CARD */

.lisiko-service-card {

    position: relative;

    height: 100%;

    min-height: 360px;

    padding: 35px 32px;

    overflow: hidden;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.78);

    border: 1px solid rgba(0, 174, 239, 0.12);

    box-shadow:
        0 12px 35px rgba(0, 0, 0, 0.045);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease;

    z-index: 1;

}


/* CARD HOVER */

.lisiko-service-card:hover {

    transform: translateY(-12px);

    border-color: rgba(0, 174, 239, 0.45);

    box-shadow:
        0 25px 70px rgba(0, 174, 239, 0.14),
        0 10px 30px rgba(0, 0, 0, 0.06);

}


/* TOP ROW */

.lisiko-service-card-top {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 30px;

}


/* ICON */

.lisiko-service-icon {

    width: 66px;

    height: 66px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 18px;

    background: rgba(0, 174, 239, 0.09);

    color: #00aeef;

    font-size: 27px;

    transition:
        transform 0.45s ease,
        background 0.45s ease,
        color 0.45s ease,
        box-shadow 0.45s ease;

}


.lisiko-service-card:hover
.lisiko-service-icon {

    transform: rotate(-8deg) scale(1.1);

    background: #00aeef;

    color: #ffffff;

    box-shadow:
        0 12px 30px rgba(0, 174, 239, 0.35);

}


/* TOP RIGHT ARROW */

.lisiko-service-arrow {

    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #00aeef;

    background: rgba(0, 174, 239, 0.07);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        color 0.4s ease;

}


.lisiko-service-card:hover
.lisiko-service-arrow {

    transform: rotate(45deg);

    color: #ffffff;

    background: #00aeef;

}


/* TITLE */

.lisiko-service-card h4 {

    margin-bottom: 16px;

    font-size: 21px;

    font-weight: 600;

    transition: color 0.3s ease;

}


.lisiko-service-card:hover h4 {

    color: #00aeef;

}


/* DESCRIPTION */

.lisiko-service-card p {

    margin-bottom: 25px;

    color: #777;

    font-size: 15px;

    line-height: 1.8;

}


/* LINK */

.lisiko-service-link {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #00aeef;

    font-size: 14px;

    font-weight: 600;

    transition: gap 0.35s ease;

}


.lisiko-service-link i {

    transition: transform 0.35s ease;

}


.lisiko-service-card:hover
.lisiko-service-link {

    gap: 17px;

}


.lisiko-service-card:hover
.lisiko-service-link i {

    transform: translateX(4px);

}


/* GLOW */

.lisiko-card-glow {

    position: absolute;

    width: 240px;

    height: 240px;

    right: -130px;

    bottom: -130px;

    border-radius: 50%;

    background: rgba(0, 174, 239, 0.07);

    filter: blur(4px);

    transition:
        transform 0.7s ease,
        background 0.7s ease;

    z-index: -1;

}


.lisiko-service-card:hover
.lisiko-card-glow {

    transform: scale(2.5);

    background: rgba(0, 174, 239, 0.13);

}
/* =========================================
   EQUIPMENT GLASSMORPHISM CARDS
========================================= */

.equipment-card {

  position: relative;

  height: 100%;

  padding: 40px 32px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.10);

  backdrop-filter: blur(14px);

  -webkit-backdrop-filter: blur(14px);

  transition: all 0.4s ease;

  overflow: hidden;

}


/* Subtle glow */

.equipment-card::before {

  content: "";

  position: absolute;

  top: -80px;

  right: -80px;

  width: 180px;

  height: 180px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.04);

  transition: all 0.5s ease;

}


/* Hover */

.equipment-card:hover {

  transform: translateY(-10px);

  border-color: rgba(255, 255, 255, 0.25);

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);

}


/* Expand subtle glow */

.equipment-card:hover::before {

  transform: scale(1.8);

}


/* Icon */

.equipment-card > i {

  position: relative;

  z-index: 1;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  width: 62px;

  height: 62px;

  margin-bottom: 25px;

  border-radius: 14px;

  font-size: 27px;

  color: var(--primary-color);

  background: rgba(255, 255, 255, 0.08);

  border: 1px solid rgba(255, 255, 255, 0.12);

  transition: all 0.4s ease;

}


.equipment-card:hover > i {

  transform: scale(1.08) rotate(-5deg);

}


/* Content */

.equipment-card h4,

.equipment-card p,

.equipment-card ul,

.equipment-card a {

  position: relative;

  z-index: 1;

}


/* Product list */

.equipment-card ul {

  padding-left: 20px;

  margin-top: 20px;

}


.equipment-card ul li {

  margin-bottom: 10px;

  font-size: 14px;

  line-height: 1.6;

}


/* Link */

.equipment-card a {

  display: inline-block;

  margin-top: 8px;

  transition: all 0.3s ease;

}


.equipment-card a i {

  transition: transform 0.3s ease;

}


.equipment-card a:hover i {

  transform: translateX(6px);

}
/* =========================================
   ORDER MODAL
========================================= */

.order-modal-overlay {

    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.72);

    backdrop-filter: blur(10px);

    -webkit-backdrop-filter: blur(10px);

    opacity: 0;

    visibility: hidden;

    transition: all 0.35s ease;

}


.order-modal-overlay.active {

    opacity: 1;

    visibility: visible;

}


/* MODAL */

.order-modal {

    position: relative;

    width: 100%;

    max-width: 620px;

    max-height: 90vh;

    overflow-y: auto;

    padding: 42px;

    border-radius: 22px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.18);

    backdrop-filter: blur(25px);

    -webkit-backdrop-filter: blur(25px);

    box-shadow:

        0 30px 80px rgba(0, 0, 0, 0.45),

        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    transform: translateY(30px) scale(0.96);

    transition: all 0.4s ease;

}


.order-modal-overlay.active .order-modal {

    transform: translateY(0) scale(1);

}


/* CLOSE BUTTON */

.order-modal-close {

    position: absolute;

    top: 18px;

    right: 20px;

    width: 38px;

    height: 38px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.08);

    color: inherit;

    cursor: pointer;

    transition: all 0.3s ease;

}


.order-modal-close:hover {

    transform: rotate(90deg);

    background: rgba(255, 255, 255, 0.18);

}


/* HEADER */

.order-modal-header {

    margin-bottom: 30px;

}


.order-modal-header span {

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 2px;

}


.order-modal-header h2 {

    margin-top: 10px;

    margin-bottom: 12px;

}


.order-modal-header p {

    margin-bottom: 0;

}


/* FORM */

.order-modal .form-group {

    margin-bottom: 20px;

}


.order-modal label {

    display: block;

    margin-bottom: 8px;

    font-size: 14px;

    font-weight: 600;

}


.order-modal .form-control {

    width: 100%;

    min-height: 50px;

    padding: 12px 16px;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.14);

    color: inherit;

    transition: all 0.3s ease;

}


.order-modal .form-control:focus {

    outline: none;

    border-color: rgba(255, 255, 255, 0.45);

    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06);

}


.order-modal textarea.form-control {

    min-height: 110px;

    resize: vertical;

}


/* SELECTED PACKAGE */

#selectedPackage {

    font-weight: 600;

    cursor: not-allowed;

}


/* SUBMIT */

.order-submit-btn {

    width: 100%;

    min-height: 54px;

    margin-top: 10px;

    border: none;

    font-weight: 600;

    cursor: pointer;

    transition: all 0.3s ease;

}


.order-submit-btn:hover {

    transform: translateY(-3px);

}


/* MOBILE */

@media (max-width: 576px) {

    .order-modal {

        padding: 30px 22px;

    }

}