@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Saira+Condensed:wght@100;200;300;400;500;600;700;800;900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");

:root {
  --fontFamily: "Saira Condensed", sans-serif;
  --fontFamily2: "Poppins", sans-serif;
  --mainColor: #F15927;
  --mainColorShadow: #FC540440;
  --whiteColor: #ffffff;
  --blackColor: #111111;
  --paragraphColor: #666666;
  --card-title-fontSize: 24px;
  --fontSize: 16px;
  --transition: 0.5s;
  --boxShadow: rgba(114, 114, 114, 0.1) 0px 0px 8px;
  --secondary-color: #663091;
  --primary-blue: #F15927;
  --text-main: #1d1d1f;
  --gray-bg: #f5f5f7;
  --bg: #fafafa;

  --dark-text: #F15927;
  --secondary-text: #86868b;
  --card-bg: #f5f5f7;


}

body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fontFamily);
}

a {
  transition: var(--transition);
  color: var(--blackColor);
  text-decoration: none;
  outline: 0 !important;
}

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

:focus {
  outline: 0 !important;
  box-shadow: none !important;
}

.form-control {
  border: 1px solid transparent !important;
  transition: 0.5s ease-in-out;
}

.form-control:focus {
  border: 1px solid var(--mainColor) !important;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  font-family: var(--fontFamily2);
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  margin-bottom: 15px;
  line-height: 1.8;
}

p:last-child {
  margin-bottom: 0;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.ptb-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pt-50 {
  padding-top: 50px;
}

.mst-30 {
  margin-top: 0px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-10 {
  margin-bottom: 10px;
}

.section-content {
  margin-top: 20px;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

.sticky {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 0px;
  background-color: var(--whiteColor) !important;
  transition: 0.5s ease-in-out;
  box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.bg-f9f9f9 {
  background-color: #f9f9f9;
}

.bg-f0f4f9 {
  background-color: #f0f4f9;
}

.slider-card-margin {
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 30px;
}

/* Reparapido Preloader */
#rp_preloader_wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  /* white bg */
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Inner animation container */
.rp_preloader_inner {
  width: 1100px;
  max-width: 100vw;
}

/* Make animation responsive */
.rp_preloader_inner lottie-player {
  width: 100%;
  height: auto;
}

/* Hide state */
.rp_preloader_hide {
  opacity: 0;
  visibility: hidden;
}

/*===================================
Topbar Area CSS
=====================================*/
.topbar {
  background-color: var(--mainColor);
  padding: 10px 12px;
}

.topbar-left-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar-left-area ul li {
  display: inline-block;
  color: var(--whiteColor);
  font-size: 14px;
  font-family: var(--fontFamily2);
}

.topbar-left-area ul li i {
  margin-right: 3px;
  position: relative;
  top: 2px;
}

.topbar-left-area ul li a {
  color: var(--whiteColor);
  margin-right: 25px;
}

.topbar-left-area ul li:last-child a {
  margin: 0;
}

.topbar-social-icons {
  text-align: end;
}

.topbar-social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar-social-icons ul li {
  display: inline-block;
}

.topbar-social-icons ul li a {
  font-size: 15px;
  color: var(--whiteColor);
  display: inline-flex;
  margin: 0px 5px;
}

/*================================================
Select Area CSS
=================================================*/
.nice-select {
  border: 0px;
  background-color: transparent;
  height: auto;
  width: 100%;
  line-height: unset;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 23px;
  padding-right: 15px;
}

.nice-select .selected {
  color: var(--mainColor);
}

.nice-select .list {
  width: 100%;
  z-index: 9999;
}

.option-select-area {
  position: relative;
  display: inline-block;
  max-width: 100%;
  color: var(--paragraphColor);
}

.option-select-area .fa-globe {
  position: absolute;
  top: 3px;
  left: 0;
  z-index: 99;
  color: var(--whiteColor);
}

.option-select-area .nice-select .list {
  width: 85px;
  z-index: 999;
  display: inline-block;
}

.option-select-area .nice-select::after {
  right: 2px;
  width: 7px;
  height: 7px;
  border-color: var(--whiteColor);
}

.option-select-area .nice-select .option {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

.option-select-area .nice-select .current {
  color: #e6e6e6;
  font-size: 14px;
}

/*================================================
Navbar Area CSS
=================================================*/
a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-bar {
  float: left;
  width: 100%;
  position: absolute;
  background: transparent;
  padding: 20px 0 0;
  z-index: 2;
  height: 60px;
  text-transform: capitalize;
  box-sizing: content-box;
}

.mean-container .mean-bar * {
  box-sizing: content-box;
}

.mean-container a.meanmenu-reveal {
  width: 35px;
  height: 30px;
  padding: 12px 15px 0 0;
  position: absolute;
  right: 0;
  top: 50%;
  cursor: pointer;
  transform: translateY(-50%);
  color: var(--mainColor);
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  display: block;
  font-weight: 700;
}

.mean-container a.meanmenu-reveal span {
  display: block;
  background: var(--mainColor);
  height: 4px;
  margin-top: 5px;
  border-radius: 3px;
}

.mean-container .mean-nav {
  float: left;
  width: 100%;
  background: var(--whiteColor);
  margin-top: 64px;
}

.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  border: none;
  list-style-type: none;
}

.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}

.mean-container .mean-nav ul li a {
  display: block;
  float: left;
  width: 90%;
  padding: 1em 5%;
  margin: 0;
  text-align: left;
  color: var(--blackColor);
  border-top: 1px solid #dbeefd;
  text-decoration: none;
  text-transform: capitalize;
}

.mean-container .mean-nav ul li a:hover {
  background: var(--whiteColor);
}

.mean-container .mean-nav ul li a.active {
  color: var(--whiteColor);
}

.mean-container .mean-nav ul li li a {
  width: 80%;
  padding: 1em 10%;
  color: var(--blackColor);
  border-top: 1px solid #dbeefd;
  opacity: 1;
  filter: alpha(opacity=75);
  text-shadow: none !important;
  visibility: visible;
  text-transform: none;
  font-size: 15px;
  text-transform: capitalize;
}

.mean-container .mean-nav ul li li li a {
  width: 70%;
  padding: 1em 15%;
}

.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding: 1em 20%;
}

.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding: 1em 25%;
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 3px;
  width: 100%;
  height: 24px;
  padding: 12px !important;
  text-align: right;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  background: transparent !important;
  border: none !important;
}

.mean-container .mean-nav ul li.mean-last a {
  border-bottom: none;
  margin-bottom: 0;
}

/* .mean-container .mean-nav .navbar-nav {
  overflow-y: scroll;
  height: 100%;
} */

.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}

.mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}

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

.mean-remove {
  display: none !important;
}

.mobile-nav {
  display: none;
  position: relative;
}

.btn-check:focus+.btn-primary,
.btn-primary:focus {
  background-color: var(--whiteColor);
  color: var(--blackColor);
}

.btn-primary,
.btn-primary:active {
  background-color: var(--whiteColor) !important;
  color: var(--blackColor) !important;
  border-color: var(--blackColor) !important;
}

.mobile-nav.mean-container .mean-nav ul li a.active {
  color: var(--mainColor);
}

/* Fix for box sizing on Foundation Framework etc. */
.main-nav {
  background-color: transparent;
}

.main-nav nav {
  padding-top: 10px;
  padding-bottom: 10px;
}

.main-nav nav ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.main-nav nav .navbar-nav {
  margin-left: auto;
  margin-right: auto;
}

.main-nav nav .navbar-nav .nav-item {
  position: relative;
  padding: 15px 0;
}

.main-nav nav .navbar-nav .nav-item a {
  padding: 0;
  transition: 0.5s;
  position: relative;
  color: #1D284B;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fontFamily2);
  margin-left: 14px;
  margin-right: 14px;
}

.main-nav nav .navbar-nav .nav-item a i {
  right: 0;
  top: 7px;
  font-size: 12px;
  position: absolute;
}

.main-nav nav .navbar-nav .nav-item a.dropdown-toggle {
  padding-right: 15px;
  position: relative;
}

.main-nav nav .navbar-nav .nav-item a.dropdown-toggle::after {
  content: "\f0dd";
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: -3px;
  right: 0;
  border: 0px;
  font-size: 15px;
}

.main-nav nav .navbar-nav .nav-item a:hover {
  color: var(--mainColor);
  transition: 0.5s;
}

.main-nav nav .navbar-nav .nav-item a.active {
  color: var(--mainColor);
  transition: 0.5s;
}

.main-nav nav .navbar-nav .nav-item:hover a {
  color: var(--mainColor);
}

.main-nav nav .navbar-nav .nav-item:hover ul {
  opacity: 1;
  transform: rotateY(0deg);
  transform-origin: left;
  visibility: visible;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
  left: 0;
  top: 70px;
  opacity: 0;
  z-index: 99;
  width: 200px;
  border: none;
  display: block;
  border-radius: 0px;
  visibility: hidden;
  position: absolute;
  transform: rotateX(-45deg);
  transform-origin: bottom;
  background: var(--whiteColor);
  transition: all 0.5s ease-in-out;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  padding-top: 0px;
  padding-left: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
  position: relative;
  padding: 0;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
  margin: 0;
  display: block;
  padding: 15px 20px;
  color: var(--blackColor);
  border-bottom: 1px solid #eeeeee;
  font-size: 15px;
  font-weight: 500;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
  top: 50%;
  position: absolute;
  right: 10px !important;
  transform: translateY(-50%);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
  color: var(--mainColor);
  background-color: #f9f9f9;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  position: absolute;
  left: 101%;
  top: 0;
  opacity: 0 !important;
  visibility: hidden !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 20px;
  left: 100%;
  position: absolute;
  opacity: 0 !important;
  visibility: hidden !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: var(--blackColor);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: var(--mainColor);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -5px !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu li:hover .dropdown-menu {
  opacity: 1 !important;
  visibility: visible !important;
  top: -5px !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
  color: var(--mainColor);
}

.main-nav nav .navbar-nav .nav-item:last-child .dropdown-menu {
  left: auto;
  right: 0;
}

.navbar-light .navbar-brand {
  color: var(--mainColor);
  font-weight: bold;
  text-transform: uppercase;
}

.navbar-light .navbar-brand:hover {
  color: var(--mainColor);
  font-weight: bold;
  text-transform: uppercase;
}

.mean-container .mean-bar {
  position: relative;
}

.mobile-nav .menu-sidebar-small-device {
  display: none;
  margin: 0px;
  padding: 0px;
  list-style: none;
  position: absolute;
  top: 15px;
  right: 47px;
}

.mobile-nav .menu-sidebar-small-device .uni-button {
  padding: 5px 10px;
}

.menu-sidebar ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
  display: flex;
  align-items: center;
}
.lang-btn{
  margin-left: 0px !important;  
}
.menu-sidebar ul li {
  margin-left: 15px;
}

.menu-sidebar ul li .default-button {
  margin-bottom: -5px;
  padding-top: 13px;
  padding-bottom: 13px;
}

.menu-sidebar ul li .cart-icon {
  padding-top: 8px;
  padding-right: 10px;
  font-size: 25px;
  position: relative;
  top: 3px;
}

.menu-sidebar ul li .cart-icon span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  font-size: 10px;
  font-family: var(--fontFamily2);
  position: absolute;
  right: 0;
  top: 0;
}

.menu-small-device {
  display: none;
  position: absolute;
  right: 80px;
  top: 14px;
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.menu-small-device li {
  list-style: none;
  display: inline-block;
}

.menu-small-device .cart-icon {
  padding-top: 8px;
  padding-right: 10px;
  font-size: 25px;
  position: relative;
  top: 6px;
  margin-right: 15px;
}

.menu-small-device .cart-icon span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  font-size: 10px;
  font-family: var(--fontFamily2);
  position: absolute;
  right: 0;
  top: 0;
}

/*================================================
Extra Navbar Area CSS
=================================================*/
.sticky .main-nav {
  background-color: var(--whiteColor);
}

.sticky .main-nav nav {
  padding-left: 0;
  padding-right: 0;
}

/*================================================
Popup Area CSS
=================================================*/
.popup-button {
  border: 0px;
  font-size: 18px;
  border-radius: 0px;
  transition: 0.5s ease-in-out;
  background-color: #eeeeee;
  color: var(--blackColor);
  width: 45px;
  height: 45px;
  display: inline-block;
  line-height: 2.5px;
}

.popup {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.9254901961);
}

.popup .popup-content {
  width: 0%;
  height: 100%;
  opacity: 0;
  margin-left: 0;
  margin-right: auto;
}

.popup .popup-content .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  border-radius: 50%;
}

.popup .popup-content .close-btn span {
  width: 30px;
  height: 4px;
  border-radius: 25px;
  background-color: red;
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.popup .popup-content .close-btn span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.popup .popup-content .close-btn span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.popup .popup-content .close-btn:hover {
  transform: rotate(-180deg);
  transform-origin: center;
  transition: 0.5s ease;
}

.popup .popup-content .close-btn:hover span:last-child {
  transform: translate(-50%, -50%) rotate(-225deg);
  transition: 0.4s ease;
}

.popup .popup-content form {
  top: 20%;
  left: 50%;
  width: 30%;
  visibility: hidden;
  position: absolute;
  transform: translate(-50%, -50%);
}

.popup .popup-content form .search-box input {
  padding: 5px 20px;
}

.popup .popup-content form .search-box .form-control {
  border-radius: 0px !important;
  border: 0px !important;
  color: var(--whiteColor);
  border-bottom: 1px solid #eeeeee !important;
  background-color: transparent;
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
}

.popup .popup-content form .search-box .form-control::-moz-placeholder {
  color: var(--whiteColor);
}

.popup .popup-content form .search-box .form-control::placeholder {
  color: var(--whiteColor);
}

.popup .popup-content form .search-box .btn {
  padding: 5px 15px;
  color: var(--whiteColor);
  border-radius: 0px !important;
  background-color: transparent;
  border-bottom: 1px solid #eeeeee !important;
  font-size: 25px;
}

.popup .hi {
  transition: 0.5s ease-in-out;
  transition-delay: 0.4s;
  opacity: 1;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup .hi form {
  visibility: visible;
  top: 50% !important;
  transition: 1s ease-in-out;
}

/*================================================
Header Responsive Area CSS
=================================================*/
@media only screen and (max-width: 767px) {
  .topbar-right-side {
    justify-content: center;
  }

  .topbar-left-side {
    text-align: center;
  }

  .topbar-left-side ul li {
    margin-right: 7px;
    margin-left: 7px;
  }

  .topbar-left-area ul li {
    padding-top: 5px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .topbar-right-side {
    justify-content: center;
  }

  .topbar-left-side {
    text-align: center;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-nav nav .navbar-nav .nav-item a {
    margin-left: 6px;
    margin-right: 3px;
    font-size: 14px!important;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1051px) {
  .main-nav nav .navbar-nav .nav-item a {
    margin-left: 6px;
    margin-right: 3px;
    font-size: 12px!important;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-nav nav .navbar-nav .nav-item a {
    font-size: 15px!important;
    margin-left: 10px;
    margin-right: 4px;
  }
}

@media only screen and (max-width: 991px) {
  .main-responsive-nav {
    background-color: #ffffff;
    height: 65px;
    position: relative;
    z-index: 5;
  }

  .mobile-nav {
    display: block;
    position: relative;
  }

  .mobile-nav .logo {
    top: 0;
    left: 0px;
    z-index: 999;
    position: absolute;
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
  }

  .mobile-nav nav .navbar-nav {
    box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
    /* width */
    /* Track */
    /* Handle */
    /* Handle on hover */
  }

  .mobile-nav nav .navbar-nav .nav-item a i {
    display: none;
  }

  .mobile-nav nav .navbar-nav::-webkit-scrollbar {
    width: 7px;
  }

  .mobile-nav nav .navbar-nav::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  .mobile-nav nav .navbar-nav::-webkit-scrollbar-thumb {
    background: #888;
  }

  .mobile-nav nav .navbar-nav::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  .mean-container .mean-bar {
    background-color: #ffffff;
    padding: 0;
  }

  .mean-container a.meanmenu-reveal {
    padding: 5px 2px 0 0;
    transition: 0s !important;
  }

  .main-nav {
    display: none !important;
  }

  .menu-sidebar {
    display: none;
  }

  .menu-small-device {
    z-index: 2;
    right: 50px;
    top: 16px;
    display: flex !important;
  }

  .menu-small-device .default-button {
    padding: 8px;
    font-size: 13px;
    margin-left: 15px;
  }

  .menu-small-device .popup-button {
    height: 38px;
    width: 38px;
  }

  .meanclose {
    top: 60% !important;
  }

  .topbar-left-area {
    text-align: start;
  }

  .topbar-left-area ul li {
    margin-left: 5px;
    margin-right: 5px;
  }

  .mobile-nav .call-button {
    top: 0;
  }
}

/*===================================
Footer Area CSS
=====================================*/
.footer {
  background-color: var(--blackColor);
}

.footer-logo-area img {
  margin-bottom: 20px;
}

.footer-logo-area p {
  color: #eeeeee;
  font-size: 15px;
}

.footer-logo-area .footer-social-area {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.footer-logo-area .footer-social-area span {
  color: var(--whiteColor);
  width: 80px;
  margin-right: 10px;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.footer-logo-area .footer-social-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-logo-area .footer-social-area ul li {
  display: inline-block;
}

.footer-logo-area .footer-social-area ul li a {
  width: 40px;
  height: 40px;
  font-size: 15px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  background-color: rgba(255, 255, 255, 0.2);
  margin-right: 5px;
}

.footer-logo-area .footer-social-area ul li a:hover {
  border-radius: 35%;
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.footer-links h3 {
  color: var(--whiteColor);
  margin-bottom: 20px;
  display: inline-block;
  font-size: var(--card-title-fontSize);
  font-weight: 600;
  position: relative;
}

.footer-links ul {
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links ul li {
  margin-top: 17px;
  font-weight: 400;
  font-size: 15px;
  font-family: var(--fontFamily2);
}

.footer-links ul li a {
  color: #eeeeee;
  position: relative;
  padding-left: 25px;
}

.footer-links ul li a::before {
  content: "";
  width: 8px;
  height: 8px;
  transition: 0.5s ease-in-out;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer-links ul li a:hover {
  letter-spacing: 0.5px;
  color: var(--mainColor);
}

.footer-links ul li a:hover::before {
  background-color: var(--mainColor);
}

.footer-lp {
  padding-left: 50px;
}

.footer-contact h3 {
  margin-bottom: 10px;
}

.footer-contact-card {
  position: relative;
  padding-left: 55px;
  margin-top: 20px;
}

.footer-contact-card i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease-in-out;
  border: 1px solid rgba(238, 238, 238, 0.4196078431);
  color: var(--whiteColor);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer-contact-card h6 {
  color: var(--whiteColor);
  font-size: 15px;
  font-weight: 600;
  font-family: var(--fontFamily2);
}

.footer-contact-card p {
  font-size: 14px;
}

.footer-contact-card p a {
  color: #eeeeee;
}

.footer-contact-card p a:hover {
  color: var(--mainColor);
}

.footer-contact-card:hover i {
  border-color: var(--mainColor);
  color: var(--mainColor);
  transform: rotateY(180deg) translateY(-50%);
}

/*================================================ 
CopyRight Area CSS
=================================================*/
.copyright {
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(238, 238, 238, 0.1254901961);
  background-color: var(--blackColor);
}

.copyright p {
  color: rgba(255, 255, 255, 0.8);
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 15px;
  font-family: var(--fontFamily2);
}

.copyright p a {
  font-weight: 400;
  text-decoration: none;
  color: var(--mainColor);
}

.copyright p strong {
  color: var(--whiteColor);
}

/*================================================
Go Top CSS
=================================================*/
.progress-wrap {
  position: fixed;
  right: 50px;
  bottom: 50px;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  background-color: var(--whiteColor);
  box-shadow: 0px 0px 30px 0px rgba(150, 150, 150, 0.5882352941);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 24px;
  color: var(--mainColor);
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 1;
  transition: all 200ms linear;
}

.progress-wrap:hover::after {
  opacity: 0;
}

.progress-wrap::before {
  position: absolute;
  content: "↑";
  text-align: center;
  line-height: 46px;
  font-size: 30px;
  opacity: 0;
  left: 0;
  top: 0;
  height: 46px;
  width: 46px;
  cursor: pointer;
  display: block;
  z-index: 2;
  transition: all 200ms linear;
}

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

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--mainColor);
  stroke-width: 4;
  box-sizing: border-box;
  transition: all 200ms linear;
}

@keyframes top-bottom {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(20px);
  }
}

/*================================================
Default Button Area CSS
=================================================*/
.default-button {
  overflow: hidden;
  padding: 13px 35px;
  position: relative;
  display: inline-block;
  color: var(--whiteColor);
  transition: 0.5s ease-in-out;
  border: 1px solid rgba(252, 84, 4, 0.3137254902);
  background-color: var(--mainColor);
  font-size: 15px;
  font-weight: 400;
  font-family: var(--fontFamily2);
}

.default-button::before {
  content: "";
  width: 0px;
  height: 50px;
  border-radius: 0px 50% 50% 0px;
  background-color: var(--secondary-color);
  position: absolute;
  left: 60%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s ease-in-out;
  z-index: 0;
}

.default-button::after {
  content: "";
  width: 0px;
  height: 50px;
  border-radius: 50% 0% 0% 50%;
  background-color: var(--secondary-color);
  position: absolute;
  right: 60%;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.5s ease-in-out;
  z-index: 0;
}

.default-button span {
  position: relative;
  z-index: 1;
}

.default-button i {
  margin-left: 8px;
  position: relative;
  top: 3px;
}

.default-button:hover {
  color: var(--whiteColor);
  border-radius: 25px;
  border-color: var(--blackColor);
}

.default-button:hover::before,
.default-button:hover::after {
  width: 100%;
}

.default-button:hover::before {
  left: 50%;
}

.default-button:hover::after {
  right: 50%;
}

.default-button-2 {
  background-color: var(--whiteColor);
  color: var(--mainColor);
}

.default-button-3 {
  background-color: var(--whiteColor);
  color: var(--mainColor);
  border-color: #EEEEEE !important;
}

.default-button-3::before,
.default-button-3::after {
  background-color: var(--mainColor);
}

.read-more-btn {
  display: inline-block;
  transition: 0.5s ease-in-out;
  font-size: var(--fontSize);
  font-weight: 500;
}

.read-more-btn i {
  margin-left: 5px;
  position: relative;
  top: 3px;
}

.read-more-btn:hover {
  letter-spacing: 1px;
}

.section-bottom-link {
  display: table;
  text-align: center;
  color: var(--mainColor);
  position: relative;
  padding-bottom: 2px;
  font-weight: 500;
  font-size: 15px;
  font-family: var(--fontFamily2);
  margin-left: auto;
  margin-right: auto;
  border-bottom: 1px solid;
}

.section-bottom-link i {
  padding-left: 5px;
  position: relative;
  top: 4px;
}

.button-middle {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.section-footer-button {
  display: block;
  text-align: center;
}

/*================================================
Default Section Title Area CSS
=================================================*/
.default-section-title span {
  color: var(--mainColor);
  position: relative;
  margin-bottom: 5px;
  display: inline-block;
  letter-spacing: 1.5px;
  font-weight: 600;
  font-size: 14px;
  font-family: var(--fontFamily2);
}

.default-section-title h3 {
  margin-bottom: 15px;
  line-height: 1.2;
  color: var(--secondColor);
  font-size: 48px;
  font-weight: 700;
}

.default-section-title h3:last-child {
  margin-bottom: 0px;
}

.default-section-title-middle {
  max-width: 800px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.color-title h3 {
  color: var(--whiteColor);
}

.color-title p {
  color: #eeeeee;
}

/*================================================
Index 01 Banner Area CSS
=================================================*/
.main-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/banner/banner-1-bg.jpg");
}

.banner-text-area h6 {
  font-size: var(--fontSize);
  color: var(--mainColor);
  position: relative;
  display: inline-block;
  font-family: var(--fontFamily2);
  text-transform: uppercase;
}

.banner-text-area h6::before {
  content: "";
  width: 100px;
  height: 1px;
  background-color: var(--mainColor);
  position: absolute;
  left: 105%;
  bottom: 2px;
}

.banner-text-area h1 {
  color: var(--whiteColor);
  margin-top: 12px;
  margin-bottom: 30px;
  font-size: 78px;
  font-weight: 700;
}

.banner-text-area p {
  color: #eeeeee;
}

.banner-text-area .default-button {
  margin-top: 18px;
}

.banner-img-area {
  position: relative;
  padding: 60px 0px 60px 0px;
}

.banner-img-area .secondary-img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  width: 50%;
}

.banner-img-area .banner-img-slider-area {
  width: 70%;
}

.banner-img-area .banner-img-slider-area .owl-dots {
  text-align: center;
  margin-top: 15px;
}

.banner-img-area .banner-img-slider-area .owl-dots .owl-dot {
  width: 20px;
  height: 5px;
  margin: 0px 5px;
  border-radius: 10px;
  transition: 0.5s ease-in-out;
  background-color: var(--whiteColor);
}

.banner-img-area .banner-img-slider-area .owl-dots .active {
  width: 35px;
  background-color: var(--mainColor);
}

/*================================================
Index 01 Features Area CSS
=================================================*/
.features-card {
  background-color: #f9f9f9;
  padding: 30px 25px;
  margin-top: 30px;
}

.features-card h4 {
  margin-top: 23px;
  margin-bottom: 12px;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.features-card:hover img {
  animation: bounce 1.5s infinite;
}

/*================================================
Index 01 About Area CSS
=================================================*/
.about-text-area {
  padding-top: 50px;
  padding-bottom: 50px;
}

.about-img-area {
  position: relative;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-image: url("../images/about/about1.jpg");
  height: 100%;
}

.about-img-area img {
  display: none;
}

.about-img-area::before {
  content: "";
  width: 100%;
  height: 20px;
  background-color: var(--whiteColor);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.about-img-area .about-img-text {
  padding: 25px 55px 30px;
  text-align: center;
  display: inline-block;
  background-color: var(--mainColor);
  position: absolute;
  left: 15%;
}

.about-img-area .about-img-text i {
  color: var(--whiteColor);
  font-size: 55px;
}

.about-img-area .about-img-text h4 {
  color: var(--whiteColor);
  font-size: 36px;
  font-weight: 600;
}

.about-img-area .about-img-text p {
  font-size: 14px;
  color: #eeeeee;
}

.about-img-area .about-img-text::before {
  content: "";
  width: 100%;
  height: 20px;
  -webkit-clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(10% 0%, 100% 0, 100% 100%, 0 100%);
  background-color: var(--mainColor);
  position: absolute;
  top: 0;
  right: 10%;
  z-index: 0;
}

/*================================================
Index 01 Services Area CSS
=================================================*/
.service-card {
  margin-top: 30px;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
}

.service-card .service-card-img {
  overflow: hidden;
}

.service-card .service-card-img img {
  transition: 0.5s ease-in-out;
}

.service-card .service-card-text-area {
  padding: 0px 25px 30px;
}

.service-card .service-card-text-area .main-icon {
  width: 60px;
  height: 60px;
  font-size: 33px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  position: relative;
  margin-top: -30px;
}

.service-card .service-card-text-area h4 {
  line-height: 1.4;
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.service-card:hover .service-card-img img {
  transform: scale(1.1) rotate(2deg);
}

.service-card:hover .service-card-text-area .main-icon {
  animation: jello 1s infinite;
}

/*================================================
Index 01 Working Process Area CSS
=================================================*/
.working-process-card {
  margin-top: 30px;
  max-width: 400px;
}

.working-process-card h6 {
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--fontFamily2);
}

.working-process-card .dot {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--mainColorShadow);
  position: relative;
  border: 1px solid var(--mainColor);
  margin-top: 10px;
  margin-bottom: 15px;
}

.working-process-card .dot::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--mainColor);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.working-process-card h4 {
  line-height: 1.4;
  margin-bottom: 12px;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.working-process-1 {
  overflow: hidden;
  position: relative;
}

.working-process-1::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--mainColorShadow);
  position: absolute;
  left: 50%;
  top: 61%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/*================================================
Index 01 Fun fact & Intro Video Area CSS
=================================================*/
.ff-intro {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/ff-bg.jpg");
}

.ff-intro::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.ff-intro::after {
  content: "";
  width: 100%;
  height: 100px;
  background-color: var(--whiteColor);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.ff-intro .container {
  position: relative;
  z-index: 1;
}

.intro-video-play-area {
  display: block;
}

.intro-video-play-area a {
  width: 80px;
  height: 80px;
  font-size: 25px;
  padding-left: 5px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  border: 5px solid var(--whiteColor);
  background-color: var(--mainColor);
  position: relative;
}

.intro-video-play-area a::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--mainColorShadow);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: breathe 5s infinite linear forwards;
}

.intro-video-play-area a::after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--mainColorShadow);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: breathe 10s infinite linear forwards;
}

.fun-fact-area {
  background-color: var(--whiteColor);
  padding: 40px 70px 0px;
}

.fun-fact-card {
  border: 1px solid #eeeeee;
  padding: 30px;
  margin-top: 30px;
}

.fun-fact-card i {
  font-size: 45px;
  color: var(--mainColor);
}

.fun-fact-card h2 {
  color: var(--mainColor);
  line-height: 1;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
}

.fun-fact-card h2 span {
  color: var(--blackColor);
}

.fun-fact-card:hover {
  animation: bounce 1s 1;
}

/*================================================
Index 01 Pricing Area CSS
=================================================*/
.pricing-card {
  margin-top: 30px;
  padding: 30px;
  background-color: #f9f9f9;
}

.pricing-card h6 {
  margin-bottom: 12px;
  transition: 0.5s ease-in-out;
  font-size: 20px;
  font-weight: 700;
}

.pricing-card h2 {
  margin-bottom: 20px;
  transition: 0.5s ease-in-out;
  font-size: 36px;
  font-weight: 700;
}

.pricing-card ul {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.pricing-card ul li {
  margin-top: 15px;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.pricing-card ul li i {
  margin-right: 5px;
  font-size: 14px;
  position: relative;
  top: 2px;
  color: var(--mainColor);
}

.pricing-card ul .disable {
  color: var(--paragraphColor);
}

.pricing-card ul .disable i {
  color: var(--paragraphColor);
}

.pricing-card:hover h2,
.pricing-card:hover h6 {
  color: var(--mainColor);
}

.pricing-card:hover h2 {
  animation: bounce 1.5s 1;
}

/*================================================
Index 01 Team Area CSS
=================================================*/
.team-card {
  margin-top: 30px;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
  transition: 0.5s ease-in-out;
}

.team-card .team-card-text {
  padding: 30px;
}

.team-card .team-card-text h4 {
  margin-bottom: 5px;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.team-card .team-card-text p {
  font-size: 14px;
}

.team-card .team-card-text .social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-card .team-card-text .social-icons ul li {
  display: inline-block;
}

.team-card .team-card-text .social-icons ul li a {
  width: 40px;
  height: 40px;
  margin-right: 5px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mainColor);
  background-color: #F8F8F8;
}

.team-card .team-card-text .social-icons ul li a:hover {
  color: var(--whiteColor);
  animation: jello 1.5s 1;
  background-color: var(--mainColor);
}

.team-card:hover {
  transform: translateY(-10px);
}

/*================================================
Index 01 Sign Up Area CSS
=================================================*/
.sign-up {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-image: url("../images/sign-up-bg.jpg");
}

.sign-up::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.sign-up::after {
  content: "";
  height: 100%;
  width: 33%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/sign-up-bg-shape.jpg");
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.sign-up-form-area {
  z-index: 2;
  padding: 40px 50px 50px;
  position: relative;
  background-color: var(--mainColor);
}

.sign-up-form-area .default-section-title h3 {
  margin-bottom: 0;
}

.sign-up-form-area .default-section-title p {
  font-size: 15px;
}

.sign-up-form-area form {
  margin-top: 25px;
}

.sign-up-form-area form .form-control {
  margin-top: 15px;
  padding: 15px;
  color: var(--whiteColor);
  background-color: rgba(255, 255, 255, 0.2);
  font-size: 15px;
  font-family: var(--fontFamily2);
}

.sign-up-form-area form .form-control::-moz-placeholder {
  color: var(--whiteColor);
}

.sign-up-form-area form .form-control::placeholder {
  color: var(--whiteColor);
}

.sign-up-form-area form .form-check {
  margin-top: 15px;
}

.sign-up-form-area form .form-check label {
  color: #eeeeee;
}

.sign-up-form-area form .default-button {
  background-color: var(--blackColor);
  border-color: var(--blackColor);
  margin-top: 25px;
}

.form-check-input:checked {
  background-color: var(--mainColor);
  border-color: var(--whiteColor) !important;
}

/*================================================
Index 01 Slider Area Area CSS
=================================================*/
.testimonial-card {
  background-color: #f9f9f9;
  padding: 30px 25px;
  margin-top: 30px;
}

.testimonial-card p {
  font-style: italic;
  color: #212121;
}

.testimonial-card .testimonial-intro-area {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.testimonial-card .testimonial-intro-area img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin-right: 20px;
}

.testimonial-card .testimonial-intro-area h6 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
}

.testimonial-card .testimonial-intro-area span {
  color: var(--paragraphColor);
  font-size: 14px;
  font-family: var(--fontFamily2);
}

.testimonial-slider-area .owl-dots {
  text-align: center;
}

.testimonial-slider-area .owl-dots .owl-dot {
  width: 20px;
  height: 5px;
  margin: 30px 5px 0;
  border-radius: 15px;
  background-color: rgba(85, 85, 85, 0.4862745098);
  transition: 0.5s ease-in-out;
}

.testimonial-slider-area .owl-dots .active {
  width: 25px;
  background-color: var(--mainColor);
}

/*================================================
Index 01 Blog Area CSS
=================================================*/
.blog-card {
  margin-top: 30px;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
}

.blog-card .blog-card-img {
  overflow: hidden;
}

.blog-card .blog-card-img img {
  transition: 0.5s ease-in-out;
  width: 100%;
}

.blog-card .blog-card-text {
  padding: 30px;
}

.blog-card .blog-card-text h4 {
  line-height: 1.4;
  margin-bottom: 12px;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.1) rotate(-2deg);
}

.blog-date {
  display: block;
  margin-bottom: 15px;
  color: var(--paragraphColor);
  font-size: 15px;
  font-family: var(--fontFamily2);
}

.blog-date i {
  color: var(--mainColor);
  margin-right: 3px;
  font-size: 18px;
  position: relative;
  top: 3px;
}

/*================================================
Index 01 Newsletter Area CSS
=================================================*/
.newsletter {
  background-color: var(--mainColor);
  position: relative;
}

.newsletter::before {
  content: "";
  width: 55%;
  height: 105%;
  -webkit-clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  background-color: var(--blackColor);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}

.newsletter .container {
  position: relative;
  z-index: 1;
}

.newsletter .newsletter-text-area h3 {
  color: var(--whiteColor);
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 700;
}

.newsletter .newsletter-form-area .form-control {
  padding: 15px 20px;
  border: 1px solid var(--whiteColor) !important;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.newsletter .newsletter-form-area .default-button {
  border-radius: 0px !important;
  font-size: 20px;
  padding: 15px 25px 15px 20px;
  border: 0px;
}

.newsletter .newsletter-form-area .default-button::before,
.newsletter .newsletter-form-area .default-button::after {
  background-color: var(--secondary-color);
}

.newsletter .validation-danger,
.newsletter .validation-success {
  color: var(--whiteColor);
}

/*================================================
Index 02 Banner Area CSS
=================================================*/
.home-banner-single-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/banner/banner-bg-2-1.jpg");
  padding-top: 180px;
  padding-bottom: 180px;
}

.home-banner-single-slide::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6509803922), rgba(0, 0, 0, 0.5882352941), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.home-banner-single-slide .banner-text-area {
  position: relative;
  z-index: 2;
}

.hbs-2 {
  background-image: url("../images/banner/banner-bg-2-2.jpg");
}

.hbs-3 {
  background-image: url("../images/banner/banner-bg-2-3.jpg");
}

.home-banner {
  position: relative;
  overflow: hidden;
}

.home-banner .shape1 {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.home-banner .shape2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.home-banner-slider-area {
  position: relative;
}

.home-banner-slider-area .owl-dots {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
}

.home-banner-slider-area .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  display: block;
  margin: 10px 0px;
  border-radius: 50%;
  transition: 0.5s ease;
  border: 1px solid var(--whiteColor);
  position: relative;
}

.home-banner-slider-area .owl-dots .owl-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: 0.5s ease;
  background-color: var(--whiteColor);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home-banner-slider-area .owl-dots .active {
  border-color: var(--mainColor);
}

.home-banner-slider-area .owl-dots .active::before {
  background-color: var(--mainColor);
}

/*================================================
Index 02 Features Area CSS
=================================================*/
.features-card-2 {
  box-shadow: var(--boxShadow);
  transition: 0.5s ease-in-out;
  padding: 30px;
  margin-top: 30px;
}

.features-card-2 .features-card-header {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;
}

.features-card-2 .features-card-header span {
  color: var(--mainColor);
  font-size: 36px;
  font-weight: 700;
  font-family: var(--fontFamily);
}

.features-card-2 .features-card-header h4 {
  position: relative;
  padding-left: 40px;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.features-card-2 .features-card-header h4::before {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #D7D5D5;
  position: absolute;
  left: 5px;
  bottom: 5px;
}

.features-card-2:hover {
  background-color: #f9f9f9;
}

/*================================================
Index 02 Service Area CSS
=================================================*/
.service-card-2 {
  padding: 15px;
  margin-top: 30px;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
}

.service-card-2 .service-card-img-2 {
  overflow: hidden;
}

.service-card-2 .service-card-img-2 img {
  transition: 0.5s ease-in-out;
}

.service-card-2 .service-card-text-2 {
  padding: 20px 15px 10px;
}

.service-card-2 .service-card-text-2 .service-card-text-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-card-2 .service-card-text-2 .service-card-text-header i {
  color: var(--mainColor);
  margin-right: 20px;
  font-size: 40px;
}

.service-card-2 .service-card-text-2 .service-card-text-header h4 {
  margin-bottom: 0;
  line-height: 1.4;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.service-card-2:hover .service-card-img-2 img {
  transform: scale(1.1) rotate(2deg) translateY(-10px);
}

.service-card-2:hover .service-card-text-2 .service-card-text-header i {
  animation: bounce 1.5s infinite;
}

.service-slider-area-2 .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.service-slider-area-2 .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  margin: 0px 5px;
  border-radius: 50%;
  transition: 0.5s ease;
  border: 1px solid #CBCBCB;
  position: relative;
}

.service-slider-area-2 .owl-dots .owl-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: 0.5s ease;
  background-color: #CBCBCB;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.service-slider-area-2 .owl-dots .active {
  border-color: var(--mainColor);
}

.service-slider-area-2 .owl-dots .active::before {
  background-color: var(--mainColor);
}

/*================================================
Index 02 Working Process Area CSS
=================================================*/
.working-process-card-2 {
  padding: 0px 30px 25px;
  margin-top: 60px;
  position: relative;
  border: 1px solid #eeeeee;
  background-color: var(--whiteColor);
  transition: 0.5s ease-in-out;
}

.working-process-card-2 span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--mainColor);
  background-color: var(--whiteColor);
  position: relative;
  margin-left: auto;
  margin-top: -25px;
  font-size: var(--card-title-fontSize);
  font-family: var(--fontFamily);
  font-weight: 700;
}

.working-process-card-2 .working-process-title-2 {
  display: flex;
  align-items: center;
  margin-top: 35px;
  margin-bottom: 25px;
}

.working-process-card-2 .working-process-title-2 img {
  margin-right: 20px;
}

.working-process-card-2 .working-process-title-2 h4 {
  margin-bottom: 0;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.working-process-card-2:hover {
  box-shadow: var(--boxShadow);
  border-color: var(--whiteColor);
}

/*================================================
Index 02 Pricing Area CSS
=================================================*/
.pricing-card-2 h2 {
  margin-top: 20px;
}

.pricing-card-2 h2 sub {
  color: var(--paragraphColor);
  position: relative;
  bottom: 0;
  font-size: 15px;
  font-weight: 400;
}

.pricing-card-2 ul li {
  margin-top: 22px;
}

.pricing-card-2 ul li i {
  width: 25px;
  height: 25px;
  margin-right: 10px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--mainColorShadow);
}

.pricing-card-2 ul li:first-child {
  margin-top: 10px;
}

.pricing-card-2 ul .disable i {
  background-color: rgba(136, 136, 136, 0.1882352941);
}

.pricing-card-2 .default-button {
  margin-top: 30px;
}

/*================================================
Index 02 Team Area CSS
=================================================*/
.team-card-2 {
  margin-top: 30px;
  padding: 15px;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
}

.team-card-2 .team-card-text-2 {
  padding: 20px 20px 5px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.team-card-2 .team-card-text-2 h4 {
  margin-bottom: 5px;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.team-card-2 .team-card-text-2 p {
  font-size: 14px;
}

.team-card-2 .team-card-text-2 .social-icons {
  text-align: end;
  position: relative;
}

.team-card-2 .team-card-text-2 .social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-card-2 .team-card-text-2 .social-icons ul li .team-share {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mainColor);
  background-color: #F8F8F8;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.team-card-2 .team-card-text-2 .social-icons ul li a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: -10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mainColor);
  background-color: #F8F8F8;
  transition: 0.5s ease-in-out;
  position: absolute;
  right: 0px;
  bottom: 0;
}

.team-card-2 .team-card-text-2 .social-icons ul li a:hover {
  color: var(--whiteColor);
  animation: jello 1.5s 1;
  background-color: var(--mainColor);
}

.team-card-2 .team-card-text-2 .social-icons ul:hover li:nth-child(4) a {
  bottom: 50px;
}

.team-card-2 .team-card-text-2 .social-icons ul:hover li:nth-child(3) a {
  bottom: 100px;
}

.team-card-2 .team-card-text-2 .social-icons ul:hover li:nth-child(2) a {
  bottom: 150px;
}

.team-card-2 .team-card-text-2 .social-icons ul:hover li:nth-child(1) a {
  bottom: 200px;
}

.team-slider-area-2 .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.team-slider-area-2 .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  margin: 0px 5px;
  border-radius: 50%;
  transition: 0.5s ease;
  border: 1px solid #CBCBCB;
  position: relative;
}

.team-slider-area-2 .owl-dots .owl-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: 0.5s ease;
  background-color: #CBCBCB;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.team-slider-area-2 .owl-dots .active {
  border-color: var(--mainColor);
}

.team-slider-area-2 .owl-dots .active::before {
  background-color: var(--mainColor);
}

.team-slider-area-2 .center .team-card-2 .team-card-text-2 .social-icons ul li:nth-child(4) a {
  bottom: 50px;
}

.team-slider-area-2 .center .team-card-2 .team-card-text-2 .social-icons ul li:nth-child(3) a {
  bottom: 100px;
}

.team-slider-area-2 .center .team-card-2 .team-card-text-2 .social-icons ul li:nth-child(2) a {
  bottom: 150px;
}

.team-slider-area-2 .center .team-card-2 .team-card-text-2 .social-icons ul li:nth-child(1) a {
  bottom: 200px;
}

/*================================================
Index 02 Testimonials Area CSS
=================================================*/
.testimonial-slider-area-2 .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-slider-area-2 .owl-dots .owl-dot {
  width: 30px;
  height: 30px;
  margin: 0px 5px;
  border-radius: 50%;
  transition: 0.5s ease;
  border: 1px solid #CBCBCB;
  position: relative;
}

.testimonial-slider-area-2 .owl-dots .owl-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transition: 0.5s ease;
  background-color: #CBCBCB;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.testimonial-slider-area-2 .owl-dots .active {
  border-color: var(--mainColor);
}

.testimonial-slider-area-2 .owl-dots .active::before {
  background-color: var(--mainColor);
}

/*================================================
Index 02 Blog Area CSS
=================================================*/
.blog-card-2 {
  padding: 15px;
}

.blog-card-2 .blog-card-text {
  padding-bottom: 15px;
}

/*================================================
Index 03 Banner Area CSS
=================================================*/
.banner {
  overflow: hidden;
}

.banner-text-area-3 {
  max-width: 790px;
  margin-left: auto;
  padding-top: 180px;
  padding-bottom: 180px;
  padding-left: 15px;
}

.banner-text-area-3 h6::before {
  display: none;
}

.banner-text-area-3 h1 {
  color: var(--blackColor);
}

.banner-text-area-3 p {
  color: var(--paragraphColor);
}

.banner-img-area-3 {
  position: relative;
  height: 100%;
}

.banner-img-area-3 .swiper {
  height: 100%;
}

.banner-img-area-3 .swiper-pagination {
  text-align: end;
  padding-right: 10%;
}

.banner-img-area-3 .swiper-pagination span {
  color: var(--whiteColor);
  font-family: var(--fontFamily2);
}

.banner-img-area-3 .swiper-pagination .swiper-pagination-current {
  font-size: 35px;
  position: relative;
}

.banner-img-area-3 .swiper-pagination .swiper-pagination-current::before {
  content: "/";
  color: var(--whiteColor);
  position: absolute;
  right: -15px;
  top: 10px;
  font-size: 25px;
}

.banner-img-area-3 .video-popup {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  box-shadow: var(--boxShadow);
  border: 10px solid var(--whiteColor);
  background-color: var(--mainColor);
  position: absolute;
  left: -45px;
  bottom: 10%;
  z-index: 2;
}

.banner-3-image-area-single-slider {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-image: url("../images/banner/banner-3-1.jpg");
  position: relative;
  height: 100%;
}

.banner-3-image-area-single-slider img {
  display: none;
}

.bsi-3-2 {
  background-image: url("../images/banner/banner-3-2.jpg");
}

.bsi-3-3 {
  background-image: url("../images/banner/banner-3-3.jpg");
}

/*================================================
Index 03 Features Area CSS
=================================================*/
.features-card-3 {
  margin-top: 30px;
  background-color: #f9f9f9;
  transition: 0.5s ease-in-out;
}

.features-card-3 .features-card-text-area {
  padding: 30px;
}

.features-card-3 .features-card-text-area .features-card-header-3 {
  /* display: flex; */
  align-items: center;
  margin-bottom: 15px;
}

.features-card-3 .features-card-text-area .features-card-header-3 img {
  margin-right: 20px;
  width: 50px;
  height: 50px;
}

.features-card-3 .features-card-text-area .features-card-header-3 h4 {
  margin-bottom: 0;
  line-height: 1.4;
  font-weight: 700;
  font-size: var(--card-title-fontSize);
}

.features-card-3:hover {
  transform: translateY(-10px) rotate(1deg);
}

/*================================================
Index 03 About Area CSS
=================================================*/
.about-img-area-3 {
  position: relative;
  padding-top: 15px;
  padding-left: 15px;
}

.about-img-area-3::before {
  content: "";
  width: 85%;
  height: 85%;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.about-img-area-3 .about-img-text-3 {
  padding: 15px 25px;
  display: inline-block;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
  position: absolute;
  left: 0px;
  bottom: 5%;
}

.about-img-area-3 .about-img-text-3 h3 {
  margin-bottom: 5px;
  color: var(--mainColor);
  font-size: 36px;
  font-weight: 700;
  font-family: var(--fontFamily2);
}

.about-img-area-3 .about-img-text-3 p {
  font-size: 14px;
}

.about-text-area-3 {
  padding-top: 0;
  padding-bottom: 0;
}

.about-text-area-3 .about-list {
  margin-top: 25px;
}

.about-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list ul li {
  position: relative;
  padding-left: 30px;
  margin-top: 15px;
  color: var(--blackColor);
  font-weight: 500;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.about-list ul li::before {
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  top: 3px;
}

/*================================================
Index 03 Services Area CSS
=================================================*/
.service-card-3 {
  margin-top: 30px;
}

.service-card-3 .service-card-img-3 {
  overflow: hidden;
}

.service-card-3 .service-card-img-3 img {
  transition: 0.5s ease-in-out;
  width: 100%;
}

.service-card-3 .service-card-text-3 {
  padding: 30px;
  text-align: center;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
  max-width: 80%;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  margin-top: -100px;
}

.service-card-3 .service-card-text-3 h4 {
  margin-bottom: 12px;
  line-height: 1.4;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.service-card-3 .service-card-text-3 .default-button {
  margin-top: 15px;
}

.service-card-3:hover .service-card-img-3 img {
  transform: scale(1.1);
}

.service-card-3:hover .service-card-text-3 {
  animation: jello 1.5s 1;
}

.section-bottom-text {
  margin-top: 30px;
  text-align: center;
  display: block;
  overflow: hidden;
  position: relative;
  color: var(--paragraphColor);
  font-size: 15px;
  font-family: var(--fontFamily2);
}

.section-bottom-text::before {
  content: "";
  width: 34%;
  height: 1px;
  background-color: #E2E1E1;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section-bottom-text::after {
  content: "";
  width: 34%;
  height: 1px;
  background-color: #E2E1E1;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.section-bottom-text a {
  color: var(--mainColor);
}

.section-bottom-text a i {
  margin-left: 5px;
  position: relative;
  top: 4px;
}

/*================================================
Index 03 Working Process Area CSS
=================================================*/
.working-process-card-3 {
  padding: 30px;
  margin-top: 30px;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
  position: relative;
  min-height: 330px;
}

.working-process-card-3 span {
  position: absolute;
  right: 5%;
  top: 5%;
  color: rgba(0, 0, 0, 0.1);
  font-size: 64px;
  font-weight: 600;
  font-family: var(--fontFamily2);
}

.working-process-card-3 h6 {
  width: 60px;
  height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  font-size: var(--card-title-fontSize);
  font-family: var(--fontFamily2);
}

.working-process-card-3 h4 {
  line-height: 1.4;
  margin-top: 15px;
  margin-bottom: 12px;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.working-process-card-3:hover h6 {
  animation: jello 1.5s infinite;
}

/*================================================
Index 03 Pricing Area CSS
=================================================*/
.pricing-card-3 {
  transition: 0.5s ease-in-out;
}

.pricing-card-3 h6 {
  text-align: center;
}

.pricing-card-3 h2 {
  border-bottom: 1px solid #eeeeee;
  text-align: center;
  padding-bottom: 20px;
  animation: none !important;
}

.pricing-card-3 .default-button {
  margin-top: 35px;
}

.pricing-card-3:hover {
  background-color: var(--whiteColor);
  box-shadow: var(--boxShadow);
}

/*================================================
Index 03 Team Area CSS
=================================================*/
.team-card-3 {
  margin-top: 30px;
}

.team-card-3 .team-card-3-img {
  position: relative;
}

.team-card-3 .team-card-3-img .social-icons {
  transition: 0.5s ease-in-out;
  text-align: center;
  position: absolute;
  bottom: 0%;
  z-index: 2;
  width: 100%;
  opacity: 0;
  transform: rotate(10deg);
}

.team-card-3 .team-card-3-img .social-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-card-3 .team-card-3-img .social-icons ul li {
  display: inline-block;
}

.team-card-3 .team-card-3-img .social-icons ul li a {
  width: 40px;
  height: 40px;
  margin-right: 5px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mainColor);
  background-color: #F8F8F8;
}

.team-card-3 .team-card-3-img .social-icons ul li a:hover {
  color: var(--whiteColor);
  animation: jello 1.5s 1;
  background-color: var(--mainColor);
}

.team-card-3 .team-card-3-img::before {
  content: "";
  width: 100%;
  height: 0%;
  transition: 0.5s ease-in-out;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.team-card-3 .team-card-text {
  position: relative;
  z-index: 2;
  width: 90%;
  padding: 30px;
  text-align: center;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
  margin-left: auto;
  margin-right: auto;
  margin-top: -50px;
}

.team-card-3 .team-card-text h4 {
  margin-bottom: 5px;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.team-card-3 .team-card-text p {
  font-size: 14px;
}

.team-card-3:hover .team-card-3-img::before {
  height: 100%;
}

.team-card-3:hover .team-card-3-img .social-icons {
  bottom: 25%;
  opacity: 1;
  transform: rotate(0);
}

/*================================================
Index 03 Testimonials Area CSS
=================================================*/
.testimonial-card-3 {
  padding: 35px;
  margin-top: 30px;
  position: relative;
  transition: 0.5s ease-in-out;
  background-color: var(--whiteColor);
  box-shadow: var(--boxShadow);
}

.testimonial-card-3 i {
  font-size: 45px;
  color: var(--mainColor);
  position: absolute;
  right: 8%;
  top: 8%;
}

.testimonial-card-3 p {
  font-size: 17px;
  font-style: italic;
}

.testimonial-card-3 .testimonial-intro-area {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.testimonial-card-3 .testimonial-intro-area img {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  margin-right: 20px;
}

.testimonial-card-3 .testimonial-intro-area h6 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 700;
}

.testimonial-card-3 .testimonial-intro-area span {
  color: var(--paragraphColor);
  font-size: 14px;
  font-family: var(--fontFamily2);
}

.testimonial-card-3:hover {
  background-color: #f9f9f9;
  box-shadow: none;
}

.testimonial-card-3:hover i {
  animation: bounce 1.5s infinite;
}

/*================================================
Index 03 Blog Area CSS
=================================================*/
.blog-card-3 {
  background-color: transparent;
  box-shadow: none;
}

.blog-card-3 .blog-card-text {
  width: 90%;
  position: relative;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
  margin-top: -70px;
  margin-left: auto;
  margin-right: auto;
}

.blog-card-3 .blog-card-text .default-button {
  margin-top: 15px;
}

/*================================================
Uni Banner Area CSS
=================================================*/
.uni-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("../images/inner-images/uni-banner-bg-1.jpg");
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.uni-banner::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
}

.blog-uni-banner {
  background-image: url("../images/inner-images/uni-banner-bg-2.jpg");
}

.product-uni-banner {
  background-image: url("../images/inner-images/uni-banner-bg-3.jpg");
}

.uni-banner-text-area {
  position: relative;
  z-index: 1;
}

.uni-banner-text-area h1 {
  color: var(--whiteColor);
  margin-bottom: 12px;
  font-size: 48px;
  font-weight: 700;
}

.uni-banner-text-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.uni-banner-text-area ul li {
  display: inline-block;
  color: var(--mainColor);
  position: relative;
  margin-right: 30px;
  font-weight: 500;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.uni-banner-text-area ul li a {
  color: var(--whiteColor);
}

.uni-banner-text-area ul li::before {
  content: "/";
  position: absolute;
  right: -21px;
  font-size: 14px;
  top: 3px;
}

.uni-banner-text-area ul li:last-child {
  margin-right: 0;
}

.uni-banner-text-area ul li:last-child::before {
  display: none;
}

/*================================================
Pagination Area CSS
=================================================*/
.paginations {
  display: table;
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
}

.paginations ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.paginations ul li {
  display: inline-block;
}

.paginations ul li a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  margin-right: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s ease-in-out;
  box-shadow: 0px 5px 10px #cccccc;
  overflow: hidden;
  position: relative;
  padding-top: 3px;
  font-family: var(--fontFamily2);
  font-size: var(--fontSize);
  font-weight: 700;
}

.paginations ul li a:hover {
  box-shadow: 0px -5px 10px #cccccc;
  color: var(--whiteColor);
  background-color: var(--blackColor);
}

.paginations ul li a:hover::before {
  height: 100%;
  bottom: 0;
  top: unset;
}

.paginations ul li a::before {
  content: "";
  width: 100%;
  height: 0%;
  transition: 0.5s ease-in-out;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  top: 0;
  bottom: unset;
  z-index: 0;
}

.paginations ul li a span {
  position: relative;
  z-index: 1;
}

.paginations ul .active a {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.paginations ul .active a::before {
  height: 100%;
}

/*================================================
Sidebar Area CSS
=================================================*/
.sidebar-card {
  padding: 25px 25px 30px;
  border: 1px solid rgba(205, 205, 205, 0.2274509804);
  background-color: #f9f9f9;
}

.sidebar-card h3 {
  margin-bottom: 15px;
  font-size: 30px;
  font-weight: 700;
}

.sidebar-services ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.sidebar-services ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(205, 205, 205, 0.2274509804);
  background-color: #f9f9f9;
  margin-top: 15px;
  padding: 15px 20px;
  font-family: var(--fontFamily);
  font-size: 18px;
  font-weight: 700;
}

.sidebar-services ul li a i {
  position: relative;
  top: 3px;
}

.sidebar-services ul li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.sidebar-services ul li .active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

.sidebar-services ul li:first-child a {
  margin-top: 0;
}

.sidebar-download .default-button {
  margin-top: 10px;
  border-color: var(--mainColor) !important;
}

.sidebar-download .default-button::before,
.sidebar-download .default-button::after {
  background-color: var(--secondary-color);
}

.sidebar-download .default-button i {
  font-size: 25px;
  top: 5px;
  margin-left: 0;
  margin-right: 10px;
}

.search-box .input-group {
  border-radius: 0px;
  overflow: hidden;
  border: 1px solid #eeeeee;
}

.search-box .form-control {
  background-color: var(--whiteColor);
  border: 0px !important;
  padding: 15px;
  border-radius: 0;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.search-box .form-control::-moz-placeholder {
  color: var(--paragraphColor);
}

.search-box .form-control::placeholder {
  color: var(--paragraphColor);
}

.search-box .btn {
  border-radius: 0px !important;
  padding: 15px 20px 9px;
  color: var(--whiteColor);
  transition: 0.5s ease-in-out;
  background-color: var(--mainColor);
}

.search-box .btn:hover {
  background-color: var(--blackColor);
}

.sidebar-categories ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.sidebar-categories ul li {
  margin-top: 15px;
}

.sidebar-categories ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-categories ul li a span {
  color: var(--paragraphColor);
  transition: 0.5s ease-in-out;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.sidebar-categories ul li a span i {
  transition: 0.5s ease-in-out;
  color: var(--blackColor);
  margin-right: 5px;
  position: relative;
  top: 3px;
}

.sidebar-categories ul li a .post-amount {
  width: 30px;
  height: 30px;
  font-size: 14px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #EEEEEE;
  transition: 0.5s ease-in-out;
}

.sidebar-categories ul li a:hover span {
  color: var(--mainColor);
}

.sidebar-categories ul li a:hover span i {
  color: var(--mainColor);
}

.sidebar-categories ul li a:hover .post-amount {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.sidebar-tag h3 {
  margin-bottom: 5px;
}

.sidebar-tag ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.sidebar-tag ul li {
  display: inline-block;
}

.sidebar-tag ul li a {
  padding: 7px 20px;
  border-radius: 0px;
  display: inline-block;
  border: 1px solid #eeeeee;
  color: var(--paragraphColor);
  font-size: 14px;
  font-family: var(--fontFamily2);
  margin-right: 10px;
  margin-top: 15px;
}

.sidebar-tag ul li a:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

/*================================================
Details Page Area CSS
=================================================*/
.details-page-text-area .details-page-main-img {
  margin-bottom: 20px;
  width: 100%;
}

.details-page-text-area h3 {
  line-height: 1.4;
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 700;
}

.details-page-text-area .details-page-text-img-area {
  margin-top: 25px;
  margin-bottom: 10px;
}

.details-page-text-area .details-page-text-img-area img {
  margin-bottom: 20px;
}

.details-page-text-area h4 {
  margin-bottom: 12px;
  font-size: 26px;
  font-weight: 700;
}

.details-page-text-area .about-list {
  margin-bottom: 20px;
}

/*================================================ 
Log In Page CSS
=================================================*/
.login-form form label {
  color: var(--blackColor);
  font-family: var(--fontFamily);
  font-size: var(--card-title-fontSize);
  font-weight: 600;
}

.login-form form .form-control {
  border: 1px solid #eeeeee !important;
  padding: 12px 15px;
}

.login-form form .form-check label {
  font-weight: 500;
  font-size: 14px;
  font-family: var(--fontFamily);
}

.login-form form .default-button {
  width: 100%;
  border: 0px;
}

.login-form form .form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-form form .form-footer a {
  margin-bottom: 15px;
  display: inline-block;
  font-weight: 500;
  font-size: 14px;
  font-family: var(--fontFamily);
}

.login-form p {
  font-size: 15px;
  font-style: italic;
  font-family: var(--fontFamily);
}

.login-form .optional-link {
  font-size: 15px;
  margin-top: 5px;
}

.login-form .optional-link a {
  color: var(--mainColor);
  font-weight: 500;
}

.form-check-input:checked {
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}

/*================================================
Terms & Privacy area CSS
=================================================*/
.terms {
  margin-bottom: -15px;
}

.terms strong {
  color: var(--blackColor);
}

.terms a {
  color: var(--mainColor);
}

.terms h1,
.terms h2,
.terms h3,
.terms h4,
.terms h5 {
  margin-top: 25px;
  margin-bottom: 15px;
  font-family: var(--fontFamily);
  font-weight: 600;
}

.terms h6 {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--fontFamily);
}

.terms h1 {
  font-size: 30px;
}

.terms h2 {
  font-size: 28px;
}

.terms h3 {
  font-size: 26px;
}

.terms h4 {
  font-size: 24px;
}

.terms h5 {
  font-size: 22px;
}

.terms p {
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.terms ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.terms ul li {
  margin: 10px 0px;
  font-size: var(--fontSize);
  color: var(--paragraphColor);
  font-family: var(--fontFamily2);
}

.terms ul li span {
  font-weight: 700;
  margin-right: 8px;
  color: var(--blackColor);
}

.terms .payment li {
  position: relative;
  padding-left: 20px;
}

.terms .payment li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  top: 6px;
}

/*================================================
Error Area CSS
=================================================*/
.border-b {
  border-top: 1px solid #eeeeee;
}

.error-content {
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.error-content h4 {
  line-height: 1.4;
  margin-top: 25px;
  margin-bottom: 12px;
  font-size: 36px;
  font-weight: 700;
}

.error-content .input-group {
  border-radius: 25px !important;
  background-color: #f8f8f8;
}

.error-content .input-group .form-control {
  border: 0px !important;
  border-radius: 25px;
  padding: 15px 15px;
  background-color: #f9f9f9;
}

.error-content .input-group .btn {
  width: 40px;
  height: 40px;
  margin-top: 8px;
  margin-right: 8px;
  border-radius: 50% !important;
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.error-content .default-button {
  margin-top: 15px;
}

/*================================================
FAQ Area CSS
=================================================*/
.accordion-item {
  border: 0px;
  background-color: #f9f9f9;
  margin-top: 25px;
  padding: 0px 25px 5px;
}

.accordion-item .accordion-body {
  background-color: transparent;
  padding: 0;
  padding-bottom: 15px;
}

.accordion-item .accordion-body p {
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.accordion-button {
  border: 0px !important;
  min-height: 30px;
  position: relative;
  transition: 0.5s ease-in-out;
  color: var(--secondColor) !important;
  box-shadow: none !important;
  background-color: #f9f9f9 !important;
  padding: 15px 35px 15px 0px;
  border-radius: 5px !important;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--fontFamily);
}

.accordion-button i {
  width: 30px;
  height: 30px;
  font-size: 15px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondColor);
  transition: 0.5s ease-in-out;
  position: absolute;
  right: 0px;
}

.accordion-button::after {
  display: none;
}

.accordion-button .fa-plus {
  z-index: 0;
  font-size: 0;
}

.accordion-button:not(.collapsed) {
  margin-bottom: 0px;
}

.accordion-button:not(.collapsed) i {
  transform: rotate(180deg);
  color: var(--mainColor);
}

.accordion-button:not(.collapsed) .fa-plus {
  z-index: 2;
  font-size: 15px;
}

.faq-contact-form {
  padding: 50px;
  background-color: #f9f9f9;
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
  margin-left: -150px;
}

.faq-contact-form .form-control {
  background-color: #f9f9f9;
  border: 1px solid #eeeeee !important;
  padding: 15px;
  margin-bottom: 15px;
}

.faq-contact-img-area {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-image: url("../images/inner-images/faq-contact-img.jpg");
  height: 100%;
}

.faq-contact-img-area img {
  display: none;
}

.faq-contact .section-content {
  margin-top: 60px;
}

/*================================================
Blog Details Area CSS
=================================================*/
.blog-details-text-area h4 {
  margin-top: 25px;
  margin-bottom: 15px;
}

.blog-details-text-area .blog-list {
  margin-bottom: 20px;
}

.blog-details-text-area .blog-list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-details-text-area .blog-list ul li {
  margin-top: 15px;
  font-size: 13px;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.blog-details-text-area .blog-list ul li i {
  color: var(--mainColor);
  margin-right: 10px;
  position: relative;
  top: 3px;
}

.bd-comments {
  margin-top: 30px;
  padding: 30px;
  border-bottom: 1px solid #eeeeee;
  background-color: #f9f9f9;
}

.bd-comments h3 {
  font-size: var(--card-title-fontSize);
  font-weight: 600;
}

.bd-form {
  padding: 30px;
  background-color: #f9f9f9;
}

.bd-form h3 {
  font-size: var(--card-title-fontSize);
  font-weight: 600;
}

.bd-form .form-control {
  border: 1px solid #eeeeee !important;
  margin-top: 10px;
  margin-bottom: 15px;
  padding: 15px 15px;
  border-radius: 5px;
  background-color: var(--whiteColor);
}

.bd-form .form-check label {
  color: var(--paragraphColor);
  font-size: 14px;
  font-family: var(--fontFamily2);
}

.bd-form .default-button {
  margin-top: 15px;
}

.comment-card {
  margin-top: 30px;
  position: relative;
  padding-left: 95px;
}

.comment-card img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  left: 0;
}

.comment-card h5 {
  margin-bottom: 3px;
  font-weight: 600;
  font-size: 17px;
}

.comment-card span {
  color: rgba(112, 112, 112, 0.7529411765);
  margin-bottom: 10px;
  font-weight: 400;
  font-size: 14px;
  font-family: var(--fontFamily2);
}

.comment-card p {
  margin-top: 10px;
  margin-bottom: 10px;
}

.comment-card .reply-button {
  color: var(--mainColor);
  font-weight: 600;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

/*================================================
Product Page Area CSS
=================================================*/
.product-page-topbar .ppt-right-area {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  align-items: center;
}

.product-page-topbar .ppt-right-area .input-group {
  max-width: 300px;
  margin-right: 25px;
  border-radius: 0px !important;
  background-color: #f9f9f9 !important;
}

.product-page-topbar .ppt-right-area .input-group .default-button {
  border: 0px !important;
  padding: 12px 20px !important;
  border-radius: 0px !important;
  margin: 7px;
}

.product-page-topbar .ppt-right-area .form-select {
  padding: 15px;
  max-width: 300px;
  border-radius: 0px !important;
  background-color: var(--whiteColor);
  border: 1px solid #eeeeee !important;
  font-size: 15px;
  font-family: var(--fontFamily2);
}

.product-page-topbar .ppt-right-area .form-select .current {
  color: var(--paragraphColor);
}

.product-page-topbar .ppt-right-area .form-select::after {
  display: none;
}

.product-card {
  margin-top: 30px;
}

.product-card .product-card-text-area {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card .product-card-text-area .product-info h4 {
  margin-bottom: 10px;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.product-card .product-card-text-area .product-info p {
  font-size: 14px;
}

.product-card .product-card-text-area .product-cart-btn {
  width: 40px;
  height: 40px;
  padding-top: 4px;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--mainColorShadow);
}

.product-card .product-card-text-area .product-cart-btn:hover {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.price-range-bar {
  border: 0 !important;
  background: var(--whiteColor);
  height: 5px;
  width: 100%;
  margin-left: 0;
  margin-bottom: 25px;
  position: relative;
}

.price-range-bar .ui-slider-range {
  background: var(--mainColor);
}

.price-range-bar .ui-slider-handle {
  border: none;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--mainColor);
  height: 15px;
  width: 15px;
  top: -5px;
  cursor: pointer;
  background: var(--mainColor);
  position: absolute;
}

.price-range-bar .ui-slider-handle:focus {
  outline: 0;
}

.price-range-filter .btn {
  padding: 10px 35px;
  background-color: var(--mainColor);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  transition: 0.5s;
  box-shadow: none;
}

.price-range-filter .btn:hover {
  background-color: var(--mainColor);
}

.price-range-filter-button {
  margin-top: 15px;
}

.price-range-filter-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--blackColor);
  margin-bottom: 0;
}

.price-range-filter-item input {
  width: 100%;
  border: 0;
  border-radius: 0;
  text-align: start;
  margin: 0px 10px;
  font-size: 16px;
  font-weight: 600;
  color: var(--mainColor);
  background-color: transparent;
}

.price-range-filter-item input.input {
  width: 100%;
  border: 0;
  border-radius: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--mainColor);
  background-color: transparent;
}

/*================================================
Product Details Page Area CSS
=================================================*/
.stars {
  margin: 0;
  padding: 0;
  list-style: none;
}

.stars li {
  display: inline-block;
  margin: 0 0px;
  color: #F3CF11;
}

.pdit-list ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.pdit-list ul li {
  margin-top: 12px;
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.pdit-list ul li span {
  font-weight: 600;
  width: 120px;
  display: inline-block;
  color: var(--blackColor);
}

.pdit-list ul li span:first-child {
  font-family: var(--fontFamily);
}

.product-info-image-area {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* background-image: url("../images/products/product2.jpg"); */
  height: 100%;
  border: 1px solid #eeeeee;
}

.product-info-image-area > img {
  display: none;
}

.product-details-info-area {
  padding-top: 50px;
  padding-bottom: 50px;
}

.product-details-info-area h3 {
  margin-bottom: 8px;
  font-size: 30px;
  font-weight: 700;
}

.product-details-info-area .price {
  color: var(--mainColor);
}

.product-details-info-area .stars {
  margin-bottom: 15px;
}

.product-details-info-area .default-button {
  margin-top: 30px;
}

.product-details-info-area .product-details-social-icons ul {
  border-top: 1px solid #eeeeee;
  margin: 30px 0 0;
  padding: 30px 0 0;
  list-style: none;
}

.product-details-info-area .product-details-social-icons ul li {
  display: inline-block;
}

.product-details-info-area .product-details-social-icons ul li span {
  margin-right: 20px;
  font-family: var(--fontFamily);
  font-size: var(--fontSize);
  font-weight: 600;
}

.product-details-info-area .product-details-social-icons ul li a {
  width: 40px;
  height: 40px;
  margin: 0px 5px;
  border: 1px solid #eeeeee;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mainColor);
  background-color: #f9f9f9;
}

.product-details-info-area .product-details-social-icons ul li a:hover {
  color: var(--whiteColor);
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}

.product-description-area .nav-tabs {
  justify-content: center;
  border-bottom: transparent;
}

.product-description-area .nav-tabs .nav-link {
  margin-right: 15px;
  padding: 12px 25px;
  margin-top: 10px;
  border: 0px;
  border-radius: 5px;
  color: var(--mainColor);
  border: 1px solid var(--mainColorShadow);
  font-size: 18px;
  font-weight: 500;
  font-family: var(--fontFamily);
}

.product-description-area .nav-tabs .active {
  color: var(--whiteColor);
  background-color: var(--mainColor);
}

.product-description-area .img-hide {
  margin-top: 30px;
  padding: 30px;
  background-color: var(--whiteColor);
}

.product-description-area .img-hide .bd-comments,
.product-description-area .img-hide .bd-form {
  padding: 0;
  background-color: transparent;
  border: 0;
}

.product-description-area .img-hide .bd-comments {
  margin-top: 0px !important;
}

.product-description-area .pd-features-area {
  max-width: 720px;
}

.product-description-area .pd-description .production-description-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-description-area .pd-description .production-description-list li {
  margin-top: 10px;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.product-description-area .pd-description .production-description-list li i {
  color: var(--mainColor);
  margin-right: 5px;
  position: relative;
  top: 3px;
}

.review-stars {
  margin-top: -20px;
  margin-bottom: 10px;
}

.review-stars input {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.review-stars label {
  box-sizing: border-box;
  display: inline-block;
  margin-right: 5px;
  height: 25px;
  width: 25px;
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='transparent' stroke='rgba(255, 217, 0, 0.973)' stroke-width='38' d='M259.216 29.942L330.27 173.92l158.89 23.087L374.185 309.08l27.145 158.23-142.114-74.698-142.112 74.698 27.146-158.23L29.274 197.007l158.89-23.088z' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  font-size: 0;
  cursor: pointer;
}

.review-stars input:nth-child(1):checked~label:nth-of-type(-n + 1),
.review-stars input:nth-child(2):checked~label:nth-of-type(-n + 2),
.review-stars input:nth-child(3):checked~label:nth-of-type(-n + 3),
.review-stars input:nth-child(4):checked~label:nth-of-type(-n + 4),
.review-stars input:nth-child(5):checked~label:nth-of-type(-n + 5) {
  background: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='rgba(255, 217, 0, 0.973)' stroke='rgba(255, 217, 0, 0.973)' stroke-width='38' d='M259.216 29.942L330.27 173.92l158.89 23.087L374.185 309.08l27.145 158.23-142.114-74.698-142.112 74.698 27.146-158.23L29.274 197.007l158.89-23.088z' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/*================================================
Cart Page Area CSS
=================================================*/
.cart-table-area thead th {
  border-bottom: 0px !important;
  color: var(--blackColor);
  padding-top: 15px !important;
  padding-bottom: 15px !important;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--fontFamily);
}

.cart-table-area .table-light {
  border-bottom: 0px !important;
}

.cart-table-area tbody {
  border-top: 0px !important;
}

.cart-table-area tbody tr {
  padding: 15px 0px;
}

.cart-table-area tbody th {
  padding: 20px 0px;
}

.cart-table-area tr {
  text-align: center;
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.cart-table-area .fa-trash-alt {
  color: red;
}

.cart-table-area .stockout {
  color: red;
}

.cart-table-area .instock {
  color: green;
}

.cart-footer-area {
  margin-top: 15px;
}

.cart-footer-area .input-group {
  max-width: 500px;
  overflow: hidden;
  margin-top: 10px;
  border-radius: 10px !important;
  background-color: #f9f9f9;
}

.cart-footer-area .input-group .form-control {
  background-color: #f9f9f9;
  border-radius: 10px !important;
  border: 0px !important;
  padding: 12px 15px;
}

.cart-footer-area .input-group .default-button {
  padding: 12px 15px;
  border: 0px;
  margin: 10px;
  border-radius: 10px !important;
}

.cart-footer-area .dfb {
  margin-left: 20px;
  margin-top: 10px;
  display: block;
  float: right;
}

.input-counter {
  max-width: 130px;
  min-width: 130px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.input-counter span {
  position: absolute;
  top: 0;
  background-color: transparent;
  cursor: pointer;
  color: var(--paragraphColor);
  width: 50px;
  height: 100%;
  line-height: 45px;
  transition: 0.5s;
}

.input-counter span:hover {
  color: var(--mainColor);
}

.input-counter .minus-btn {
  left: 0;
}

.input-counter .plus-btn {
  right: 0;
}

.input-counter input {
  height: 45px;
  color: var(--paragraphColor);
  outline: 0;
  display: block;
  border: none;
  border: 1px solid #eeeeee;
  text-align: center;
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  border-radius: 5px;
}

.input-counter input::-moz-placeholder {
  color: var(--paragraphColor);
  -moz-transition: 0.6s;
  transition: 0.6s;
}

.input-counter input::placeholder {
  color: var(--paragraphColor);
  transition: 0.6s;
}

.input-counter input:focus::-moz-placeholder {
  color: var(--mainColor);
}

.input-counter input:focus::placeholder {
  color: var(--mainColor);
}

.total-cart-box {
  padding: 30px;
  box-shadow: var(--boxShadow);
  background-color: var(--whiteColor);
}

.total-cart-box h4 {
  margin-bottom: 20px;
  font-size: var(--card-title-fontSize);
  font-weight: 600;
}

.total-cart-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.total-cart-box ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid #eeeeee;
}

.total-cart-box ul li span {
  color: var(--paragraphColor);
  font-size: var(--fontSize);
  font-family: var(--fontFamily);
}

.total-cart-box ul li span strong {
  color: var(--blackColor);
}

.total-cart-box .default-button {
  margin-top: 30px;
}

/*=================================
Checkout Area
===================================*/
.checkout-user {
  color: var(--blackColor);
  font-size: var(--fontSize);
  margin-bottom: 30px;
  padding: 15px 25px;
  background-color: #f9f9f9;
}

.checkout-user span {
  color: var(--paragraphColor);
  font-size: var(--fontSize);
}

.checkout-user span a {
  color: var(--mainColor);
}

.checkout-user span a:hover {
  color: var(--blackColor);
}

.billing-details {
  margin-bottom: 30px;
}

.billing-details h3 {
  font-size: var(--card-title-fontSize);
  color: var(--blackColor);
  margin-bottom: 25px;
  font-weight: 600;
}

.billing-details .form-group {
  margin-bottom: 25px;
}

.billing-details .form-group label {
  color: var(--blackColor);
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.billing-details .form-group label span {
  color: var(--mainColor);
}

.billing-details .form-group .form-control {
  height: 50px;
  color: var(--paragraphColor);
  border: none;
  background-color: #f9f8f8;
  border-radius: 0;
  padding: 10px 20px;
  width: 100%;
}

.billing-details .form-group .form-control:focus {
  outline: 0;
  box-shadow: none;
}

.billing-details .form-group .form-control:hover {
  outline: 0;
  box-shadow: none;
}

.billing-details .form-group .form-message {
  font-size: 16px;
  border: none;
  background-color: #f9f8f8;
  padding: 18px 18px;
  font-weight: 400;
  width: 100%;
}

.billing-details .form-group .form-message:focus {
  outline: 0;
  box-shadow: none;
}

.billing-details .form-group .form-message:hover {
  outline: 0;
  box-shadow: none;
}

.billing-details .form-check {
  margin-bottom: 15px;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.billing-details .form-check .form-check-input {
  width: 15px;
  height: 15px;
}

.billing-details .form-check .form-check-label {
  color: var(--blackColor);
  margin-left: 3px;
  font-weight: 500;
}

.billing-totals {
  margin-bottom: 30px;
}

.billing-totals h3 {
  font-size: var(--card-title-fontSize);
  font-weight: 600;
  margin-bottom: 15px;
}

.billing-totals ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  border: 1px solid #eeeeee;
  position: relative;
}

.billing-totals ul li {
  padding: 15px 15px;
  color: var(--paragraphColor);
  overflow: hidden;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eeeeee;
  font-weight: 400;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.billing-totals ul li strong {
  color: var(--blackColor);
}

.billing-totals ul li:first-child {
  border-bottom: 1px solid #eeeeee;
  padding: 15px;
}

.billing-totals ul li:nth-child(2) {
  padding-top: 15px;
}

.billing-totals ul li:last-child {
  padding-bottom: 15px;
}

.payment-box {
  background-color: var(--whiteColor);
  box-shadow: 0 5px 28px rgba(0, 0, 0, 0.07);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 40px 30px;
}

.payment-box .payment-method h3 {
  font-size: var(--card-title-fontSize);
  font-weight: 600;
  margin-bottom: 20px;
}

.payment-box .payment-method p [type=radio]:checked {
  display: none;
}

.payment-box .payment-method p [type=radio]:checked+label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  font-weight: 600;
  color: var(--blackColor);
  position: relative;
  margin-bottom: 15px;
}

.payment-box .payment-method p [type=radio]:checked+label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
}

.payment-box .payment-method p [type=radio]:checked+label::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--mainColor);
  position: absolute;
  top: 6px;
  left: 3px;
  border-radius: 50%;
  transition: 0.5s;
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.payment-box .payment-method p [type=radio]:not(:checked) {
  display: none;
}

.payment-box .payment-method p [type=radio]:not(:checked)+label {
  padding-left: 27px;
  cursor: pointer;
  display: block;
  font-weight: 600;
  color: #172541;
  position: relative;
  margin-bottom: 15px;
}

.payment-box .payment-method p [type=radio]:not(:checked)+label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
}

.payment-box .payment-method p [type=radio]:not(:checked)+label::after {
  content: "";
  width: 12px;
  height: 12px;
  background: var(--mainColor);
  position: absolute;
  top: 6px;
  left: 3px;
  border-radius: 50%;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  transform: scale(0);
}

.payment-box .default-btn {
  margin-top: 20px;
  text-align: center;
  width: 100%;
}

/*=================================
Contact Area
===================================*/
.contact-form-text-area form .form-control {
  padding: 15px 15px;
  border: 1px solid #eeeeee !important;
  margin: 0px 0px 20px;
  background-color: #f9f9f9;
}

.contact-form-text-area form .default-button {
  border: 0;
  margin-top: 10px;
  width: 100%;
}

.with-errors ul li {
  color: red;
}

.text-danger {
  margin-top: 10px;
}

.customer-support-area {
  background-color: #f9f9f9;
  padding: 50px;
}

.customer-support-area h4 {
  margin-bottom: 5px;
  font-size: var(--card-title-fontSize);
  font-weight: 700;
}

.customer-support-area .contact-list {
  margin: 0 0 25px;
  padding: 0;
  list-style: none;
}

.customer-support-area .contact-list li {
  margin-top: 15px;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.customer-support-area .contact-list li i {
  font-size: 20px;
  color: var(--mainColor);
  margin-right: 10px;
  position: relative;
  top: 4px;
}

.customer-support-area .working-time {
  margin: 0;
  padding: 0;
  list-style: none;
}

.customer-support-area .working-time li {
  margin-top: 15px;
  display: flex;
  align-items: center;
  color: var(--paragraphColor);
  justify-content: space-between;
  font-size: var(--fontSize);
  font-family: var(--fontFamily2);
}

.contact-google-map {
  width: 100%;
  height: 500px;
}

.contact-google-map .g-map {
  width: 100%;
  height: 100%;
}

/*================================================
Custom Animation Area CSS
=================================================*/
@keyframes left-right {
  100% {
    left: 100%;
  }
}

@keyframes breathe {
  50% {
    width: 150%;
    height: 150%;
  }
}

@keyframes top-bottom {
  50% {
    transform: translateY(-15px);
  }
}

/*# sourceMappingURL=style.css.map */

.logo img,
.navbar-brand img,
.footer-logo-area a img {
  max-width: 180px;
  width: 100%;
}

.footer-logo-area a img {
  filter: brightness(100);
}


/* Additional CSS */


.service-card-3 .service-card-img-3 img {
  height: 300px;
  object-fit: cover;
  object-position: center;
}

/*.service-card-3 .service-card-text-3 {*/
/*  min-height: 250px;*/
/*}*/





/* Make nav-item relative for dropdown positioning */
.nav-item {
  position: relative;
  list-style: none;
}

/* Style for the nav-link to accommodate the down arrow */
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* Down arrow styling (pure CSS triangle) */
.nav-link .dropdown-arrow {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 4px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
  vertical-align: middle;
}

/* Rotate arrow when hovering on nav-item */
.nav-item:hover .nav-link .dropdown-arrow {
  transform: rotate(180deg);
}

/* Mega dropdown container */
.dropdown.absolute {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.75rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.03);
  padding: 1.5rem;
  width: 720px;
  max-width: 90vw;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  z-index: 1000;
  border: 1px solid #e2e8f0;
}

/* Show dropdown on hover */
.nav-item:hover .dropdown.absolute {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Arrow pointer on top of dropdown */
.dropdown.absolute::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 30px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  transform: rotate(45deg);
  border-left: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
}

/* ================================================
           GRID SYSTEM - Perfect alignment for brand boxes
           ================================================ */

/* Convert table to CSS Grid for better control */
.brands-table {
  width: 100%;
  display: block;
}

.brands-table tbody {
  display: block;
}

/* Each row becomes a grid row */
.brands-table tr {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.brands-table tr:last-child {
  margin-bottom: 0;
}

/* Each cell - BORDERED BOXES with perfect alignment */
.brands-table td {
  display: block;
  padding: 0;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #ffffff;
  transition: all 0.2s ease;
  overflow: hidden;
}

/* Hover effect on each brand box */
.brands-table td:hover {
  border-color: #94a3b8;
  background: #f8fafc;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* Link styling inside bordered boxes - full box clickable */
.brands-table a.font-normal {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 8px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #1e293b;
  text-decoration: none;
  width: 100%;
  text-align: center;
  transition: color 0.15s ease;
  background: transparent;
  min-height: 44px;
}

.brands-table a.font-normal:hover {
  color: #3b82f6;
}

/* Hide the empty cell (last one with empty anchor) */
.brands-table td:has(a:empty),
.brands-table td a.font-normal:empty {
  display: none;
}

/* Remove empty column from grid */
.brands-table tr:last-child td:last-child {
  display: none;
}

/* Adjust last row grid to maintain alignment when last cell hidden */
.brands-table tr:last-child {
  grid-template-columns: repeat(5, 1fr);
}

.brands-table tr:last-child td:last-child {
  display: none;
}

/* Better approach: target the specific empty cell */
.brands-table td:has(a:empty) {
  display: none;
}

/* Responsive - tablet view */
@media (max-width: 780px) {
  .dropdown.absolute {
    width: 550px;
    padding: 1.25rem;
  }

  .brands-table tr {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .brands-table tr:last-child {
    grid-template-columns: repeat(4, 1fr);
  }

  .brands-table a.font-normal {
    padding: 8px 6px;
    font-size: 0.8rem;
  }
}

/* Responsive - mobile view */
@media (max-width: 600px) {
  .dropdown.absolute {
    width: 360px;
    left: -20px;
    padding: 1rem;
  }

  .dropdown.absolute::before {
    left: 40px;
  }

  .brands-table tr {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .brands-table tr:last-child {
    grid-template-columns: repeat(3, 1fr);
  }

  .brands-table a.font-normal {
    padding: 8px 5px;
    font-size: 0.75rem;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .dropdown.absolute {
    width: 300px;
    left: -30px;
  }

  .brands-table tr {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .brands-table tr:last-child {
    grid-template-columns: repeat(2, 1fr);
  }
}

.brands-table a {
  margin: 0 !important;
}

.counter-banner {
  justify-content: space-between;
}

.brands-section-title {
  max-width: 1150px;
}


:root {
  --card-width: 180px;
  /* Ek card ki width */
  --animation-speed: 25s;
}

.logo-slider {
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
  background: transparent;
  /* Slider background transparent */
  position: relative;
  display: flex;
  align-items: center;
}

.logo-slide-track {
  display: flex;
  /* Track ki width: card width + margin * total cards */
  width: calc((var(--card-width) + 40px) * 16);
  animation: scroll var(--animation-speed) linear infinite;
}

/* Har ek Brand Card ka Style */
.brand-card-container {
  width: var(--card-width);
  margin: 0 20px;
  /* Cards ke darmiyan gap */
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.white-card {
  background: white;
  width: 100%;
  height: 140px;
  /* Card ki height */
  border-radius: 20px;
  /* Round corners */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  /* Halki shadow */
  transition: transform 0.3s ease;
}

.white-card img {
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
}

.brand-name {
  margin-top: 15px;
  font-weight: 700;
  font-size: 16px;
  color: #333;
  text-align: center;
}

/* Hover Effect */
.brand-card-container:hover .white-card {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc((var(--card-width) + 40px) * -8));
  }
}

/* Responsive (Mobile ke liye) */
@media (max-width: 768px) {
  :root {
    --card-width: 130px;
  }

  .white-card {
    height: 100px;
    border-radius: 15px;
  }

  .brand-name {
    font-size: 13px;
  }
}

.warranty {
  color: var(--secondary-color);
  margin: 0;
}

.features-card-img img {
  max-height: 320px;
  height: 100%;
  object-fit: cover;
  width: 100%;
}


@media screen and (max-width: 768px) {
  .mobile_none {
    display: none;
  }

  .logo img {
    max-width: 140px;
  }

  .navbar-area {
    padding: 10px 0;
  }
}


/* Large laptop */
@media (max-width: 1199px) {
  .dropdown.absolute {
    width: 650px;
  }
}

/* Tablet */
@media (max-width: 991px) {
  .dropdown.absolute {
    width: 560px;
    padding: 1.25rem;
    left: 0;
    right: auto;
  }

  .brands-table td {
    padding: 10px 8px;
    font-size: 14px;
  }
}

/* Small tablet */
@media (max-width: 767px) {
  .dropdown.absolute {
    width: 95vw;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    padding: 1rem;
    border-radius: 16px;
  }

  .nav-item:hover .dropdown.absolute {
    transform: translateX(-50%) translateY(0);
    padding: 0;
  }

  .dropdown.absolute::before {
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }

  .mean-container .mean-nav ul li a {
    min-height: auto;
  }

  .brands-table,
  .brands-table tbody,
  .brands-table tr {
    display: block;
    width: 100%;
  }

  .brands-table tr {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 10px;
  }

  .brands-table td {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: none;
    border-radius: 12px;
    text-align: center;
  }

  .brands-table tr {
    gap: 0 !important;
  }
}

/* Mobile */
@media (max-width: 575px) {
  .dropdown.absolute {
    width: calc(100vw - 20px);
    padding: 0.875rem;
  }

  .brands-table tr {
    grid-template-columns: 1fr;
  }

  .brands-table td {
    font-size: 14px;
    padding: 10px;
  }
}


/* Privacy First. Security Always */


.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 100px;
}

.title-area h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin-bottom: 10px;
  color: #000000;

}

.title-area p {
  color: #666666;
  max-width: 600px;
  margin: 0 auto 60px auto;
}

/* Grid Layout */
.roadmap-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  position: relative;
}

/* Floating Image in Middle (Hidden on Small Screens) */
.center-illustration {
  grid-column: 1 / -1;
  margin: 40px 0;
  display: flex;
  justify-content: center;
  position: relative;
}

.center-illustration img {
  max-width: 300px;
  filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.3));
  animation: pulse 3s infinite ease-in-out;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Interactive Cards */
.step-box {
  background: #fff;
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
  overflow: hidden;
  box-shadow: rgba(114, 114, 114, 0.1) 0px 0px 8px;
}

.step-box:hover {
  transform: translateY(-10px);
  border-color: var(--mainColor);
  color: white;
  background: #663091;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 5rem;
  font-weight: 900;
  color: #0000001A;
  transition: color 0.3s;
}

.step-box:hover .step-number {
  color: rgba(56, 189, 248, 0.1);
}

.step-box:hover p {
  color: #ffffff;
  transition: color 0.3s ease;
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: var(--mainColor);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 10px 15px -3px var(--mainColor);
}

.step-box p {
  line-height: 1.6;
  font-size: 1rem;
  text-align: left;
  margin: 0;
  color: #666666;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .roadmap-container {
    grid-template-columns: 1fr;
  }

  .title-area h1 {
    font-size: 1.8rem;
  }

  .center-illustration img {
    max-width: 200px;
  }

  .title-area p {
    max-width: 90%;
  }

  .title-area {
    padding-top: 40px;
  }

  .roadmap-container {
    max-width: 90%;
    justify-self: center;
  }
}



/* List aur row styling */
.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Rows ke beech ka gap */
}

.checkbox-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

/* Browser ke default checkbox ko hide karna */
.checkbox-item input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Custom Checkbox (Unchecked State) */
.custom-checkbox {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #a6a6a6;
  /* Grey border - exactly like image */
  border-radius: 5px;
  /* Mote rounded corners */
  margin-right: 10px;
  /* Text ke darmiyan gap */
  position: relative;
  transition: all 0.2s ease-in-out;
  background-color: #fff;
}

/* Text Styling */
.label-text {
  font-size: 16px;
  color: #a6a6a6;
  /* Grey text color by default */
  font-weight: 600;
}

/* --- Jab Checkbox Select (Check) ho Jaye --- */

/* Pure box ka color change */
.checkbox-item input:checked~.custom-checkbox {
  background-color: #F15927;
  /* Aapka Orange color */
  border-color: #F15927;
}

/* Text ka color change (Optional, image mein All blue hai, but generally match karta hai) */
.checkbox-item input:checked~.label-text {
  color: #F15927;
}

/* White Tick Mark (Image mein check state mein White tick hai) */
.custom-checkbox:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  /* Tick ki thickness */
  transform: rotate(45deg);
}

/* Jab check ho, tick mark show ho */
.checkbox-item input:checked~.custom-checkbox:after {
  display: block;
}



.main-wrapper {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Sliding Pill Styles */
.filter-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.sliding-pill {
    background: #eeeeee;
    padding: 5px;
    border-radius: 100px;
    display: flex;
    position: relative;
    width: fit-content;
}

.filter-btn {
    border: none;
    background: transparent;
    padding: 12px 35px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.4s ease;
    color: var(--secondary-text);
}

.filter-btn.active {
    color: white;
}

.pill-bg {
    position: absolute;
    height: calc(100% - 10px);
    width: 150px; /* Iska size JS se handle hoga */
    background: var(--dark-text);
    border-radius: 100px;
    left: 5px;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 1;
}

/* List Style Grid */
.smart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
}

.product-item {
    background: #fff;
    display: flex;
    align-items: center;
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    transform: translateX(5px);
}

.name { flex-grow: 1; font-weight: 500; color: var(--dark-text); }
.arrow { color: #ccc; transition: 0.3s; }
.product-item:hover .arrow { color: var(--primary-blue); transform: translateX(5px); }













.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
  margin-top: 70px;
}

.section-divider {
  border: 0;
  height: 1px;
  background: #e5e5e5;
  margin: 60px 0;
}

/* Repair Grid - ye.PNG style */
.repair-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 30px;
}

.repair-visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.repair-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}

.repair-card img {
  width: 70px;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 5px 10px rgba(61, 61, 255, 0.1));
}

.repair-card p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text-main);
  max-width: 180px;
}

.see-more-btn {
  margin-top: 60px;
  position: relative;
  display: inline-block;
  color: var(--whiteColor);
  background-color: var(--mainColor);
  font-size: 15px;
  font-weight: 400;
  font-family: var(--fontFamily2);
  overflow: hidden;
  padding: 13px 35px;
  transition: 0.5s ease-in-out;
  border-width: 1px;
  border-style: solid;
  border-color: rgba(252, 84, 4, 0.314);
  border-image: initial;
}

.see-more-btn:hover {

  color: var(--whiteColor);
  border-radius: 25px;
  border-color: var(--blackColor);
  background-color: var(--secondary-color);
}

.icon{
  height: 70px;
  width: 70px;
}


/* Tabs Container */
.custom-orange-tabs {
    background: #fdfdfd; 
    padding: 6px;
    border-radius: 50px;
    display: inline-flex;
    border: 1px solid #eeeeee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Link Base Style */
.custom-orange-tabs .nav-link {
    border-radius: 50px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    color: #555 !important; /* Normal text color */
    border: none !important;
    transition: all 0.3s ease;
    background: transparent;
}

/* ACTIVE LINK BACKGROUND (#F15927) */
.custom-orange-tabs .nav-link.active {
    background-color: #F15927 !important; /* Aapka Manga hua color */
    color: #ffffff !important; /* Text white for contrast */
    box-shadow: 0 6px 15px rgba(241, 89, 39, 0.3); /* Subtle orange glow */
}

/* Hover Effect for Non-Active Links */
.custom-orange-tabs .nav-link:hover:not(.active) {
    color: #F15927 !important;
    background-color: rgba(241, 89, 39, 0.05);
}

/* Responsive adjustment for Mobile */
@media (max-width: 576px) {
    .custom-orange-tabs {
        width: 100%;
        flex-direction: column;
        border-radius: 20px;
    }
    .custom-orange-tabs .nav-link {
        width: 100%;
        text-align: center;
    }
}


.stepper-container {
    width: 95%; /* Zyada space di hai steps ke liye */
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
}

.label-box {
    min-width: 80px; /* Text ko overlap hone se bachane ke liye */
}

.title {
    font-size: 11px; /* Steps zyada hain to font thoda chota rakha hai */
    text-transform: uppercase;
}

.value {
    font-size: 10px;
    white-space: nowrap;
}




 /* Language Dropdown Core */
.lang-dropdown {
    position: relative;
    cursor: pointer;
    list-style: none;
    display: inline-block;
}

.lang-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8f9fa;
    border-radius: 6px;
    font-weight: 500;
}

.lang-list {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 8px;
    /* Yeh line sabse important hai */
    display: none !important; 
    width: 140px;
    z-index: 9999;
    padding: 5px 0;
    margin-top: 5px;
    list-style: none;
}

/* Jab JS class add karega tabhi dikhega */
.lang-list.show {
    display: block !important;
}

.lang-list li {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    color: #333;
}

.lang-list li:hover { background: #f0f2ff; color: #3b44ff;margin-left: 0; }

.arrow-down {
    border: solid #333;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
}














/* Checkout  Styles Start */

/* Progress Bar*/
:root {
    --primary: #663091;
    --active-color: #F15729;
    --gray-light: #e9ecef;
}

.progress-container {
    width: 95%;
    max-width: 1100px;
    background: white;
    padding: 60px 20px 30px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 20px auto;
    overflow: hidden;
}

.steps-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
}

/* Background Line */
.steps-list::before {
    content: "";
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gray-light);
    transform: translateY(-50%);
    z-index: 1;
}

.step-item {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 0;
    text-align: center;
}

.step-info { margin-bottom: 20px; width: 100%; }

.step-name {
    display: block;
    font-size: 10px;
    font-weight: 800;
    color: #adb5bd;
    text-transform: uppercase;
}

.step-selection {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #2d3436;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    opacity: 0.6;
}

.icon-box {
    width: 32px;
    height: 32px;
    background: white;
    border: 3px solid var(--gray-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}



/* States */
.step-item.active .icon-box { border-color: var(--active-color); transform: scale(1.2); }
.step-item.active .step-name { color: var(--active-color); }
.step-item.active .step-selection { opacity: 1; }

.step-item.done .icon-box { background: var(--primary); border-color: transparent; }
.step-item.done .step-name { color: #333; }
.step-item.done .check-icon::before { content: "✓"; color: white; font-weight: bold; }


/* CONTENT */
.content-container { max-width: 900px; margin: 0 auto; text-align: center; }
 .img-hide { display: none; } 
.img-hide.active { display: block; animation: fadeIn 0.4s ease; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }


/* REPAIR CARDS (IMAGE 2 STYLE) */
.repair-card { cursor: pointer; }
.repair-card input { display: none; }
.card-inner { background: #fff; border-radius: 20px; padding: 20px; position: relative; border: 2px solid transparent; box-shadow: 0 4px 15px rgba(0,0,0,0.05); transition: 0.3s; }
.check-dot { position: absolute; top: 15px; left: 15px; width: 20px; height: 20px; border: 2px solid #ddd; border-radius: 50%; }
.repair-card input:checked + .card-inner { border-color: #F15927; }
.repair-card input:checked + .card-inner .check-dot { background: #F15927; border-color: #F15927; }
.repair-card input:checked + .card-inner .check-dot::after { content: '✓'; color: white; font-size: 12px; display: block; margin-top: -2px; }

.card {display: flex; align-items: center; background: #fff; padding: 25px; border-radius: 15px; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transition: 0.3s; border: 1px solid transparent; }
.card:hover { border-color: #F15927; transform: translateY(-3px); }

.price { font-size: 18px; font-weight: bold; margin: 10px 0 0 0; }
.vat { font-size: 10px; color: #999; margin: 0; }
.next-btn { margin-top: 30px; padding: 15px 60px; background: #F15927; color: #fff; border: none; border-radius: 30px; cursor: pointer; font-weight: bold; }




/* Section 2 ke grid ko control karne ke liye */
.device-grid {
    display: flex;
    justify-content: center; /* Cards ko center karne ke liye */
    gap: 20px;
    margin-top: 40px;
}

.device-grid .card {
    width: 180px; /* Aap is value ko kam ya zyada kar sakte hain */
    flex: none;    /* Card ko khichne se rokne ke liye */
}

/* Mobile par cards sahi dikhen */
@media (max-width: 480px) {
    .device-grid {
        flex-direction: column;
        align-items: center;
    }
}


/* Pehle se majood .card class mein transition add karein */
.card {
    border: 2px solid transparent; /* Default border */
    transition: all 0.3s ease;
}

/* Jab card select ho jaye */
.card.selected {
    border-color: #F15927 !important; /* Blue border */
    background-color: #f0f2ff;       /* Light blue background (optional) */
    box-shadow: 0 4px 15px rgba(59, 68, 255, 0.2);
}


/* Models Grid Styling */
.models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Ek line mein 4 pills */
    gap: 20px;
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
    margin-top: 40px!important;
}

.model-pill {
    background: #fff;
    padding: 20px 10px;
    border-radius: 50px; /* Fully Rounded like your image */
    font-size: 14px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Hover effect */
.model-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Selection Border Effect */
.model-pill.selected {
    border-color: #F15927 !important;
    background-color: #f0f2ff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr); /* Mobile par ek line mein 2 */
    }
}



/* Section 1: Brand Grid */

.section-title{
    margin-top: 40px
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 100px)); /* Mazeed narrow */
    gap: 25px;
    justify-content: center;
    margin: 0 auto;
    max-width: 900px;
    margin-top: 40px;
}

/* Section 2: Device (Special Narrow) */
.device-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Section 3: Models (Pills) */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 160px));
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Section 4: Repair Grid (Compact Cards) */
.repair-grid {
    display: grid;
    /* Card ki width ab 170px se 190px ke beech rahegi */
    grid-template-columns: repeat(auto-fit, minmax(170px, 190px)); 
    gap: 15px;
    justify-content: center;
    margin: 40px auto 30px auto;
    max-width: 950px;
}
/* REPAIR CARDS (Image 2) */
.repair-card-checkbox input { display: none; }
.card-inner { background: #fff; border-radius: 20px; padding: 35px 20px; position: relative; border: 2px solid transparent; box-shadow: 0 5px 15px rgba(0,0,0,0.04); cursor: pointer; transition: 0.3s; height: 92%; display: flex; flex-direction: column; align-items: center; }

.check-circle { position: absolute; top: 15px; left: 15px; width: 22px; height: 22px; border: 2px solid #ddd; border-radius: 50%; background: #fff; }

.repair-card-checkbox input:checked + .card-inner { border-color: #F15927; box-shadow: 0 10px 25px rgba(59, 68, 255, 0.1); }
.repair-card-checkbox input:checked + .card-inner .check-circle { background: #F15927; border-color: #F15927; }
.repair-card-checkbox input:checked + .card-inner .check-circle::after { content: '✓'; color: white; font-size: 13px; display: block; margin-top: -1px; }

.icon { font-size: 45px; margin-bottom: 20px; }
/* .name { font-weight: 500; font-size: 14px; margin: 0 0 15px 0; min-height: 40px; } */
.price { font-size: 18px; font-weight: bold; margin: 0; }
.vat { font-size: 11px; color: #999; margin: 5px 0 0 0; }

.card { background: #fff; border-radius: 20px; padding: 25px; cursor: pointer; border: 2px solid transparent; box-shadow: 0 5px 15px rgba(0,0,0,0.04); transition: 0.3s; }
.card:hover, .card.selected { border-color: #F15927; transform: translateY(-5px); }

.continue-btn { margin-top: 40px; padding: 18px 80px; background: #F15927; color: #fff; border: none; border-radius: 50px; font-weight: bold; cursor: pointer; font-size: 16px; }




@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }


.continue-btn:disabled {
    background-color: #ccc;
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.5;
}











/* 1. Default Style (Gray) */
.svg-icon svg {
    stroke: #8e8e93 !important; /* Shuru mein gray */
    fill: none !important;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
}

/* 2. Hover Effect (Orange) */
.repair-card-checkbox:hover .svg-icon svg,
.card:hover .svg-icon svg {
    stroke: #F15927 !important; /* Bright Orange */
    transform: scale(1.1);
    fill: #F15927 !important;
}

/* 3. Selection Effect (Jab Click ho jaye) */
/* Brand/Device Cards ke liye */
.card.selected .svg-icon svg {
    stroke: #FF8C00 !important;

}

/* Repair Checkbox Cards ke liye */
.repair-card-checkbox input:checked + .card-inner .svg-icon svg {
    stroke: #F15927!important;
    /* Agar aap icon ke andar halka rang bharna chahte hain */
    
    fill: #F15927 !important;

}

/* Border bhi orange kar dete hain selection par */
.card.selected, 
.repair-card-checkbox input:checked + .card-inner {
    border-color: #F15927 !important;
}

/* Check circle ka color bhi orange */
.repair-card-checkbox input:checked + .card-inner .check-circle {
    background: #F15927 !important;
    border-color: #F15927 !important;
}




/* Card ka default SVG color */
.software-icon {
    color: #979797; /* Gray default */
    transition: all 0.3s ease;
}

/* 1. Hover par Orange */
.card:hover .software-icon,
.repair-card-checkbox:hover .software-icon {
    color: #F15927 !important; /* Forcefully orange */
    fill: #F15927 !important;
}

/* 2. Select hone par Orange */
.card.selected .software-icon,
.repair-card-checkbox input:checked + .card-inner .software-icon {
    color: #F15927 !important;
    
}






/* Container and Layout */
.repair-service-wrapper {
    font-family: 'Inter', sans-serif;
    padding: 40px 15px;
    background-color: #f8f9fa;
}

.service-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Location Toggle Design */
.location-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.loc-btn {
    padding: 12px 24px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #555;
}

.loc-btn.active {
    background: #F15927;
    color: white;
    border-color: #F15927;
    box-shadow: 0 4px 15px rgba(59, 68, 255, 0.3);
}

/* Options Grid Design */
.service-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.service-opt {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.service-opt:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-opt.active {
    border-color: #F15927;
    background: #f0f1ff;
}

.opt-icon { font-size: 32px; margin-bottom: 15px; }
.service-opt p { font-size: 14px; color: #444; line-height: 1.4; margin: 0; }

/* Sub-headings */
.sub-heading {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    color: #222;
    margin-bottom: 30px;
}

/* Address Items */
.address-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.addr-item {
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid #eee;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

/* Price Cards Grid */
.price-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.price-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}


.blue { color: #F15927; font-weight: bold; }

.bubble {
    font-size: 24px;
    font-weight: 800;
    margin: 20px 0;
    color: #222;
}

.bubble.highlight { color: #F15927; }

/* Buttons */
.select-btn {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: none;
    background: #f0f0f0;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
}

.price-card.featured .select-btn {
    background: #F15927;
    color: white;
}

/* Rest of Spain Big Card */
.big-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-inner-header { font-weight: 700; margin-bottom: 20px; text-align: center; }

.card-body-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.bubble-price {
    background: #222;
    color: #fff;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
}

.select-btn-blue {
    width: 100%;
    background: #F15927;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .address-row, .price-cards-grid {
        grid-template-columns: 1fr;
    }
    .sub-heading { font-size: 18px; }
}

.divider { border: none; border-top: 1px solid #ddd; margin: 40px 0; }





/* Default hide Section 5 */
#section-5 {
    display: none !important;
}

/* Show only when active class is added by Stepper */
#section-5.active {
    display: block !important;
}

/* Helper class for JS filtering */
.hidden-service-opt {
    display: none !important;
}









/* Container Fixes */
.booking-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap; /* Important for responsiveness */
}

.calendar-box, .time-slots-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    flex: 1; /* Both boxes grow equally */
    min-width: 320px; /* Prevents them from getting too skinny */
    box-sizing: border-box;
}

/* Calendar Navigation */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#month-display {
    font-size: 1.2rem;
    font-weight: 700;
    color: #F15927;
}

.nav-btn {
    background: #f0f2ff;
    color: #F15927;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.nav-btn:hover {
    background: #F15927;
    color: #fff;
}

/* Fix the "Jumping" Table */
.calendar-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 5px;
    table-layout: fixed; /* Ensures equal cell widths */
}

.calendar-table td {
    height: 45px;
    text-align: center;
    cursor: pointer;
    border-radius: 8px;
    font-size: 14px;
    border: 2px solid transparent; /* STABILITY FIX: Always has a border width */
    transition: all 0.2s;
}

.calendar-table td.date-cell:hover {
    background: #f0f2ff;
}

.calendar-table td.selected {
    background: #F15927 !important;
    color: #fff !important;
    border-color: #F15927; /* Just change the color, not the layout */
}

/* Time Slots Grid */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

/* Time Slots Polished Design */
.slot {
    padding: 12px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    transition: all 0.3s ease; /* Smooth transition for hover */
}

/* Hover Effect */
.slot:hover {
    border-color: #F15927;
    background-color: #f8f9ff;
    color: #F15927;
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 4px 8px rgba(59, 68, 255, 0.1);
}

/* Selected State */
.slot.selected {
    background: #F15927 !important;
    color: #ffffff !important;
    border-color: #F15927;
    box-shadow: 0 4px 10px rgba(59, 68, 255, 0.3);
}

/* Next Button Styling */
.next-btn {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Enabled State */
.next-btn.active-blue {
    background: #F15927;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 68, 255, 0.3);
}

/* Disabled State */
.next-btn.disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    pointer-events: none; /* User cannot click */
    box-shadow: none;
}
/* Mobile Adjustments */
@media (max-width: 768px) {
    .booking-container {
        flex-direction: column;
        padding: 10px;
    }
    .calendar-box, .time-slots-box {
        width: 100%;
    }
}





/* --- Section 8 Layout --- */
.final-step {
    display: flex;
    flex-wrap: wrap; 
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Left Form Box */
.personal-form-box {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
}

.form-title { 
    font-size: 26px; 
    margin-bottom: 30px; 
    text-align: center; 
    font-weight: 600; 
}

.input-groups input {
    width: 100%;
    padding: 16px 25px;
    margin-bottom: 18px;
    border: 1px solid #eee;
    border-radius: 50px;
    background: #fcfcfc;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
    transition: 0.3s;
}

.input-groups input:focus { 
    border-color: #F15927; 
    box-shadow: 0 4px 12px rgba(59,68,255,0.1); 
}

.phone-input {
    display: flex;
    background: #fcfcfc;
    border: 1px solid #eee;
    border-radius: 50px;
    align-items: center;
    padding: 0 20px;

    box-sizing: border-box;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 15px;
    border-right: 1px solid #eee;
}

.phone-input input { border: none !important; margin-bottom: 0 !important; }

.confirm-btn {
    width: 100%;
    padding: 16px;
    background: #F15927;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.3s;
}

.confirm-btn.disabled {
    background: #F15927;
    cursor: not-allowed;
}

.error-msg {
    color: #ff4d4d;
    font-size: 14px;
    margin-top: 15px;
    font-weight: 500;
    text-align: center;
}

/* --- Wide Order Summary Card --- */
.order-summary-card {
    flex: 1.3; /* Width barha di gayi hai */
    min-width: 340px;
    max-width: 600px;
    background: #fff;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    box-sizing: border-box;
}

.total-amount-label { color: #888; text-align: center; margin-bottom: 5px; font-size: 14px; }
.grand-total-display { 
    color: #F15927; 
    text-align: center; 
    font-size: 48px; 
    font-weight: 800; 
    margin-bottom: 30px; 
}

.summary-heading { color: #F15927; font-size: 20px; margin-bottom: 25px; font-weight: 700; }

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    align-items: flex-start;
}

.summary-line span { font-weight: 600; min-width: 100px; color: #555; }

.price-info { 
    display: flex; 
    justify-content: space-between; 
    flex: 1; 
    padding-left: 30px; 
}

.line-price { font-weight: 700; }

.summary-divider { border: 0; border-top: 1px solid #f0f0f0; margin: 25px 0; }

.total-row { display: flex; justify-content: space-between; align-items: center; }
.final-total-box { display: flex; justify-content: space-between; width: 100%; align-items: center; }
.total-price-group { text-align: right; }
.total-price-group h2 { color: #F15927; font-size: 28px; margin: 0; font-weight: 800; }

/* --- Responsive Fixes --- */
@media (max-width: 850px) {
    .final-step { flex-direction: column; align-items: center; }
    .order-summary-card { order: -1; width: 100%; max-width: 100%; }
    .personal-form-box { width: 100%; max-width: 100%; }
}

@media (max-width: 480px) {
    .summary-line { flex-direction: row; gap: 5px; }
    .price-info { padding-left: 0; width: 100%; }
    .grand-total-display { font-size: 36px; }
}







/* Container Layout */
.final-step {
    display: flex;
    flex-wrap: wrap; /* Isse mobile par auto niche aa jayega */
    gap: 30px;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column */
.personal-form-box {
    flex: 1;
    min-width: 320px;
    max-width: 650px;
}

/* Data Preview Card */
.user-data-preview {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    position: relative;
    margin-bottom: 30px;
}

.edit-btn-small {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 4px 10px;
    font-size: 12px;
    background: #f0f2ff;
    color: #F15927;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.data-label { font-size: 11px; color: #aaa; text-transform: uppercase; font-weight: bold; }
.data-value { font-size: 15px; font-weight: 600; margin: 2px 0; }

/* Payment Box */
.payment-info-container {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
}

.payment-main-title { font-size: 18px; margin-bottom: 20px; color: #333; }

.payment-radio-wrapper { display: flex; gap: 15px; }
.payment-radio-wrapper input[type="radio"] { width: 20px; height: 20px; accent-color: #F15927; cursor: pointer; }

.pay-header { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 5px; }
.card-logos { display: flex; gap: 5px; }
.card-logos img { height: 18px; }

.pay-description { font-size: 13px; color: #777; margin: 0; line-height: 1.4; }
.payment-sep { border: 0; border-top: 1px solid #f5f5f5; margin: 15px 0; }


.grand-total-display { font-size: 42px; color: #F15927; text-align: center; margin: 10px 0 25px; font-weight: 800; }
.total-amount-label { text-align: center; color: #888; font-size: 14px; }

/* Summary Details */
.summary-line { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 14px; }
.summary-line span { color: #666; }
.summary-divider { border: 0; border-top: 1px solid #eee; margin: 20px 0; }
.final-total-box { display: flex; justify-content: space-between; align-items: center; }
#final-total-9 { color: #F15927; font-size: 26px; font-weight: 800; margin: 0; }

/* Responsive Adjustments */
@media (max-width: 850px) {
    .final-step { flex-direction: column; align-items: center; }
    .order-summary-card { 
        order: -1; /* Mobile par summary pehle dikhegi */
        width: 100%;
        max-width: 100%;
        position: relative;
        top: 0;
    }
    .personal-form-box { width: 100%; }
}

@media (max-width: 480px) {
    .user-data-preview { grid-template-columns: 1fr; }
    .grand-total-display { font-size: 32px; }
}





/* --- SECTION 9 MAIN WRAPPER --- */
.final-step-wrapper {
    display: flex;
    flex-direction: row;
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    align-items: flex-start;
}

/* --- LEFT COLUMN (Form & Payment) --- */
.left-side-container {
    flex: 1.6;
    text-align: left; /* Sab kuch left align */
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
    text-align: left;
}

/* Your Data Preview Card */
.user-data-preview-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #eee;
    /*display: grid;*/
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 35px;
    position: relative;
}

.preview-item {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.preview-item span {
    color: #aaa;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.preview-item strong {
    font-size: 15px;
    color: #333;
}

.edit-link {
    position: absolute;
    top: 15px;
    right: 20px;
    background: #f0f2ff;
    color: #F15927;
    border: none;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}

/* --- PAYMENT BOX --- */
.payment-card-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 20px;
    padding: 10px 25px;
    text-align: left;
}

.pay-row-item {
    padding: 20px 0;
    text-align: left;
}

.radio-label-group {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.radio-label-group input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: #F15927;
    margin-top: 2px;
}

.radio-label-group label {
    cursor: pointer;
    text-align: left;
}

.radio-label-group label strong {
    font-size: 16px;
    display: block;
    margin-bottom: 5px;
}

.card-logos-flex {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

/* Pillow Inputs (Rounded) */
.pillow-input {
    width: 100%;
    padding: 16px 25px;
    border-radius: 50px; /* Pillow Shape */
    border: 1.5px solid #f0f0f0;
    margin-top: 15px;
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.pillow-input:focus {
    border-color: #F15927;
}

.autofill-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-20%);
    background: #000;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
}

.remember-info {
    border: 1.5px solid #000;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    font-size: 13px;
    margin-top: 20px;
    line-height: 1.4;
}

.line-sep {
    border: 0;
    border-top: 1px solid #eee;
    margin: 0;
}

/* --- RIGHT COLUMN (Order Summary) --- */
.right-summary-side {
    flex: 1;
    min-width: 320px;
}

.summary-sticky-card {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: sticky;
    top: 20px;
    text-align: left;
}

.sum-line {
    display: flex;
    justify-content: Normal;
    margin-bottom: 12px;
    gap:7px;
}

.sum-line span { color: #888; font-size: 14px; }
.sum-line strong { font-size: 14px; color: #333; }

/* Confirm Button */
.confirm-btn {
    width: 100%;
    padding: 18px;
    background: #F15927;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    margin-top: 25px;
    cursor: pointer;
    transition: 0.3s;
}

.confirm-btn:disabled {
    background: #ddd;
    cursor: not-allowed;
    opacity: 0.6;
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 992px) {
    .final-step-wrapper {
        flex-direction: column;
    }
    .left-side-container, .right-summary-side {
        width: 100%;
        min-width: unset;
    }
    .right-summary-side {
        order: -1; /* Summary mobile par sabse upar dikhegi */
        margin-bottom: 20px;
    }
    .summary-sticky-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .user-data-preview-card {
        grid-template-columns: 1fr; /* Mobile par stack data */
        padding-top: 50px;
    }
    .edit-link {
        top: 15px;
        right: auto;
        left: 20px;
    }
}







/* Section 10 Success Step */
.success-step {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    text-align: center;
    padding: 40px 20px;
}

.success-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    max-width: 500px;
    width: 100%;
    border: 1px solid #f0f0f0;
}

/* Success Checkmark Animation */
.success-circle {
    width: 80px;
    height: 80px;
    background: #00ff88; /* Green success color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0, 255, 136, 0.2);
}

.checkmark {
    color: white;
    font-size: 40px;
    font-weight: bold;
}

.success-title {
    font-size: 26px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.success-msg {
    color: #777;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.booking-number-box {
    background: #f8f9ff;
    padding: 15px;
    border-radius: 15px;
    border: 1px dashed #F15927;
    margin-bottom: 30px;
}

.booking-number-box span {
    display: block;
    font-size: 13px;
    color: #666;
    margin-bottom: 5px;
}

.booking-number-box strong {
    font-size: 20px;
    color: #F15927;
    letter-spacing: 1px;
}

.done-btn {
    width: 100%;
    padding: 18px;
    background: #F15927;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.done-btn:hover {
    background: #F15927;
    transform: translateY(-2px);
}





/* --- 1. GLOBAL & STEPPER WRAPPER --- */
.stepper-wrapper {
    width: 100%;
    padding: 0 0 130px; /* Labels ke liye kaafi jagah */
    background: transparent; 
    overflow: hidden; /* Scroll khatam */
    position: relative;
}

/* Checkout Styles End */



  /*================================================
  Checkout Page Rsponsive CSS
  =================================================*/

  /* Responsive Adjustments */
@media (max-width: 900px) {
    .step-selection { display: none; } /* Choti screen par selection hide */
    .step-name { font-size: 9px; }
}

@media (max-width: 991px) {
    .stepper-wrapper,
    .progress-container {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 15px 10px;
    }

    .steps-list {
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        min-width: max-content;
        padding: 0 20px !important;
        position: relative;
    }

    .steps-list::before {
        width: 100% !important;
        height: 4px !important;
        left: 0 !important;
        top: 62px !important;
        transform: none !important;
    }

    .step-item {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 115px !important;
        min-width: 115px !important;
        gap: 12px !important;
    }

    .step-info {
        text-align: center !important;
        margin-bottom: 0 !important;
        min-height: 38px;
    }

    .step-name {
        font-size: 10px !important;
        display: block;
    }

    .step-selection {
        display: block !important;
        font-size: 10px !important;
        max-width: 95px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .icon-box {
        width: 36px !important;
        height: 36px !important;
        flex: 0 0 36px;
    }

    .step-item.step-hidden-mobile {
        display: none !important;
    }
}

.svg-device-icon{
    width: 140px;
    height: 200px;
}


.rr-lang-dropdown {
    position: relative;
}

.rr-lang-selected {
    border: 0;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font: inherit;
    color: inherit;
    padding: 8px 10px;
}

.rr-lang-list {
  display: none !important;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 130px;
    background: #fff;
    list-style: none;
    margin: 8px 0 0;
    padding: 6px 0;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
    display: none;
    z-index: 99999;
}

.rr-lang-dropdown.is-open .rr-lang-list {
    display: block !important;
}

.rr-lang-list li {
    padding: 9px 14px;
    cursor: pointer;
    color: #111;
    font-size: 14px;
}

.rr-lang-list li:hover {
    background: #f4f4f4;
}

.arrow-down {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
}

/* DESKTOP */
.brand-repair-menu {
    position: relative;
}

.brand-repair-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 16px 35px rgba(0,0,0,.14);
    z-index: 99999;
}

.brand-repair-menu:hover .brand-repair-dropdown {
    display: block;
}

.brand-repair-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
}

.brand-repair-grid a {
    min-height: 46px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 14px;
    background: #fff;
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    text-decoration: none;
}

/* MOBILE FIX */
@media (max-width: 991px) {
    .brand-repair-menu {
        width: 100% !important;
        position: relative !important;
    }

    .brand-repair-dropdown {
        display: none !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding: 0 0px 12px !important;
        margin: 0 !important;
        box-shadow: none !important;
        background: #fff !important;
        overflow: hidden !important;
    }

    .brand-repair-menu:hover .brand-repair-dropdown {
        display: none !important;
    }

    .brand-repair-menu.is-open .brand-repair-dropdown {
        display: block !important;
    }

    .brand-repair-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        margin-top: 8px;
        border: 1px solid #e8e8e8;
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
    }

    .brand-repair-grid a {
        min-height: 42px;
        justify-content: flex-start;
        padding: 11px 13px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .brand-repair-grid {
        grid-template-columns: 1fr;
    }

    .brand-repair-grid a {
        border-right: 0 !important;
    }
}
li.rr-lang-dropdown {
    position: relative;
    list-style: none;
}

/* Premium dark button */
.rr-lang-selected {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 16px;
    min-height: 40px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;

    background: #fff;
    color: #000;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: .35px;
    line-height: 1;

   
    transition: transform .22s ease, box-shadow .22s ease, background .22s ease;
}


.rr-lang-selected:hover {
    transform: translateY(-1px);
    box-shadow:
        0 14px 32px rgba(15, 23, 42, .28),
        inset 0 1px 0 rgba(255, 255, 255, .18);
}

.rr-lang-selected:active {
    transform: translateY(0);
}

.rr-lang-selected .arrow-down {
    width: 7px;
    height: 7px;

    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform .22s ease;
}

.rr-lang-dropdown.is-open .arrow-down {
    transform: rotate(-135deg);
    margin-top: 2px;
}
.rr-lang-selected{
    border-radius:0;
    border:1px solid #f3f3f3;
}
/* Dropdown */
.rr-lang-list {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 35px;
    margin: 0;
    padding: 7px;
    list-style: none;

    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, .08);
  
    box-shadow:
        0 18px 45px rgba(15, 23, 42, .18),
        0 4px 12px rgba(15, 23, 42, .08);

    display: none;
    z-index: 99999;
}

.rr-lang-dropdown.is-open .rr-lang-list {
    display: block;
}

.rr-lang-list li {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 12px;
    border-radius: 11px;

    color: #111827;
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}



.rr-lang-list li:hover {
    background: #f3f4f6;
    color: #f97316;
    transform: translateX(2px);
}

.rr-lang-list li:hover::before {
    background: #f97316;
}

/* Mobile */
@media (max-width: 991px) {
    .rr-lang-selected {
        padding: 8px 14px;
        min-height: 38px;
        font-size: 12.5px;
    }

    .rr-lang-list {
        left: 0;
        right: auto;
        min-width: 40px;
    }
}
.repair-banner {
    width: 100%;
    overflow: hidden;
}

.repair-banner img {
    width: 100%;
    height: auto;
    display: block;
}
/* Parent section fix */
.repair-area .row {
    align-items: stretch;
}

/* Right column (image wala) */
.repair-area .row > div:last-child {
    display: flex;
}

/* Banner wrapper */
.repair-banner {
    width: 100%;
    height: 100%;
    min-height: 620px; /* adjust if needed */
    overflow: hidden;
}

/* Image fix */
.repair-banner img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover; /* IMPORTANT */
    object-position: center;
    display: block;
}
@media (max-width: 991px) {
    .repair-banner {
        min-height: auto;
        height: auto;
    }

    .repair-banner img {
        height: auto;
        min-height: auto;
        object-fit: contain;
    }
}
 .custom-video-modal {
        position: fixed;
        inset: 0;
        z-index: 99999;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .custom-video-modal.show {
        display: flex;
    }

    .custom-video-box {
        position: relative;
        width: 100%;
        max-width: 900px;
        background: #000;
        border-radius: 14px;
        overflow: hidden;
    }

    .custom-video-box video {
        width: 100%;
        height: auto;
        display: block;
    }

    .custom-video-close {
        position: absolute;
        top: -45px;
        right: 0;
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 50%;
        background: #fff;
        color: #000;
        font-size: 28px;
        line-height: 38px;
        cursor: pointer;
        z-index: 2;
    }
    .pd-description {
    margin-top: 40px;
}

.custom-video-modal {
    display: none;
}

.custom-video-modal.show {
    display: flex;
}

.repair-banner-video-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.repair-banner-video-modal.repair-video-active {
    display: flex !important;
}

.repair-banner-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.repair-banner-video-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 850px;
    background: transparent !important;
    box-shadow: none !important;
}

.repair-banner-video-player {
    width: 100%;
    max-height: 80vh;
    display: block;
    background: #000;
    border-radius: 8px;
}

.repair-banner-video-close {
    position: absolute;
    top: -42px;
    right: 0;
    background: transparent;
    color: #ffffff;
    border: none;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
}

body.repair-video-no-scroll {
    overflow: hidden;
}

@media (max-width: 575px) {
    .repair-banner-video-box {
        max-width: 100%;
    }

    .repair-banner-video-close {
        top: -45px;
        right: 0;
    }
}

.extras-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.extras-next-btn,
.extras-skip-btn {
    min-width: 150px;
    height: 48px;
    border-radius: 50px;
    border: none;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}

.extras-next-btn {
    background: #F15927;
    color: #fff;
}

.extras-next-btn.disabled,
.extras-next-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.extras-skip-btn {
    background: #f4f4f4;
    color: #222;
}
