@charset "UTF-8";

/*----------------------------------------------------------------------
	CSS INDEX
	----------------------

    ## Default Style
    ## Common Classes
    ## Repeat Style
    ## Padding Margin Spacing
    ## Custom Animation
    ## Header style
    ## Page Banner
    ## Hero Section
    ## About Section
    ## Services Area
    ## Skills Area
    ## Resume Area
    ## Contact Area
    ## Projects Area
    ## Testimonials Area
    ## Pricing Area
    ## Client Logo
    ## Blog Area
    ## Error Section
    ## FAQs Area
    ## Sidebar Widgets
    ## Main Footer */
/* -------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Inter:wght@400;500&display=swap");
/*******************************************************/
/******************* ## Default Style *****************/
/*******************************************************/
* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none; }

body {
  color: var(--base-color);
  background: #131313;
  font-weight: 400;
  line-height: 30px;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  --base-color: rgba(255, 255, 255, 0.65);
  --heading-color: #FFFFFF;
  --primary-color: #3dc8b8;
  --lighter-color: #1F1F1F;
  --black-color: #070707;
  --border-color: rgba(255, 255, 255, 0.1); }

a {
  color: var(--base-color);
  cursor: pointer;
  outline: none;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-decoration: none; }
  a:hover, a:focus, a:visited {
    text-decoration: none;
    outline: none; }
  a:hover {
    color: var(--primary-color); }

.highlight{
  color: #3dc8b8;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: var(--heading-color); }

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white h1 a,
.text-white h2 a,
.text-white h3 a,
.text-white h4 a,
.text-white h5 a,
.text-white h6 a {
  color: white; }

ul, li {
  list-style: none;
  padding: 0;
  margin: 0; }

img {
  max-width: 100%;
  display: inline-block; }

mark {
  color: var(--primary-color);
  background: transparent;
  text-decoration: underline; }

header:after, section:after, footer:after {
  display: block;
  clear: both;
  content: ""; }

/*======= Input Styles =======*/
input,
select,
textarea,
.nice-select,
.form-control {
  width: 100%;
  height: auto;
  border: none;
  font-size: 20px;
  border-radius: 0;
  padding: 20px 0;
  background-color: #fff;
  border-bottom: 2px solid rgba(41, 41, 41, 0.1); }
  input::-webkit-input-placeholder,
  select::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  .nice-select::-webkit-input-placeholder,
  .form-control::-webkit-input-placeholder {
    color: var(--heading-color); }
  input:-ms-input-placeholder,
  select:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  .nice-select:-ms-input-placeholder,
  .form-control:-ms-input-placeholder {
    color: var(--heading-color); }
  input::-ms-input-placeholder,
  select::-ms-input-placeholder,
  textarea::-ms-input-placeholder,
  .nice-select::-ms-input-placeholder,
  .form-control::-ms-input-placeholder {
    color: var(--heading-color); }
  input::placeholder,
  select::placeholder,
  textarea::placeholder,
  .nice-select::placeholder,
  .form-control::placeholder {
    color: var(--heading-color); }
  input:focus,
  select:focus,
  textarea:focus,
  .nice-select:focus,
  .form-control:focus {
    border-bottom: 2px solid rgba(41, 41, 41, 0.1); }

.nice-select {
  font-size: 20px;
  line-height: 1.3; }
  .nice-select:after {
    width: 8px;
    height: 8px;
    right: 8px;
    border-color: var(--heading-color); }
  .nice-select .current {
    font-weight: 500;
    color: var(--heading-color); }
  .nice-select .list {
    min-width: 100%;
    border-radius: 0; }

textarea {
  display: inherit;
  padding-top: 20px; }

label {
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 5px;
  color: var(--base-color); }

.form-group {
  position: relative;
  margin-bottom: 15px; }

input:focus,
button:focus,
.form-control:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #cfdbf1; }

input[type=search]::-ms-clear {
  display: none;
  width: 0;
  height: 0; }

input[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0; }

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none; }

input[type=checkbox], input[type=radio] {
  height: auto;
  width: auto; }

/* For Scroll Animation */
html {
  scroll-behavior: unset !important; }

/*******************************************************/
/*****************  ## Common Classes *****************/
/*******************************************************/
.page-wrapper {
  position: relative;
  z-index: 9;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  min-width: 300px; }

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1320px;
    padding-left: 15px;
    padding-right: 15px; }
    .container.container-1620 {
      max-width: 1650px; } }

@media only screen and (min-width: 1400px) {
  .container-fluid {
    padding-left: 70px;
    padding-right: 70px; } }

@media only screen and (min-width: 1400px) {
  .container-fluid.gap-wide {
    padding-left: 100px;
    padding-right: 100px; } }

.row {
  --bs-gutter-x: 30px; }

@media only screen and (min-width: 1200px) {
  .row-cols-xl-7 > * {
    width: 14.2857%;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto; } }

.no-gap {
  margin-left: 0;
  margin-right: 0; }
  .no-gap > div {
    padding-left: 0;
    padding-right: 0; }

@media only screen and (min-width: 1400px) {
  .gap-10 {
    --bs-gutter-x: 10px; } }

@media only screen and (min-width: 1400px) {
  .gap-20 {
    --bs-gutter-x: 20px; } }

@media only screen and (min-width: 1400px) {
  .gap-30 {
    --bs-gutter-x: 30px; } }

@media only screen and (min-width: 1400px) {
  .gap-40 {
    --bs-gutter-x: 40px; } }

@media only screen and (min-width: 1400px) {
  .gap-50 {
    --bs-gutter-x: 50px; } }

@media only screen and (min-width: 1400px) {
  .gap-60 {
    --bs-gutter-x: 60px; } }

@media only screen and (min-width: 1400px) {
  .gap-70 {
    --bs-gutter-x: 70px; } }

@media only screen and (min-width: 1400px) {
  .gap-80 {
    --bs-gutter-x: 80px; } }

@media only screen and (min-width: 1400px) {
  .gap-90 {
    --bs-gutter-x: 90px; } }

@media only screen and (min-width: 1400px) {
  .gap-100 {
    --bs-gutter-x: 100px; } }

@media only screen and (min-width: 1400px) {
  .gap-110 {
    --bs-gutter-x: 110px; } }

@media only screen and (min-width: 1400px) {
  .gap-120 {
    --bs-gutter-x: 120px; } }

@media only screen and (min-width: 1400px) {
  .gap-130 {
    --bs-gutter-x: 130px; } }

@media only screen and (min-width: 1400px) {
  .gap-140 {
    --bs-gutter-x: 140px; } }

@media only screen and (min-width: 1400px) {
  .gap-150 {
    --bs-gutter-x: 150px; } }

@media only screen and (max-width: 375px) {
  .col-small {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; } }

/** Section Title style **/
.section-title {
  margin-top: -7px; }
  .section-title .sub-title {
    font-weight: 500;
    display: block;
    color: rgba(255, 255, 255, 0.65); }
  .section-title h2 {
    margin-bottom: 25px; }
    .section-title h2 span {
      color: var(--primary-color); }
    @media only screen and (max-width: 767px) {
      .section-title h2 {
        font-size: 35px; } }
    @media only screen and (max-width: 479px) {
      .section-title h2 {
        font-size: 30px;
        line-height: 1.3; } }
  .section-title h6 {
    font-size: 18px; }
    .section-title h6 span {
      color: var(--primary-color); }

/** Button style **/
.theme-btn,
a.theme-btn {
  z-index: 1;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  font-weight: 600;
  text-align: center;
  padding: 10px 35px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  color: var(--black-color);
  border-radius: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-transform: capitalize;
  background: var(--primary-color); }
  .theme-btn i,
  a.theme-btn i {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin-left: 10px; }
  .theme-btn:hover i,
  a.theme-btn:hover i {
    margin-left: 13px;
    margin-right: -3px; }
  @media only screen and (max-width: 575px) {
    .theme-btn,
    a.theme-btn {
      padding: 8px 25px; } }
  .theme-btn.style-two,
  a.theme-btn.style-two {
    color: var(--base-color);
    background: transparent;
    border: 1px solid rgba(41, 41, 41, 0.1); }
    .theme-btn.style-two:hover,
    a.theme-btn.style-two:hover {
      color: white;
      background: var(--primary-color);
      border-color: var(--primary-color); }
  .theme-btn.style-three,
  a.theme-btn.style-three {
    background: var(--heading-color); }

/* Details Btn */
.details-btn {
  width: 50px;
  height: 50px;
  background: #131313;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border: 1px solid var(--border-color); }
  .details-btn:hover {
    color: var(--black-color);
    background: var(--primary-color); }

/* Read More */
.read-more {
  color: white;
  font-size: 14px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-transform: capitalize; }
  .read-more i {
    float: right;
    margin-top: 2px;
    margin-left: 7px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s; }
  .read-more:hover {
    color: var(--primary-color); }
    .read-more:hover i {
      margin-left: 10px; }

/* List style one */
.list-style-one li {
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media only screen and (min-width: 376px) {
    .list-style-one li {
      font-size: 20px; } }
  .list-style-one li:before {
    content: "\f00c";
    line-height: 1;
    margin-top: 2px;
    margin-right: 12px;
    color: var(--primary-color);
    font-family: "Font Awesome 5 Pro"; }
  .list-style-one li:not(:last-child) {
    margin-bottom: 20px; }

.list-style-one.two-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .list-style-one.two-column li {
    width: 48%; }
    @media only screen and (max-width: 479px) {
      .list-style-one.two-column li {
        width: 100%; } }

/* List style two */
.list-style-two li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  @media only screen and (min-width: 376px) {
    .list-style-two li {
      font-size: 20px; } }
  .list-style-two li:before {
    content: "\f00c";
    line-height: 1;
    font-size: 16px;
    margin-right: 20px;
    color: var(--lighter-color);
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    line-height: 30px;
    border-radius: 50%;
    text-align: center;
    font-family: "Font Awesome 5 Pro"; }
  .list-style-two li:not(:last-child) {
    margin-bottom: 25px; }

/** Social Link One **/
.social-style-one {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: -5px;
  margin-right: -5px; }
  .social-style-one a {
    color: #B0AFAF;
    font-size: 14px;
    margin-left: 5px;
    margin-right: 5px;
    width: 35px;
    height: 35px;
    background: #0C0B0B;
    line-height: 35px;
    border-radius: 50%;
    text-align: center; }
    .social-style-one a:hover {
      color: var(--black-color);
      background: var(--primary-color); }

/** Social Link Two **/
.social-style-two {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: -12px;
  margin-right: -12px; }
  .social-style-two a {
    color: rgba(255, 255, 255, 0.35);
    margin-left: 12px;
    margin-right: 12px; }
    .social-style-two a:hover {
      color: var(--primary-color); }

/*** Preloader style ** */
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  background-color: #131313;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url(../images/preloader.gif); }

/* Pagination */
.pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px; }
  .pagination li {
    margin: 10px 15px 0; }
    .pagination li a,
    .pagination li .page-link {
      padding: 0;
      border: none;
      font-size: 24px;
      -webkit-box-shadow: none;
      box-shadow: none;
      font-weight: 600;
      color: var(--base-color);
      background: transparent; }
    .pagination li.active .page-link, .pagination li:hover:not(.disabled) .page-link {
      background: transparent;
      color: var(--primary-color); }

/* Rating */
.ratting {
  line-height: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: -5px;
  margin-right: -5px; }
  .ratting i {
    margin: 5px;
    color: #AB6034; }

/*** Slick Arrows ***/
.slick-arrow {
  width: 50px;
  height: 50px;
  color: white;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  line-height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--border-color); }
  .slick-arrow:focus, .slick-arrow:hover {
    color: var(--black-color);
    background: var(--primary-color);
    border-color: var(--primary-color); }

.slider-arrows button:first-child {
  margin-right: 5px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.slider-arrows button:last-child {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

/*** Slick Dots ***/
.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }
  .slick-dots li {
    position: relative;
    cursor: pointer;
    margin: 8px;
    width: 6px;
    height: 6px;
    opacity: 0.3;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    border-radius: 50%;
    background: #1D1B1A; }
    .slick-dots li button {
      opacity: 0;
      height: 0; }
    .slick-dots li:before {
      content: '';
      width: 0;
      height: 0;
      left: 50%;
      top: 50%;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      border-radius: 50%;
      position: absolute;
      border: 1px solid var(--primary-color);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
    .slick-dots li.slick-active {
      background: var(--primary-color);
      opacity: 1; }
      .slick-dots li.slick-active:before {
        width: 21px;
        height: 21px; }

/* Before After none */
.before-after-none:after, .before-after-none:before {
  display: none; }

/*** Scroll Top style ***/
.scroll-top {
  position: fixed;
  bottom: 25px;
  right: 0;
  width: 40px;
  height: 40px;
  z-index: 99;
  color: white;
  display: none;
  font-size: 14px;
  cursor: pointer;
  line-height: 40px;
  border-radius: 5px;
  background: var(--primary-color);
  -webkit-animation: pulse 2s infinite;
  animation: pulse 2s infinite; }

/* Text White */
.text-white *, .text-white a,
.text-white .count-text,
.text-white .footer-newsletter-content .sub-title {
  color: white; }

.text-white li li .dropdown-btn span {
  color: var(--heading-color); }

.text-white .copyright-area p {
  opacity: 0.5; }

.text-white .copyright-area a {
  opacity: 0.5; }
  .text-white .copyright-area a:hover {
    opacity: 1; }

/*Project Filter*/
.filter-btns-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px; }
  .filter-btns-one li {
    line-height: 1;
    cursor: pointer;
    font-size: 18px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    font-weight: 500;
    position: relative;
    margin: 0 20px 20px;
    padding-bottom: 15px;
    color: rgba(255, 255, 255, 0.35); }
    .filter-btns-one li:after {
      opacity: 0;
      content: '';
      position: absolute;
      left: 0;
      top: 100%;
      width: 30px;
      height: 3px;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      background: var(--primary-color); }
    .filter-btns-one li.current {
      color: var(--primary-color); }
      .filter-btns-one li.current:after {
        opacity: 1; }

.bg-lines span {
  top: 0;
  z-index: -1;
  width: 1px;
  height: 100%;
  position: absolute;
  -webkit-animation: leftRightOne 18s infinite;
  animation: leftRightOne 18s infinite;
  background: rgba(255, 255, 255, 0.05); }
  .bg-lines span:nth-child(1) {
    left: 10%; }
  .bg-lines span:nth-child(2) {
    left: 20%; }
  .bg-lines span:nth-child(3) {
    left: 30%; }
  .bg-lines span:nth-child(4) {
    left: 40%; }
  .bg-lines span:nth-child(5) {
    left: 50%; }
  .bg-lines span:nth-child(6) {
    left: 60%; }
  .bg-lines span:nth-child(7) {
    left: 70%; }
  .bg-lines span:nth-child(8) {
    left: 80%; }
  .bg-lines span:nth-child(9) {
    left: 90%; }

/* Position */
.rel {
  position: relative; }

.z-0 {
  z-index: 0; }

.z-1 {
  z-index: 1; }

.z-2 {
  z-index: 2; }

.z-3 {
  z-index: 3; }

.z-4 {
  z-index: 4; }

.z-5 {
  z-index: 5; }

.overlay {
  z-index: 1;
  position: relative; }
  .overlay::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.75;
    background-color: var(--heading-color); }

/* Backgruond Size */
.bgs-cover {
  background-size: cover;
  background-position: center; }

/* Color + Background */
.bgc-black {
  background-color: var(--black-color); }

.bgc-primary {
  background-color: var(--primary-color); }

.bgc-lighter {
  background-color: var(--lighter-color); }

.for-bgc-black {
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
  background: var(--black-color); }

/* Border Radius */
.br-5 {
  border-radius: 5px; }

.br-10 {
  border-radius: 10px; }

.br-15 {
  border-radius: 15px; }

.br-20 {
  border-radius: 20px; }

.br-25 {
  border-radius: 25px; }

.br-30 {
  border-radius: 30px; }

/*******************************************************/
/******************* ## Repeat Style ******************/
/*******************************************************/
.heading,
input,
select,
textarea,
.nice-select,
.form-control,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.accordion-item .accordion-button {
  color: var(--heading-color);
  font-family: "DM Sans", sans-serif; }

h1, .h1 {
  font-size: 65px; }

h2, .h2 {
  font-size: 45px; }

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

h4, .h4 {
  line-height: 1.1;
  font-size: 24px; }

h5, .h5 {
  line-height: 1.4;
  font-size: 20px; }

h6, .h6 {
  font-size: 16px; }

/*******************************************************/
/************** ## Padding Margin Spacing *************/
/*******************************************************/
/* Padding Around */
.p-5 {
  padding: 5px !important; }

.p-10 {
  padding: 10px; }

.p-15 {
  padding: 15px; }

.p-20 {
  padding: 20px; }

.p-25 {
  padding: 25px; }

.p-30 {
  padding: 30px; }

.p-35 {
  padding: 35px; }

.p-40 {
  padding: 40px; }

.p-45 {
  padding: 45px; }

.p-50 {
  padding: 50px; }

.p-55 {
  padding: 55px; }

.p-60 {
  padding: 60px; }

.p-65 {
  padding: 65px; }

.p-70 {
  padding: 70px; }

.p-75 {
  padding: 75px; }

.p-80 {
  padding: 80px; }

.p-85 {
  padding: 85px; }

.p-90 {
  padding: 90px; }

.p-95 {
  padding: 95px; }

.p-100 {
  padding: 100px; }

.p-105 {
  padding: 105px; }

.p-110 {
  padding: 110px; }

.p-115 {
  padding: 115px; }

.p-120 {
  padding: 120px; }

.p-125 {
  padding: 125px; }

.p-130 {
  padding: 130px; }

.p-135 {
  padding: 135px; }

.p-140 {
  padding: 140px; }

.p-145 {
  padding: 145px; }

.p-150 {
  padding: 150px; }

.p-155 {
  padding: 155px; }

.p-160 {
  padding: 160px; }

.p-165 {
  padding: 165px; }

.p-170 {
  padding: 170px; }

.p-175 {
  padding: 175px; }

.p-180 {
  padding: 180px; }

.p-185 {
  padding: 185px; }

.p-190 {
  padding: 190px; }

.p-195 {
  padding: 195px; }

.p-200 {
  padding: 200px; }

.p-205 {
  padding: 205px; }

.p-210 {
  padding: 210px; }

.p-215 {
  padding: 215px; }

.p-220 {
  padding: 220px; }

.p-225 {
  padding: 225px; }

.p-230 {
  padding: 230px; }

.p-235 {
  padding: 235px; }

.p-240 {
  padding: 240px; }

.p-245 {
  padding: 245px; }

.p-250 {
  padding: 250px; }

/* Padding Top */
.pt-5,
.py-5 {
  padding-top: 5px !important; }

.pt-10,
.py-10 {
  padding-top: 10px; }

.pt-15,
.py-15 {
  padding-top: 15px; }

.pt-20,
.py-20 {
  padding-top: 20px; }

.pt-25,
.py-25 {
  padding-top: 25px; }

.pt-30,
.py-30 {
  padding-top: 30px; }

.pt-35,
.py-35 {
  padding-top: 35px; }

.pt-40,
.py-40 {
  padding-top: 40px; }

.pt-45,
.py-45 {
  padding-top: 45px; }

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

.pt-55,
.py-55 {
  padding-top: 55px; }

.pt-60,
.py-60 {
  padding-top: 60px; }

.pt-65,
.py-65 {
  padding-top: 65px; }

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

.pt-75,
.py-75 {
  padding-top: 75px; }

.pt-80,
.py-80 {
  padding-top: 80px; }

.pt-85,
.py-85 {
  padding-top: 85px; }

.pt-90,
.py-90 {
  padding-top: 90px; }

.pt-95,
.py-95 {
  padding-top: 95px; }

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

.pt-105,
.py-105 {
  padding-top: 105px; }

.pt-110,
.py-110 {
  padding-top: 110px; }

.pt-115,
.py-115 {
  padding-top: 115px; }

.pt-120,
.py-120 {
  padding-top: 120px; }

.pt-125,
.py-125 {
  padding-top: 125px; }

.pt-130,
.py-130 {
  padding-top: 130px; }

.pt-135,
.py-135 {
  padding-top: 135px; }

.pt-140,
.py-140 {
  padding-top: 140px; }

.pt-145,
.py-145 {
  padding-top: 145px; }

.pt-150,
.py-150 {
  padding-top: 150px; }

.pt-155,
.py-155 {
  padding-top: 155px; }

.pt-160,
.py-160 {
  padding-top: 160px; }

.pt-165,
.py-165 {
  padding-top: 165px; }

.pt-170,
.py-170 {
  padding-top: 170px; }

.pt-175,
.py-175 {
  padding-top: 175px; }

.pt-180,
.py-180 {
  padding-top: 180px; }

.pt-185,
.py-185 {
  padding-top: 185px; }

.pt-190,
.py-190 {
  padding-top: 190px; }

.pt-195,
.py-195 {
  padding-top: 195px; }

.pt-200,
.py-200 {
  padding-top: 200px; }

.pt-205,
.py-205 {
  padding-top: 205px; }

.pt-210,
.py-210 {
  padding-top: 210px; }

.pt-215,
.py-215 {
  padding-top: 215px; }

.pt-220,
.py-220 {
  padding-top: 220px; }

.pt-225,
.py-225 {
  padding-top: 225px; }

.pt-230,
.py-230 {
  padding-top: 230px; }

.pt-235,
.py-235 {
  padding-top: 235px; }

.pt-240,
.py-240 {
  padding-top: 240px; }

.pt-245,
.py-245 {
  padding-top: 245px; }

.pt-250,
.py-250 {
  padding-top: 250px; }

/* Padding Bottom */
.pb-5,
.py-5 {
  padding-bottom: 5px !important; }

.pb-10,
.py-10 {
  padding-bottom: 10px; }

.pb-15,
.py-15 {
  padding-bottom: 15px; }

.pb-20,
.py-20 {
  padding-bottom: 20px; }

.pb-25,
.py-25 {
  padding-bottom: 25px; }

.pb-30,
.py-30 {
  padding-bottom: 30px; }

.pb-35,
.py-35 {
  padding-bottom: 35px; }

.pb-40,
.py-40 {
  padding-bottom: 40px; }

.pb-45,
.py-45 {
  padding-bottom: 45px; }

.pb-50,
.py-50 {
  padding-bottom: 50px; }

.pb-55,
.py-55 {
  padding-bottom: 55px; }

.pb-60,
.py-60 {
  padding-bottom: 60px; }

.pb-65,
.py-65 {
  padding-bottom: 65px; }

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

.pb-75,
.py-75 {
  padding-bottom: 75px; }

.pb-80,
.py-80 {
  padding-bottom: 80px; }

.pb-85,
.py-85 {
  padding-bottom: 85px; }

.pb-90,
.py-90 {
  padding-bottom: 90px; }

.pb-95,
.py-95 {
  padding-bottom: 95px; }

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

.pb-105,
.py-105 {
  padding-bottom: 105px; }

.pb-110,
.py-110 {
  padding-bottom: 110px; }

.pb-115,
.py-115 {
  padding-bottom: 115px; }

.pb-120,
.py-120 {
  padding-bottom: 120px; }

.pb-125,
.py-125 {
  padding-bottom: 125px; }

.pb-130,
.py-130 {
  padding-bottom: 130px; }

.pb-135,
.py-135 {
  padding-bottom: 135px; }

.pb-140,
.py-140 {
  padding-bottom: 140px; }

.pb-145,
.py-145 {
  padding-bottom: 145px; }

.pb-150,
.py-150 {
  padding-bottom: 150px; }

.pb-155,
.py-155 {
  padding-bottom: 155px; }

.pb-160,
.py-160 {
  padding-bottom: 160px; }

.pb-165,
.py-165 {
  padding-bottom: 165px; }

.pb-170,
.py-170 {
  padding-bottom: 170px; }

.pb-175,
.py-175 {
  padding-bottom: 175px; }

.pb-180,
.py-180 {
  padding-bottom: 180px; }

.pb-185,
.py-185 {
  padding-bottom: 185px; }

.pb-190,
.py-190 {
  padding-bottom: 190px; }

.pb-195,
.py-195 {
  padding-bottom: 195px; }

.pb-200,
.py-200 {
  padding-bottom: 200px; }

.pb-205,
.py-205 {
  padding-bottom: 205px; }

.pb-210,
.py-210 {
  padding-bottom: 210px; }

.pb-215,
.py-215 {
  padding-bottom: 215px; }

.pb-220,
.py-220 {
  padding-bottom: 220px; }

.pb-225,
.py-225 {
  padding-bottom: 225px; }

.pb-230,
.py-230 {
  padding-bottom: 230px; }

.pb-235,
.py-235 {
  padding-bottom: 235px; }

.pb-240,
.py-240 {
  padding-bottom: 240px; }

.pb-245,
.py-245 {
  padding-bottom: 245px; }

.pb-250,
.py-250 {
  padding-bottom: 250px; }

/* Margin Around */
.m-5 {
  margin: 5px !important; }

.m-10 {
  margin: 10px; }

.m-15 {
  margin: 15px; }

.m-20 {
  margin: 20px; }

.m-25 {
  margin: 25px; }

.m-30 {
  margin: 30px; }

.m-35 {
  margin: 35px; }

.m-40 {
  margin: 40px; }

.m-45 {
  margin: 45px; }

.m-50 {
  margin: 50px; }

.m-55 {
  margin: 55px; }

.m-60 {
  margin: 60px; }

.m-65 {
  margin: 65px; }

.m-70 {
  margin: 70px; }

.m-75 {
  margin: 75px; }

.m-80 {
  margin: 80px; }

.m-85 {
  margin: 85px; }

.m-90 {
  margin: 90px; }

.m-95 {
  margin: 95px; }

.m-100 {
  margin: 100px; }

.m-105 {
  margin: 105px; }

.m-110 {
  margin: 110px; }

.m-115 {
  margin: 115px; }

.m-120 {
  margin: 120px; }

.m-125 {
  margin: 125px; }

.m-130 {
  margin: 130px; }

.m-135 {
  margin: 135px; }

.m-140 {
  margin: 140px; }

.m-145 {
  margin: 145px; }

.m-150 {
  margin: 150px; }

.m-155 {
  margin: 155px; }

.m-160 {
  margin: 160px; }

.m-165 {
  margin: 165px; }

.m-170 {
  margin: 170px; }

.m-175 {
  margin: 175px; }

.m-180 {
  margin: 180px; }

.m-185 {
  margin: 185px; }

.m-190 {
  margin: 190px; }

.m-195 {
  margin: 195px; }

.m-200 {
  margin: 200px; }

.m-205 {
  margin: 205px; }

.m-210 {
  margin: 210px; }

.m-215 {
  margin: 215px; }

.m-220 {
  margin: 220px; }

.m-225 {
  margin: 225px; }

.m-230 {
  margin: 230px; }

.m-235 {
  margin: 235px; }

.m-240 {
  margin: 240px; }

.m-245 {
  margin: 245px; }

.m-250 {
  margin: 250px; }

/* Margin Top */
.mt-5,
.my-5 {
  margin-top: 5px !important; }

.mt-10,
.my-10 {
  margin-top: 10px; }

.mt-15,
.my-15 {
  margin-top: 15px; }

.mt-20,
.my-20 {
  margin-top: 20px; }

.mt-25,
.my-25 {
  margin-top: 25px; }

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

.mt-35,
.my-35 {
  margin-top: 35px; }

.mt-40,
.my-40 {
  margin-top: 40px; }

.mt-45,
.my-45 {
  margin-top: 45px; }

.mt-50,
.my-50 {
  margin-top: 50px; }

.mt-55,
.my-55 {
  margin-top: 55px; }

.mt-60,
.my-60 {
  margin-top: 60px; }

.mt-65,
.my-65 {
  margin-top: 65px; }

.mt-70,
.my-70 {
  margin-top: 70px; }

.mt-75,
.my-75 {
  margin-top: 75px; }

.mt-80,
.my-80 {
  margin-top: 80px; }

.mt-85,
.my-85 {
  margin-top: 85px; }

.mt-90,
.my-90 {
  margin-top: 90px; }

.mt-95,
.my-95 {
  margin-top: 95px; }

.mt-100,
.my-100 {
  margin-top: 100px; }

.mt-105,
.my-105 {
  margin-top: 105px; }

.mt-110,
.my-110 {
  margin-top: 110px; }

.mt-115,
.my-115 {
  margin-top: 115px; }

.mt-120,
.my-120 {
  margin-top: 120px; }

.mt-125,
.my-125 {
  margin-top: 125px; }

.mt-130,
.my-130 {
  margin-top: 130px; }

.mt-135,
.my-135 {
  margin-top: 135px; }

.mt-140,
.my-140 {
  margin-top: 140px; }

.mt-145,
.my-145 {
  margin-top: 145px; }

.mt-150,
.my-150 {
  margin-top: 150px; }

.mt-155,
.my-155 {
  margin-top: 155px; }

.mt-160,
.my-160 {
  margin-top: 160px; }

.mt-165,
.my-165 {
  margin-top: 165px; }

.mt-170,
.my-170 {
  margin-top: 170px; }

.mt-175,
.my-175 {
  margin-top: 175px; }

.mt-180,
.my-180 {
  margin-top: 180px; }

.mt-185,
.my-185 {
  margin-top: 185px; }

.mt-190,
.my-190 {
  margin-top: 190px; }

.mt-195,
.my-195 {
  margin-top: 195px; }

.mt-200,
.my-200 {
  margin-top: 200px; }

.mt-205,
.my-205 {
  margin-top: 205px; }

.mt-210,
.my-210 {
  margin-top: 210px; }

.mt-215,
.my-215 {
  margin-top: 215px; }

.mt-220,
.my-220 {
  margin-top: 220px; }

.mt-225,
.my-225 {
  margin-top: 225px; }

.mt-230,
.my-230 {
  margin-top: 230px; }

.mt-235,
.my-235 {
  margin-top: 235px; }

.mt-240,
.my-240 {
  margin-top: 240px; }

.mt-245,
.my-245 {
  margin-top: 245px; }

.mt-250,
.my-250 {
  margin-top: 250px; }

/* Margin Bottom */
.mb-5,
.my-5 {
  margin-bottom: 5px !important; }

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

.mb-15,
.my-15 {
  margin-bottom: 15px; }

.mb-20,
.my-20 {
  margin-bottom: 20px; }

.mb-25,
.my-25 {
  margin-bottom: 25px; }

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

.mb-35,
.my-35 {
  margin-bottom: 35px; }

.mb-40,
.my-40 {
  margin-bottom: 40px; }

.mb-45,
.my-45 {
  margin-bottom: 45px; }

.mb-50,
.my-50 {
  margin-bottom: 50px; }

.mb-55,
.my-55 {
  margin-bottom: 55px; }

.mb-60,
.my-60 {
  margin-bottom: 60px; }

.mb-65,
.my-65 {
  margin-bottom: 65px; }

.mb-70,
.my-70 {
  margin-bottom: 70px; }

.mb-75,
.my-75 {
  margin-bottom: 75px; }

.mb-80,
.my-80 {
  margin-bottom: 80px; }

.mb-85,
.my-85 {
  margin-bottom: 85px; }

.mb-90,
.my-90 {
  margin-bottom: 90px; }

.mb-95,
.my-95 {
  margin-bottom: 95px; }

.mb-100,
.my-100 {
  margin-bottom: 100px; }

.mb-105,
.my-105 {
  margin-bottom: 105px; }

.mb-110,
.my-110 {
  margin-bottom: 110px; }

.mb-115,
.my-115 {
  margin-bottom: 115px; }

.mb-120,
.my-120 {
  margin-bottom: 120px; }

.mb-125,
.my-125 {
  margin-bottom: 125px; }

.mb-130,
.my-130 {
  margin-bottom: 130px; }

.mb-135,
.my-135 {
  margin-bottom: 135px; }

.mb-140,
.my-140 {
  margin-bottom: 140px; }

.mb-145,
.my-145 {
  margin-bottom: 145px; }

.mb-150,
.my-150 {
  margin-bottom: 150px; }

.mb-155,
.my-155 {
  margin-bottom: 155px; }

.mb-160,
.my-160 {
  margin-bottom: 160px; }

.mb-165,
.my-165 {
  margin-bottom: 165px; }

.mb-170,
.my-170 {
  margin-bottom: 170px; }

.mb-175,
.my-175 {
  margin-bottom: 175px; }

.mb-180,
.my-180 {
  margin-bottom: 180px; }

.mb-185,
.my-185 {
  margin-bottom: 185px; }

.mb-190,
.my-190 {
  margin-bottom: 190px; }

.mb-195,
.my-195 {
  margin-bottom: 195px; }

.mb-200,
.my-200 {
  margin-bottom: 200px; }

.mb-205,
.my-205 {
  margin-bottom: 205px; }

.mb-210,
.my-210 {
  margin-bottom: 210px; }

.mb-215,
.my-215 {
  margin-bottom: 215px; }

.mb-220,
.my-220 {
  margin-bottom: 220px; }

.mb-225,
.my-225 {
  margin-bottom: 225px; }

.mb-230,
.my-230 {
  margin-bottom: 230px; }

.mb-235,
.my-235 {
  margin-bottom: 235px; }

.mb-240,
.my-240 {
  margin-bottom: 240px; }

.mb-245,
.my-245 {
  margin-bottom: 245px; }

.mb-250,
.my-250 {
  margin-bottom: 250px; }

/* Responsive Padding Margin */
@media only screen and (max-width: 991px) {
  /* Padding Around */
  .rp-0 {
    padding: 0px !important; }
  .rp-5 {
    padding: 5px !important; }
  .rp-10 {
    padding: 10px; }
  .rp-15 {
    padding: 15px; }
  .rp-20 {
    padding: 20px; }
  .rp-25 {
    padding: 25px; }
  .rp-30 {
    padding: 30px; }
  .rp-35 {
    padding: 35px; }
  .rp-40 {
    padding: 40px; }
  .rp-45 {
    padding: 45px; }
  .rp-50 {
    padding: 50px; }
  .rp-55 {
    padding: 55px; }
  .rp-60 {
    padding: 60px; }
  .rp-65 {
    padding: 65px; }
  .rp-70 {
    padding: 70px; }
  .rp-75 {
    padding: 75px; }
  .rp-80 {
    padding: 80px; }
  .rp-85 {
    padding: 85px; }
  .rp-90 {
    padding: 90px; }
  .rp-95 {
    padding: 95px; }
  .rp-100 {
    padding: 100px; }
  .rp-105 {
    padding: 105px; }
  .rp-110 {
    padding: 110px; }
  .rp-115 {
    padding: 115px; }
  .rp-120 {
    padding: 120px; }
  .rp-125 {
    padding: 125px; }
  .rp-130 {
    padding: 130px; }
  .rp-135 {
    padding: 135px; }
  .rp-140 {
    padding: 140px; }
  .rp-145 {
    padding: 145px; }
  .rp-150 {
    padding: 150px; }
  /* Padding Top */
  .rpt-0,
  .rpy-0 {
    padding-top: 0px !important; }
  .rpt-5,
  .rpy-5 {
    padding-top: 5px !important; }
  .rpt-10,
  .rpy-10 {
    padding-top: 10px; }
  .rpt-15,
  .rpy-15 {
    padding-top: 15px; }
  .rpt-20,
  .rpy-20 {
    padding-top: 20px; }
  .rpt-25,
  .rpy-25 {
    padding-top: 25px; }
  .rpt-30,
  .rpy-30 {
    padding-top: 30px; }
  .rpt-35,
  .rpy-35 {
    padding-top: 35px; }
  .rpt-40,
  .rpy-40 {
    padding-top: 40px; }
  .rpt-45,
  .rpy-45 {
    padding-top: 45px; }
  .rpt-50,
  .rpy-50 {
    padding-top: 50px; }
  .rpt-55,
  .rpy-55 {
    padding-top: 55px; }
  .rpt-60,
  .rpy-60 {
    padding-top: 60px; }
  .rpt-65,
  .rpy-65 {
    padding-top: 65px; }
  .rpt-70,
  .rpy-70 {
    padding-top: 70px; }
  .rpt-75,
  .rpy-75 {
    padding-top: 75px; }
  .rpt-80,
  .rpy-80 {
    padding-top: 80px; }
  .rpt-85,
  .rpy-85 {
    padding-top: 85px; }
  .rpt-90,
  .rpy-90 {
    padding-top: 90px; }
  .rpt-95,
  .rpy-95 {
    padding-top: 95px; }
  .rpt-100,
  .rpy-100 {
    padding-top: 100px; }
  .rpt-105,
  .rpy-105 {
    padding-top: 105px; }
  .rpt-110,
  .rpy-110 {
    padding-top: 110px; }
  .rpt-115,
  .rpy-115 {
    padding-top: 115px; }
  .rpt-120,
  .rpy-120 {
    padding-top: 120px; }
  .rpt-125,
  .rpy-125 {
    padding-top: 125px; }
  .rpt-130,
  .rpy-130 {
    padding-top: 130px; }
  .rpt-135,
  .rpy-135 {
    padding-top: 135px; }
  .rpt-140,
  .rpy-140 {
    padding-top: 140px; }
  .rpt-145,
  .rpy-145 {
    padding-top: 145px; }
  .rpt-150,
  .rpy-150 {
    padding-top: 150px; }
  /* Padding Bottom */
  .rpb-0,
  .rpy-0 {
    padding-bottom: 0px !important; }
  .rpb-5,
  .rpy-5 {
    padding-bottom: 5px !important; }
  .rpb-10,
  .rpy-10 {
    padding-bottom: 10px; }
  .rpb-15,
  .rpy-15 {
    padding-bottom: 15px; }
  .rpb-20,
  .rpy-20 {
    padding-bottom: 20px; }
  .rpb-25,
  .rpy-25 {
    padding-bottom: 25px; }
  .rpb-30,
  .rpy-30 {
    padding-bottom: 30px; }
  .rpb-35,
  .rpy-35 {
    padding-bottom: 35px; }
  .rpb-40,
  .rpy-40 {
    padding-bottom: 40px; }
  .rpb-45,
  .rpy-45 {
    padding-bottom: 45px; }
  .rpb-50,
  .rpy-50 {
    padding-bottom: 50px; }
  .rpb-55,
  .rpy-55 {
    padding-bottom: 55px; }
  .rpb-60,
  .rpy-60 {
    padding-bottom: 60px; }
  .rpb-65,
  .rpy-65 {
    padding-bottom: 65px; }
  .rpb-70,
  .rpy-70 {
    padding-bottom: 70px; }
  .rpb-75,
  .rpy-75 {
    padding-bottom: 75px; }
  .rpb-80,
  .rpy-80 {
    padding-bottom: 80px; }
  .rpb-85,
  .rpy-85 {
    padding-bottom: 85px; }
  .rpb-90,
  .rpy-90 {
    padding-bottom: 90px; }
  .rpb-95,
  .rpy-95 {
    padding-bottom: 95px; }
  .rpb-100,
  .rpy-100 {
    padding-bottom: 100px; }
  .rpb-105,
  .rpy-105 {
    padding-bottom: 105px; }
  .rpb-110,
  .rpy-110 {
    padding-bottom: 110px; }
  .rpb-115,
  .rpy-115 {
    padding-bottom: 115px; }
  .rpb-120,
  .rpy-120 {
    padding-bottom: 120px; }
  .rpb-125,
  .rpy-125 {
    padding-bottom: 125px; }
  .rpb-130,
  .rpy-130 {
    padding-bottom: 130px; }
  .rpb-135,
  .rpy-135 {
    padding-bottom: 135px; }
  .rpb-140,
  .rpy-140 {
    padding-bottom: 140px; }
  .rpb-145,
  .rpy-145 {
    padding-bottom: 145px; }
  .rpb-150,
  .rpy-150 {
    padding-bottom: 150px; }
  /* Margin Around */
  .rm-0 {
    margin: 0px !important; }
  .rm-5 {
    margin: 5px !important; }
  .rm-10 {
    margin: 10px; }
  .rm-15 {
    margin: 15px; }
  .rm-20 {
    margin: 20px; }
  .rm-25 {
    margin: 25px; }
  .rm-30 {
    margin: 30px; }
  .rm-35 {
    margin: 35px; }
  .rm-40 {
    margin: 40px; }
  .rm-45 {
    margin: 45px; }
  .rm-50 {
    margin: 50px; }
  .rm-55 {
    margin: 55px; }
  .rm-60 {
    margin: 60px; }
  .rm-65 {
    margin: 65px; }
  .rm-70 {
    margin: 70px; }
  .rm-75 {
    margin: 75px; }
  .rm-80 {
    margin: 80px; }
  .rm-85 {
    margin: 85px; }
  .rm-90 {
    margin: 90px; }
  .rm-95 {
    margin: 95px; }
  .rm-100 {
    margin: 100px; }
  .rm-105 {
    margin: 105px; }
  .rm-110 {
    margin: 110px; }
  .rm-115 {
    margin: 115px; }
  .rm-120 {
    margin: 120px; }
  .rm-125 {
    margin: 125px; }
  .rm-130 {
    margin: 130px; }
  .rm-135 {
    margin: 135px; }
  .rm-140 {
    margin: 140px; }
  .rm-145 {
    margin: 145px; }
  .rm-150 {
    margin: 150px; }
  /* Margin Top */
  .rmt-0,
  .rmy-0 {
    margin-top: 0px !important; }
  .rmt-5,
  .rmy-5 {
    margin-top: 5px !important; }
  .rmt-10,
  .rmy-10 {
    margin-top: 10px; }
  .rmt-15,
  .rmy-15 {
    margin-top: 15px; }
  .rmt-20,
  .rmy-20 {
    margin-top: 20px; }
  .rmt-25,
  .rmy-25 {
    margin-top: 25px; }
  .rmt-30,
  .rmy-30 {
    margin-top: 30px; }
  .rmt-35,
  .rmy-35 {
    margin-top: 35px; }
  .rmt-40,
  .rmy-40 {
    margin-top: 40px; }
  .rmt-45,
  .rmy-45 {
    margin-top: 45px; }
  .rmt-50,
  .rmy-50 {
    margin-top: 50px; }
  .rmt-55,
  .rmy-55 {
    margin-top: 55px; }
  .rmt-60,
  .rmy-60 {
    margin-top: 60px; }
  .rmt-65,
  .rmy-65 {
    margin-top: 65px; }
  .rmt-70,
  .rmy-70 {
    margin-top: 70px; }
  .rmt-75,
  .rmy-75 {
    margin-top: 75px; }
  .rmt-80,
  .rmy-80 {
    margin-top: 80px; }
  .rmt-85,
  .rmy-85 {
    margin-top: 85px; }
  .rmt-90,
  .rmy-90 {
    margin-top: 90px; }
  .rmt-95,
  .rmy-95 {
    margin-top: 95px; }
  .rmt-100,
  .rmy-100 {
    margin-top: 100px; }
  .rmt-105,
  .rmy-105 {
    margin-top: 105px; }
  .rmt-110,
  .rmy-110 {
    margin-top: 110px; }
  .rmt-115,
  .rmy-115 {
    margin-top: 115px; }
  .rmt-120,
  .rmy-120 {
    margin-top: 120px; }
  .rmt-125,
  .rmy-125 {
    margin-top: 125px; }
  .rmt-130,
  .rmy-130 {
    margin-top: 130px; }
  .rmt-135,
  .rmy-135 {
    margin-top: 135px; }
  .rmt-140,
  .rmy-140 {
    margin-top: 140px; }
  .rmt-145,
  .rmy-145 {
    margin-top: 145px; }
  .rmt-150,
  .rmy-150 {
    margin-top: 150px; }
  /* Margin Bottom */
  .rmb-0,
  .rmy-0 {
    margin-bottom: 0px !important; }
  .rmb-5,
  .rmy-5 {
    margin-bottom: 5px !important; }
  .rmb-10,
  .rmy-10 {
    margin-bottom: 10px; }
  .rmb-15,
  .rmy-15 {
    margin-bottom: 15px; }
  .rmb-20,
  .rmy-20 {
    margin-bottom: 20px; }
  .rmb-25,
  .rmy-25 {
    margin-bottom: 25px; }
  .rmb-30,
  .rmy-30 {
    margin-bottom: 30px; }
  .rmb-35,
  .rmy-35 {
    margin-bottom: 35px; }
  .rmb-40,
  .rmy-40 {
    margin-bottom: 40px; }
  .rmb-45,
  .rmy-45 {
    margin-bottom: 45px; }
  .rmb-50,
  .rmy-50 {
    margin-bottom: 50px; }
  .rmb-55,
  .rmy-55 {
    margin-bottom: 55px; }
  .rmb-60,
  .rmy-60 {
    margin-bottom: 60px; }
  .rmb-65,
  .rmy-65 {
    margin-bottom: 65px; }
  .rmb-70,
  .rmy-70 {
    margin-bottom: 70px; }
  .rmb-75,
  .rmy-75 {
    margin-bottom: 75px; }
  .rmb-80,
  .rmy-80 {
    margin-bottom: 80px; }
  .rmb-85,
  .rmy-85 {
    margin-bottom: 85px; }
  .rmb-90,
  .rmy-90 {
    margin-bottom: 90px; }
  .rmb-95,
  .rmy-95 {
    margin-bottom: 95px; }
  .rmb-100,
  .rmy-100 {
    margin-bottom: 100px; }
  .rmb-105,
  .rmy-105 {
    margin-bottom: 105px; }
  .rmb-110,
  .rmy-110 {
    margin-bottom: 110px; }
  .rmb-115,
  .rmy-115 {
    margin-bottom: 115px; }
  .rmb-120,
  .rmy-120 {
    margin-bottom: 120px; }
  .rmb-125,
  .rmy-125 {
    margin-bottom: 125px; }
  .rmb-130,
  .rmy-130 {
    margin-bottom: 130px; }
  .rmb-135,
  .rmy-135 {
    margin-bottom: 135px; }
  .rmb-140,
  .rmy-140 {
    margin-bottom: 140px; }
  .rmb-145,
  .rmy-145 {
    margin-bottom: 145px; }
  .rmb-150,
  .rmy-150 {
    margin-bottom: 150px; } }

/*******************************************************/
/***************** ## Custom Animation ****************/
/*******************************************************/
/* Animation Delay */
.delay-1-0s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s; }

.delay-2-0s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s; }

.delay-0-1s {
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s; }

.delay-0-2s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

.delay-0-3s {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.delay-0-4s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }

.delay-0-5s {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.delay-0-6s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

.delay-0-7s {
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s; }

.delay-0-8s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s; }

.delay-0-9s {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s; }

.delay-1-1s {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s; }

.delay-1-2s {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s; }

.delay-1-3s {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s; }

.delay-1-4s {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s; }

.delay-1-5s {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s; }

.delay-1-6s {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s; }

.delay-1-7s {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s; }

.delay-1-8s {
  -webkit-animation-delay: 1.8s;
  animation-delay: 1.8s; }

.delay-1-9s {
  -webkit-animation-delay: 1.9s;
  animation-delay: 1.9s; }

/* Menu Sticky */
@-webkit-keyframes sticky {
  0% {
    top: -100px; }
  100% {
    top: 0; } }

@keyframes sticky {
  0% {
    top: -100px; }
  100% {
    top: 0; } }

/* Hero Circle */
@-webkit-keyframes rotated_circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes rotated_circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* Feedback Rotated */
@-webkit-keyframes semi_rotated {
  0%,
  100% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg); }
  50% {
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg); } }
@keyframes semi_rotated {
  0%,
  100% {
    -webkit-transform: rotate(20deg);
    transform: rotate(20deg); }
  50% {
    -webkit-transform: rotate(-20deg);
    transform: rotate(-20deg); } }

/* Image BG Rotated */
@-webkit-keyframes semi_rotated_two {
  0%,
  100% {
    -webkit-transform: rotate(-11deg);
    transform: rotate(-11deg); }
  50% {
    -webkit-transform: rotate(11deg);
    transform: rotate(11deg); } }
@keyframes semi_rotated_two {
  0%,
  100% {
    -webkit-transform: rotate(-11deg);
    transform: rotate(-11deg); }
  50% {
    -webkit-transform: rotate(11deg);
    transform: rotate(11deg); } }

@-webkit-keyframes move_arround {
  0% {
    top: 20px;
    left: 20px; }
  25% {
    top: 20px;
    left: -20px; }
  50% {
    top: -20px;
    left: -20px; }
  75% {
    top: -20px;
    left: 20px; }
  100% {
    top: 20px;
    left: 20px; } }

@keyframes move_arround {
  0% {
    top: 20px;
    left: 20px; }
  25% {
    top: 20px;
    left: -20px; }
  50% {
    top: -20px;
    left: -20px; }
  75% {
    top: -20px;
    left: 20px; }
  100% {
    top: 20px;
    left: 20px; } }

/* Hero Circle */
@-webkit-keyframes upDownLeft {
  0%,
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px); }
  25%,
  75% {
    -webkit-transform: translate(0px, 50px);
    transform: translate(0px, 50px); }
  50% {
    -webkit-transform: translate(-50px, 50px);
    transform: translate(-50px, 50px); } }
@keyframes upDownLeft {
  0%,
  100% {
    -webkit-transform: translate(0px, 0px);
    transform: translate(0px, 0px); }
  25%,
  75% {
    -webkit-transform: translate(0px, 50px);
    transform: translate(0px, 50px); }
  50% {
    -webkit-transform: translate(-50px, 50px);
    transform: translate(-50px, 50px); } }

@-webkit-keyframes shapeAnimationOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg); }
  25% {
    -webkit-transform: translate(0px, 150px) rotate(90deg);
    transform: translate(0px, 150px) rotate(90deg); }
  50% {
    -webkit-transform: translate(150px, 150px) rotate(180deg);
    transform: translate(150px, 150px) rotate(180deg); }
  75% {
    -webkit-transform: translate(150px, 0px) rotate(270deg);
    transform: translate(150px, 0px) rotate(270deg); }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    transform: translate(0px, 0px) rotate(360deg); } }

@keyframes shapeAnimationOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg); }
  25% {
    -webkit-transform: translate(0px, 150px) rotate(90deg);
    transform: translate(0px, 150px) rotate(90deg); }
  50% {
    -webkit-transform: translate(150px, 150px) rotate(180deg);
    transform: translate(150px, 150px) rotate(180deg); }
  75% {
    -webkit-transform: translate(150px, 0px) rotate(270deg);
    transform: translate(150px, 0px) rotate(270deg); }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    transform: translate(0px, 0px) rotate(360deg); } }

@-webkit-keyframes shapeAnimationTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg); }
  25% {
    -webkit-transform: translate(-150px, 0px) rotate(270deg);
    transform: translate(-150px, 0px) rotate(270deg); }
  50% {
    -webkit-transform: translate(-150px, 150px) rotate(180deg);
    transform: translate(-150px, 150px) rotate(180deg); }
  75% {
    -webkit-transform: translate(0px, 150px) rotate(90deg);
    transform: translate(0px, 150px) rotate(90deg); }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    transform: translate(0px, 0px) rotate(360deg); } }

@keyframes shapeAnimationTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg); }
  25% {
    -webkit-transform: translate(-150px, 0px) rotate(270deg);
    transform: translate(-150px, 0px) rotate(270deg); }
  50% {
    -webkit-transform: translate(-150px, 150px) rotate(180deg);
    transform: translate(-150px, 150px) rotate(180deg); }
  75% {
    -webkit-transform: translate(0px, 150px) rotate(90deg);
    transform: translate(0px, 150px) rotate(90deg); }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    transform: translate(0px, 0px) rotate(360deg); } }

@-webkit-keyframes shapeAnimationThree {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg); }
  25% {
    -webkit-transform: translate(50px, 150px) rotate(90deg);
    transform: translate(50px, 150px) rotate(90deg); }
  50% {
    -webkit-transform: translate(150px, 150px) rotate(180deg);
    transform: translate(150px, 150px) rotate(180deg); }
  75% {
    -webkit-transform: translate(150px, 50px) rotate(270deg);
    transform: translate(150px, 50px) rotate(270deg); }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    transform: translate(0px, 0px) rotate(360deg); } }

@keyframes shapeAnimationThree {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg); }
  25% {
    -webkit-transform: translate(50px, 150px) rotate(90deg);
    transform: translate(50px, 150px) rotate(90deg); }
  50% {
    -webkit-transform: translate(150px, 150px) rotate(180deg);
    transform: translate(150px, 150px) rotate(180deg); }
  75% {
    -webkit-transform: translate(150px, 50px) rotate(270deg);
    transform: translate(150px, 50px) rotate(270deg); }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    transform: translate(0px, 0px) rotate(360deg); } }

@-webkit-keyframes shapeAnimationFour {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg); }
  25% {
    -webkit-transform: translate(-150px -50px) rotate(90deg);
    transform: translate(-150px -50px) rotate(90deg); }
  50% {
    -webkit-transform: translate(-150px, -150px) rotate(180deg);
    transform: translate(-150px, -150px) rotate(180deg); }
  75% {
    -webkit-transform: translate(-50px, -150px) rotate(270deg);
    transform: translate(-50px, -150px) rotate(270deg); }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    transform: translate(0px, 0px) rotate(360deg); } }

@keyframes shapeAnimationFour {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg); }
  25% {
    -webkit-transform: translate(-150px -50px) rotate(90deg);
    transform: translate(-150px -50px) rotate(90deg); }
  50% {
    -webkit-transform: translate(-150px, -150px) rotate(180deg);
    transform: translate(-150px, -150px) rotate(180deg); }
  75% {
    -webkit-transform: translate(-50px, -150px) rotate(270deg);
    transform: translate(-50px, -150px) rotate(270deg); }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    transform: translate(0px, 0px) rotate(360deg); } }

@-webkit-keyframes shapeAnimationFive {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg); }
  25% {
    -webkit-transform: translate(-100px -100px) rotate(90deg);
    transform: translate(-100px -100px) rotate(90deg); }
  50% {
    -webkit-transform: translate(100px, 50px) rotate(180deg);
    transform: translate(100px, 50px) rotate(180deg); }
  75% {
    -webkit-transform: translate(-100px, 150px) rotate(270deg);
    transform: translate(-100px, 150px) rotate(270deg); }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    transform: translate(0px, 0px) rotate(360deg); } }

@keyframes shapeAnimationFive {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
    transform: translate(0px, 0px) rotate(0deg); }
  25% {
    -webkit-transform: translate(-100px -100px) rotate(90deg);
    transform: translate(-100px -100px) rotate(90deg); }
  50% {
    -webkit-transform: translate(100px, 50px) rotate(180deg);
    transform: translate(100px, 50px) rotate(180deg); }
  75% {
    -webkit-transform: translate(-100px, 150px) rotate(270deg);
    transform: translate(-100px, 150px) rotate(270deg); }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(360deg);
    transform: translate(0px, 0px) rotate(360deg); } }

@-webkit-keyframes down-up-one {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px); }
  50% {
    -webkit-transform: rotateX(0deg) translateY(25px);
    transform: rotateX(0deg) translateY(25px); }
  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px); } }

@keyframes down-up-one {
  0% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px); }
  50% {
    -webkit-transform: rotateX(0deg) translateY(25px);
    transform: rotateX(0deg) translateY(25px); }
  100% {
    -webkit-transform: rotateX(0deg) translateY(0px);
    transform: rotateX(0deg) translateY(0px); } }

@-webkit-keyframes down-up-two {
  0% {
    -webkit-transform: rotateX(0deg) translate(0px);
    transform: rotateX(0deg) translate(0px); }
  50% {
    -webkit-transform: rotateX(0deg) translate(25px, -25px);
    transform: rotateX(0deg) translate(25px, -25px); }
  100% {
    -webkit-transform: rotateX(0deg) translate(0px);
    transform: rotateX(0deg) translate(0px); } }

@keyframes down-up-two {
  0% {
    -webkit-transform: rotateX(0deg) translate(0px);
    transform: rotateX(0deg) translate(0px); }
  50% {
    -webkit-transform: rotateX(0deg) translate(25px, -25px);
    transform: rotateX(0deg) translate(25px, -25px); }
  100% {
    -webkit-transform: rotateX(0deg) translate(0px);
    transform: rotateX(0deg) translate(0px); } }

@-webkit-keyframes leftRightOne {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  50% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px); } }

@keyframes leftRightOne {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  50% {
    -webkit-transform: translateX(-100px);
    transform: translateX(-100px); } }

@-webkit-keyframes leftRightTwo {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px); } }

@keyframes leftRightTwo {
  0%,
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  50% {
    -webkit-transform: translateX(100px);
    transform: translateX(100px); } }

@-webkit-keyframes zoomInOut {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5); } }

@keyframes zoomInOut {
  0%,
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5); } }

@-webkit-keyframes border {
  0% {
    width: 0;
    height: 0; }
  50% {
    width: 0;
    height: 100%; }
  100% {
    width: 100%;
    height: 100%; } }

@keyframes border {
  0% {
    width: 0;
    height: 0; }
  50% {
    width: 0;
    height: 100%; }
  100% {
    width: 100%;
    height: 100%; } }

/*******************************************************/
/******************* ## Header style ******************/
/*******************************************************/
.main-header {
  position: relative;
  left: 0px;
  top: 0px;
  z-index: 999;
  width: 100%;
  -webkit-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease; }
  .main-header .container-fluid {
    padding-left: 25px;
    padding-right: 25px; }
    @media only screen and (min-width: 1200px) {
      .main-header .container-fluid {
        padding-left: 55px;
        padding-right: 55px; } }
  .main-header .header-upper {
    z-index: 5;
    width: 100%;
    position: relative;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease; }
  .main-header .logo-outer {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none; }
    @media only screen and (max-width: 991px) {
      .main-header .logo-outer {
        display: none; } }
  .main-header .logo {
    z-index: 9;
    padding: 2px 0;
    position: relative; }
  .main-header .nice-select .current {
    color: white; }
  .main-header.menu-absolute .header-upper {
    position: absolute; }
  .main-header.fixed-header .header-upper {
    top: 0;
    left: 0;
    position: fixed;
    -webkit-animation: sticky  1s;
    animation: sticky  1s;
    background: var(--lighter-color);
    -webkit-box-shadow: 0px 0px 30px 0px rgba(87, 95, 245, 0.1);
    box-shadow: 0px 0px 30px 0px rgba(87, 95, 245, 0.1); }
  @media only screen and (min-width: 992px) {
    .main-header.fixed-header .main-menu .navbar-collapse > ul > li {
      padding-top: 25px;
      padding-bottom: 25px; } }

@media only screen and (max-width: 767px) {
  .menu-social {
    display: none; } }

.menu-social a {
  margin-left: 18px;
  margin-right: 18px; }

.onepage-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  padding: 30px 20px;
  background: #232323;
  border-radius: 16px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }
  @media only screen and (max-width: 1399px) {
    .onepage-menu {
      padding-top: 20px;
      padding-bottom: 20px; } }
  .onepage-menu li .menu-item {
    color: white;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 25px 5px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column; }
    @media only screen and (max-width: 1399px) {
      .onepage-menu li .menu-item {
        padding-top: 15px;
        padding-bottom: 15px; } }
    @media only screen and (max-width: 575px) {
      .onepage-menu li .menu-item {
        padding-top: 10px;
        padding-bottom: 10px; } }
    .onepage-menu li .menu-item i {
      font-size: 22px; }
    .onepage-menu li .menu-item span {
      display: block;
      margin-top: 5px; }
      @media only screen and (max-width: 767px) {
        .onepage-menu li .menu-item span {
          display: none; } }
  .onepage-menu li:not(:last-child) a {
    border-bottom: 1px solid var(--border-color); }
  .onepage-menu .active a {
    color: black;
    border-radius: 16px;
    background: var(--primary-color); }
    @media only screen and (max-width: 1399px) {
      .onepage-menu .active a {
        border-radius: 5px; } }

@media only screen and (max-width: 767px) {
  .hero-menu {
    display: none; } }

@media only screen and (max-width: 991px) {
  .hero-menu li .menu-item span {
    display: none; } }

.nav-outer {
  margin-left: auto; }
  @media only screen and (max-width: 991px) {
    .nav-outer {
      width: 100%; } }

/** Header Main Menu **/
@media only screen and (max-width: 991px) {
  .main-menu {
    width: 100%; } }

.main-menu .mobile-logo {
  margin-right: auto; }
  @media only screen and (max-width: 575px) {
    .main-menu .mobile-logo {
      max-width: 150px; } }

@media only screen and (max-width: 991px) {
  .main-menu .collapse {
    overflow: auto; } }

.main-menu .navbar-collapse {
  padding: 0px; }
  .main-menu .navbar-collapse > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media only screen and (max-width: 991px) {
      .main-menu .navbar-collapse > ul {
        display: block;
        padding: 25px 0;
        overflow-x: hidden;
        background: var(--lighter-color);
        max-height: calc(100vh - 100px); }
        .main-menu .navbar-collapse > ul > li:last-child {
          border-bottom: 1px solid var(--border-color); } }
  @media only screen and (max-width: 991px) {
    .main-menu .navbar-collapse {
      left: 0;
      width: 100%;
      position: absolute; } }
  .main-menu .navbar-collapse li {
    padding: 40px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    @media only screen and (max-width: 1399px) {
      .main-menu .navbar-collapse li {
        padding-left: 10px;
        padding-right: 10px; } }
    @media only screen and (max-width: 991px) {
      .main-menu .navbar-collapse li {
        display: block;
        padding: 0 15px;
        border-top: 1px solid var(--border-color); } }
    .main-menu .navbar-collapse li.dropdown .dropdown-btn {
      cursor: pointer;
      font-size: 12px;
      margin-left: 5px;
      color: var(--heading-color); }
      @media only screen and (max-width: 991px) {
        .main-menu .navbar-collapse li.dropdown .dropdown-btn {
          position: absolute;
          right: 10px;
          top: 0;
          width: 50px;
          height: 43px;
          border-left: 1px solid var(--border-color);
          text-align: center;
          line-height: 43px; } }
    .main-menu .navbar-collapse li a {
      opacity: 1;
      display: block;
      font-weight: 500;
      position: relative;
      color: var(--heading-color);
      font-family: "DM Sans", sans-serif;
      text-transform: capitalize;
      -webkit-transition: all 500ms ease;
      -o-transition: all 500ms ease;
      transition: all 500ms ease; }
      @media only screen and (max-width: 991px) {
        .main-menu .navbar-collapse li a {
          padding: 10px 10px;
          line-height: 22px; } }
      @media only screen and (min-width: 992px) {
        .main-menu .navbar-collapse li a:after {
          content: '';
          opacity: 0;
          position: absolute;
          left: 0;
          top: 115%;
          -webkit-transition: 0.5s;
          -o-transition: 0.5s;
          transition: 0.5s;
          width: 25px;
          height: 2px;
          background: var(--primary-color); } }
      .main-menu .navbar-collapse li a:hover {
        color: var(--primary-color);
        text-decoration: underline; }
        .main-menu .navbar-collapse li a:hover:after {
          opacity: 1; }
    .main-menu .navbar-collapse li.current > a, .main-menu .navbar-collapse li.current-menu-item > a {
      font-weight: 500; }
    .main-menu .navbar-collapse li li {
      border-top: 1px solid var(--border-color); }
      .main-menu .navbar-collapse li li a {
        text-transform: capitalize; }
        .main-menu .navbar-collapse li li a:after {
          display: none; }
    .main-menu .navbar-collapse li .megamenu {
      position: absolute;
      left: 0px;
      top: 100%;
      width: 100%;
      z-index: 100;
      display: none;
      padding: 20px 0;
      background: var(--lighter-color);
      -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.15), -2px 0px 5px 1px rgba(0, 0, 0, 0.15);
      box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.15), -2px 0px 5px 1px rgba(0, 0, 0, 0.15); }
      .main-menu .navbar-collapse li .megamenu:after {
        display: block;
        clear: both;
        content: ""; }
      @media only screen and (max-width: 991px) {
        .main-menu .navbar-collapse li .megamenu {
          position: relative;
          -webkit-box-shadow: none;
          box-shadow: none;
          width: 100%; }
          .main-menu .navbar-collapse li .megamenu .container {
            max-width: 100%; }
          .main-menu .navbar-collapse li .megamenu .row {
            margin: 0px; } }
      .main-menu .navbar-collapse li .megamenu ul {
        display: block;
        position: relative;
        top: 0;
        width: 100%;
        -webkit-box-shadow: none;
        box-shadow: none; }
    .main-menu .navbar-collapse li ul {
      position: absolute;
      left: inherit;
      top: 100%;
      min-width: 250px;
      z-index: 100;
      display: none;
      background: var(--lighter-color);
      -webkit-box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.15), -2px 0px 5px 1px rgba(0, 0, 0, 0.15);
      box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.15), -2px 0px 5px 1px rgba(0, 0, 0, 0.15); }
      @media only screen and (max-width: 991px) {
        .main-menu .navbar-collapse li ul {
          position: relative;
          display: none;
          width: 100%;
          -webkit-box-shadow: none;
          box-shadow: none; }
          .main-menu .navbar-collapse li ul:after {
            display: block;
            clear: both;
            content: ""; } }
  @media only screen and (max-width: 991px) and (max-width: 375px) {
    .main-menu .navbar-collapse li ul {
      min-width: auto; } }
      .main-menu .navbar-collapse li ul li {
        width: 100%;
        padding: 7px 20px; }
        @media only screen and (max-width: 991px) {
          .main-menu .navbar-collapse li ul li {
            padding: 0 15px; } }
        .main-menu .navbar-collapse li ul li ul {
          left: 100%;
          top: 0%; }
          @media only screen and (max-width: 991px) {
            .main-menu .navbar-collapse li ul li ul {
              left: auto; } }

.main-menu .navbar-header {
  display: none; }
  @media only screen and (max-width: 991px) {
    .main-menu .navbar-header {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: start; } }
  .main-menu .navbar-header .navbar-toggle {
    float: right;
    padding: 4px 0;
    cursor: pointer;
    background: transparent; }
    .main-menu .navbar-header .navbar-toggle .icon-bar {
      background: var(--base-color);
      height: 2px;
      width: 30px;
      display: block;
      margin: 7px 0; }

/* Menu Btns */
.menu-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }

/* Menu Sidebar */
.menu-sidebar button {
  width: 50px;
  height: 50px;
  cursor: pointer;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-color); }
  @media only screen and (max-width: 991px) {
    .menu-sidebar button {
      width: 45px;
      height: 45px; } }

/** hidden-sidebar * */
.hidden-bar {
  position: fixed;
  right: -350px;
  top: 0px;
  opacity: 0;
  width: 350px;
  height: 100%;
  z-index: 99999;
  overflow-y: auto;
  visibility: hidden;
  background-color: var(--lighter-color);
  border-left: 1px solid #231b26;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }
  @media only screen and (max-width: 375px) {
    .hidden-bar {
      width: 300px; } }
  .hidden-bar .social-style-one a {
    width: 40px;
    height: 40px;
    line-height: 40px; }

.side-content-visible .hidden-bar {
  right: 0px;
  opacity: 1;
  visibility: visible; }

.hidden-bar .inner-box {
  position: relative;
  padding: 100px 40px 50px; }
  @media only screen and (max-width: 375px) {
    .hidden-bar .inner-box {
      padding-left: 25px;
      padding-right: 25px; } }
  .hidden-bar .inner-box .cross-icon {
    position: absolute;
    right: 30px;
    top: 30px;
    cursor: pointer;
    color: #ffffff;
    font-size: 20px;
    -webkit-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease; }
  .hidden-bar .inner-box h4 {
    position: relative;
    color: #ffffff;
    margin-bottom: 35px; }

/*Appointment Form */
.hidden-bar .appointment-form {
  position: relative; }
  .hidden-bar .appointment-form .form-group {
    position: relative;
    margin-bottom: 20px; }
  .hidden-bar .appointment-form input[type="text"], .hidden-bar .appointment-form input[type="email"] {
    position: relative;
    display: block;
    width: 100%;
    line-height: 23px;
    padding: 10px 25px;
    color: #ffffff;
    font-size: 16px;
    background: none;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 1px solid rgba(255, 255, 255, 0.1); }
  .hidden-bar .appointment-form textarea {
    position: relative;
    display: block;
    width: 100%;
    line-height: 23px;
    padding: 10px 25px;
    color: #ffffff;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: none;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    resize: none; }
  .hidden-bar .appointment-form input::-webkit-input-placeholder {
    font-size: 14px;
    color: #bdbdbd; }
  .hidden-bar .appointment-form input:-ms-input-placeholder {
    font-size: 14px;
    color: #bdbdbd; }
  .hidden-bar .appointment-form input::-ms-input-placeholder {
    font-size: 14px;
    color: #bdbdbd; }
  .hidden-bar .appointment-form input::placeholder {
    font-size: 14px;
    color: #bdbdbd; }
  .hidden-bar .appointment-form textarea::-webkit-input-placeholder {
    font-size: 14px;
    color: #bdbdbd; }
  .hidden-bar .appointment-form textarea:-ms-input-placeholder {
    font-size: 14px;
    color: #bdbdbd; }
  .hidden-bar .appointment-form textarea::-ms-input-placeholder {
    font-size: 14px;
    color: #bdbdbd; }
  .hidden-bar .appointment-form textarea::placeholder {
    font-size: 14px;
    color: #bdbdbd; }
  .hidden-bar .appointment-form .form-group button {
    width: 100%;
    font-size: 16px;
    padding: 10px 15px;
    margin-bottom: 20px;
    border-color: white; }

.form-back-drop {
  position: fixed;
  left: 100%;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  z-index: 9990;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease; }

.side-content-visible .form-back-drop {
  opacity: 1;
  left: 0;
  visibility: visible; }

/* Tech Animation Styles */
.tech-animation-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.animation-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 20px;
}

/* Code Terminal Animation */
.code-terminal {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    background: #0d1117;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.terminal-header {
    background: #21262d;
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.terminal-buttons {
    display: flex;
    gap: 5px;
}

.terminal-buttons .btn {
    width: 12px;
    height: 12px;
    border-radius: 0;
    border: none;
    outline: none;
    display: block;
    flex-shrink: 0;
    box-sizing: border-box;
    min-width: 12px;
    min-height: 12px;
}

.terminal-buttons .btn.red { background: #ff5f56; }
.terminal-buttons .btn.yellow { background: #ffbd2e; }
.terminal-buttons .btn.green { background: #28ca3f; }

.terminal-title {
    color: #8b949e;
    font-size: 12px;
    font-family: 'Courier New', monospace;
}

.terminal-body {
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.code-line {
    margin: 5px 0;
    opacity: 0;
    animation: fadeInCode 0.5s ease-in-out forwards;
}

.code-line:nth-child(1) { animation-delay: 0.5s; }
.code-line:nth-child(2) { animation-delay: 1s; }
.code-line:nth-child(3) { animation-delay: 1.5s; }
.code-line:nth-child(4) { animation-delay: 2s; }

.code-keyword { color: #ff7b72; }
.code-variable { color: #79c0ff; }
.code-string { color: #a5d6ff; }
.code-function { color: #d2a8ff; }

.typing-line .cursor {
    animation: blink 1s infinite;
    color: #00ff88;
}

@keyframes fadeInCode {
    to { opacity: 1; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Floating Tech Icons */
.floating-tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00ff88;
    font-size: 20px;
    animation: float 4s ease-in-out infinite;
}

.tech-icon.icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.tech-icon.icon-2 {
    top: 20%;
    right: 15%;
    animation-delay: 0.5s;
}

.tech-icon.icon-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

.tech-icon.icon-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 1.5s;
}

.tech-icon.icon-5 {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.tech-icon.icon-6 {
    top: 60%;
    right: 5%;
    animation-delay: 2.5s;
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Data Flow Animation */
.data-flow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
}

.data-svg {
    width: 100%;
    height: 100%;
}

.data-path {
    stroke-dasharray: 10, 5;
    animation: dash 3s linear infinite;
}

.data-point {
    animation: dataPulse 2s ease-in-out infinite;
}

.data-point.point-1 { animation-delay: 0s; }
.data-point.point-2 { animation-delay: 0.7s; }
.data-point.point-3 { animation-delay: 1.4s; }

@keyframes dash {
    to { stroke-dashoffset: -15; }
}

@keyframes dataPulse {
    0%, 100% { r: 4; opacity: 1; }
    50% { r: 8; opacity: 0.7; }
}

/* Binary Code Rain */
.binary-rain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: #00ff88;
    overflow: hidden;
}

.binary-column {
    position: absolute;
    top: -100%;
    animation: rain 8s linear infinite;
    line-height: 1.2;
}

.binary-column.col-1 {
    left: 10%;
    animation-delay: 0s;
}

.binary-column.col-2 {
    left: 30%;
    animation-delay: 2s;
}

.binary-column.col-3 {
    left: 60%;
    animation-delay: 4s;
}

.binary-column.col-4 {
    left: 80%;
    animation-delay: 6s;
}

@keyframes rain {
    0% { top: -100%; }
    100% { top: 100%; }
}

/* Animated Team Avatars */
.animated-avatar {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

.avatar-circle {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    animation: avatarFloat 3s ease-in-out infinite;
}

.avatar-initials {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.avatar-ring {
    position: absolute;
    width: 170px;
    height: 170px;
    border: 3px solid transparent;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ff88, #00d4ff, #ff6b6b, #feca57) border-box;
    background-clip: border-box;
    animation: rotate 4s linear infinite;
    z-index: 1;
}

.avatar-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ff88;
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle.p1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle.p2 {
    top: 30%;
    right: 20%;
    animation-delay: 0.5s;
}

.particle.p3 {
    bottom: 30%;
    left: 30%;
    animation-delay: 1s;
}

.particle.p4 {
    bottom: 20%;
    right: 30%;
    animation-delay: 1.5s;
}

.role-indicator {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 255, 136, 0.9);
    color: #000;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

@keyframes avatarFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-15px) scale(1.2);
        opacity: 1;
    }
}

/* Team Cards - No Images */
.team-card {
    background: linear-gradient(135deg, #1a1a2ed5 0%, #1d30668d 50%, #0f33603e 100%);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 255, 136, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 255, 136, 0.3);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, #00d4ff, #ff6b6b, #feca57);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Team Card Header */
.team-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.role-visualization {
    display: flex;
    align-items: center;
    gap: 20px;
}

.role-icon {
    position: relative;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.role-icon .icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    animation: pulse 2s ease-in-out infinite;
}

.role-title h3 {
    color: white;
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 5px 0;
}

.role-subtitle {
    color: #00ff88;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Leadership Metrics */
.leadership-metrics {
    display: flex;
    gap: 20px;
}

.metric {
    text-align: center;
    padding: 10px 15px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    min-width: 60px;
}

.metric-value {
    font-size: 18px;
    font-weight: bold;
    color: #00ff88;
    margin-bottom: 5px;
}

.metric-label {
    font-size: 12px;
    color: #8b949e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Team Card Body */
.team-card-body {
    margin-bottom: 25px;
}

.member-description {
    margin-bottom: 25px;
}

.member-description p {
    color: #c9d1d9;
    line-height: 1.6;
    margin: 0;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 25px;
}

.expertise-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateX(5px);
}

.expertise-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.expertise-content h5 {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.expertise-content p {
    color: #8b949e;
    font-size: 12px;
    margin: 0;
    line-height: 1.4;
}

/* Social Connections */
.social-connections {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #8b949e;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
    transform: translateY(-2px);
}

.social-link i {
    font-size: 14px;
}

/* Team Card Footer */
.team-card-footer {
    display: flex;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.leadership-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: #000;
    border-radius: 25px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-card-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .leadership-metrics {
        justify-content: center;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .social-connections {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .team-card {
        padding: 20px;
    }
    
    .role-visualization {
        flex-direction: column;
        gap: 15px;
    }
    
    .leadership-metrics {
        flex-direction: column;
        gap: 10px;
    }
    
    .metric {
        min-width: auto;
    }
}

/* Menu White */
.main-header.header-white {
  position: absolute; }
  @media only screen and (min-width: 1200px) {
    .main-header.header-white .nav-outer {
      margin-left: 110px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-header.header-white .nav-outer {
      margin-left: 60px; } }
  .main-header.header-white .shopping-bag,
  .main-header.header-white .menu-btns > button,
  .main-header.header-white .nav-search > button,
  .main-header.header-white .menu-phone-number a {
    color: white; }
  @media only screen and (min-width: 992px) {
    .main-header.header-white .main-menu .navigation > li > a,
    .main-header.header-white .main-menu .navigation > .dropdown > .dropdown-btn {
      color: white; } }
  .main-header.header-white .main-menu .navigation li li a:hover {
    color: var(--primary-color); }
  .main-header.header-white .menu-sidebar button .icon-bar,
  .main-header.header-white .main-menu .navbar-toggle .icon-bar {
    background: white; }
  @media only screen and (max-width: 1299px) {
    .main-header.header-white .language-switcher {
      display: none; } }
  .main-header.header-white.fixed-header .header-upper {
    background: #17171a; }

/*******************************************************/
/******************* ## Page Banner *******************/
/*******************************************************/
.banner-inner h1 {
  font-size: 75px;
  font-weight: 500;
  margin-bottom: 16px;
  text-transform: capitalize; }
  @media only screen and (max-width: 991px) {
    .banner-inner h1 {
      font-size: 65px; } }
  @media only screen and (max-width: 767px) {
    .banner-inner h1 {
      font-size: 55px; } }
  @media only screen and (max-width: 575px) {
    .banner-inner h1 {
      font-size: 45px; } }
  @media only screen and (max-width: 375px) {
    .banner-inner h1 {
      font-size: 35px; } }

.banner-inner h3 {
  margin-bottom: 20px; }
  @media only screen and (min-width: 768px) {
    .banner-inner h3 {
      font-size: 35px; } }
  @media only screen and (max-width: 375px) {
    .banner-inner h3 {
      font-size: 25px; } }

.breadcrumb {
  padding: 0;
  margin: 0;
  font-size: 18px;
  background: transparent;
  text-transform: capitalize; }
  @media only screen and (max-width: 375px) {
    .breadcrumb {
      font-size: 16px; } }
  .breadcrumb .breadcrumb-item {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    .breadcrumb .breadcrumb-item a {
      color: white; }
    .breadcrumb .breadcrumb-item.active {
      color: var(--primary-color);
      text-decoration: underline; }
    .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
      margin-left: 20px;
      margin-right: 20px;
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      content: "";
      width: 5px;
      height: 5px;
      padding-right: 0;
      border-radius: 50%;
      background: white; }

/*******************************************************/
/******************** ## Hero Section ******************/
/*******************************************************/
.hero-content {
  max-width: 415px; }
  .hero-content .h2 {
    display: block;
    font-weight: 400;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.35); }
  .hero-content h1 {
    margin-bottom: 25px; }
    .hero-content h1 b {
      color: var(--primary-color); }
    @media only screen and (max-width: 1399px) {
      .hero-content h1 {
        font-size: 55px; } }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .hero-content h1 {
        font-size: 46px; } }
    @media only screen and (max-width: 767px) {
      .hero-content h1 {
        font-size: 45px; } }
    @media only screen and (max-width: 375px) {
      .hero-content h1 {
        font-size: 40px; } }
  .hero-content .hero-btns .theme-btn {
    margin-top: 15px;
    margin-right: 35px; }
  .hero-content .hero-btns .read-more {
    margin-top: 15px;
    text-decoration: underline; }

.author-image-part {
  z-index: 1;
  overflow: hidden;
  max-width: 575px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  border-radius: 0 0 580px 565px; }

/* Hero Animations Center */
.hero-animations-center {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Hero Text Content */
.hero-text-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  text-align: center;
  max-width: 600px;
  animation: textFadeIn 2s ease-out 0.5s both;
}

.welcome-text {
  margin-bottom: 15px;
  animation: slideInDown 1s ease-out 1s both;
}

.welcome-greeting {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  margin-bottom: 20px;
  animation: slideInUp 1s ease-out 1.2s both;
}

.hero-title h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.hero-title h1 b {
  background: linear-gradient(45deg, #00ff88, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: titleGlow 3s ease-in-out infinite alternate;
}

.hero-subtitle {
  margin-bottom: 15px;
  animation: slideInLeft 1s ease-out 1.4s both;
}

.hero-subtitle p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-weight: 500;
}

.hero-award {
  animation: slideInRight 1s ease-out 1.6s both;
}

.hero-award p {
  font-size: 14px;
  color: #00ff88;
  margin: 0;
  font-weight: 600;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  padding: 8px 16px;
  display: inline-block;
  backdrop-filter: blur(10px);
  animation: awardPulse 2s ease-in-out infinite;
}

.hero-cta-button {
  margin-top: 25px;
  animation: slideInUp 1s ease-out 1.8s both;
}

.fullstack-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #00ff88, #00d4ff);
  color: #000;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  animation: buttonGlow 3s ease-in-out infinite alternate;
}

.fullstack-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.fullstack-btn:hover::before {
  left: 100%;
}

.fullstack-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 255, 136, 0.5);
  color: #000;
  text-decoration: none;
}

.fullstack-btn i {
  font-size: 18px;
  animation: iconSpin 2s linear infinite;
}

.fullstack-btn:active {
  transform: translateY(-1px) scale(1.02);
}

/* Hero Floating Elements */
.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}

.hero-floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  animation: heroFloatAdvanced 6s ease-in-out infinite;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.2);
  backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.hero-floating-icon:hover {
  transform: scale(1.2) rotate(360deg);
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
  border-color: rgba(0, 255, 136, 0.6);
}

/* Enhanced Icon Effects */
.icon-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: iconGlow 3s ease-in-out infinite alternate;
}

.icon-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 255, 136, 0.4);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: iconPulse 2s ease-out infinite;
}

/* Hero floating icon positions - centered around the badge */
.hero-floating-icon.icon-1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-floating-icon.icon-2 {
  top: 20%;
  left: 10%;
  animation-delay: 0.5s;
}

.hero-floating-icon.icon-3 {
  top: 50%;
  right: 5%;
  animation-delay: 1s;
}

.hero-floating-icon.icon-4 {
  bottom: 30%;
  left: 5%;
  animation-delay: 1.5s;
}

.hero-floating-icon.icon-5 {
  bottom: 10%;
  right: 15%;
  animation-delay: 2s;
}

.hero-floating-icon.icon-6 {
  top: 70%;
  left: 8%;
  animation-delay: 2.5s;
}

.hero-floating-icon.icon-7 {
  top: 30%;
  left: 5%;
  animation-delay: 3s;
}

.hero-floating-icon.icon-8 {
  bottom: 50%;
  right: 8%;
  animation-delay: 3.5s;
}

/* Enhanced Central Development Badge */
.central-dev-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  background: linear-gradient(45deg, #00ff88, #00d4ff);
  border-radius: 25px;
  padding: 25px 35px;
  box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
  animation: badgePulseAdvanced 4s ease-in-out infinite;
  overflow: hidden;
  position: relative;
}

.badge-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, transparent 70%);
  animation: badgeGlow 3s ease-in-out infinite alternate;
}

.badge-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 15px;
  color: #000;
  font-weight: 700;
  font-size: 18px;
}

.badge-icon {
  position: relative;
  font-size: 24px;
}

.icon-trail {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: iconTrail 2s ease-out infinite;
}

.badge-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 30%;
  right: 20%;
  animation-delay: 0.5s;
}

.particle:nth-child(3) {
  bottom: 30%;
  left: 30%;
  animation-delay: 1s;
}

.particle:nth-child(4) {
  bottom: 20%;
  right: 30%;
  animation-delay: 1.5s;
}

/* Enhanced Code Snippet Float */
.code-snippet-float {
  position: absolute;
  top: 10%;
  right: 5%;
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(0, 255, 136, 0.4);
  border-radius: 12px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 11px;
  animation: slideInRightAdvanced 2.5s ease-out 1s both;
  backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  min-width: 200px;
}

.code-header {
  background: rgba(0, 255, 136, 0.1);
  padding: 8px 12px;
  border-bottom: 1px solid rgba(0, 255, 136, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.code-dots {
  display: flex;
  gap: 4px;
}

.code-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.code-dots .dot.red { background: #ff5f56; }
.code-dots .dot.yellow { background: #ffbd2e; }
.code-dots .dot.green { background: #27ca3f; }

.code-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 500;
}

.code-content {
  padding: 12px;
}

.typing-line {
  position: relative;
}

.cursor {
  animation: blink 1s infinite;
  color: #00ff88;
  font-weight: bold;
}

.code-line {
  color: #e6edf3;
  white-space: nowrap;
}

.code-keyword {
  color: #ff7b72;
  font-weight: bold;
}

.code-variable {
  color: #79c0ff;
}

.code-string {
  color: #a5d6ff;
}

/* Enhanced 3D Tech Tags Float */
.tech-tags-float {
  position: absolute;
  bottom: 10%;
  left: 5%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: slideInLeftAdvanced 2.5s ease-out 1.5s both;
}

.tech-tag.tag-3d {
  position: relative;
  width: 60px;
  height: 30px;
  transform-style: preserve-3d;
  animation: techTag3D 4s ease-in-out infinite;
  cursor: pointer;
}

.tech-tag.tag-3d:hover {
  animation-play-state: paused;
  transform: rotateY(180deg);
}

.tag-front, .tag-back {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 10px;
  font-weight: 700;
  backface-visibility: hidden;
  transition: all 0.3s ease;
}

.tag-front {
  background: linear-gradient(45deg, #00ff88, #00d4ff);
  color: #000;
  box-shadow: 0 4px 15px rgba(0, 255, 136, 0.3);
}

.tag-back {
  background: linear-gradient(45deg, #00d4ff, #00ff88);
  color: #000;
  transform: rotateY(180deg);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.tech-tag.tag-3d:nth-child(1) { animation-delay: 0s; }
.tech-tag.tag-3d:nth-child(2) { animation-delay: 0.5s; }
.tech-tag.tag-3d:nth-child(3) { animation-delay: 1s; }
.tech-tag.tag-3d:nth-child(4) { animation-delay: 1.5s; }

/* Connection Lines */
.connection-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.connection-svg {
  width: 100%;
  height: 100%;
}

.connection-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 4s ease-in-out infinite;
}

.connection-path:nth-child(1) { animation-delay: 0s; }
.connection-path:nth-child(2) { animation-delay: 1s; }
.connection-path:nth-child(3) { animation-delay: 2s; }
.connection-path:nth-child(4) { animation-delay: 3s; }

/* Data Points */
.data-points {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 2;
}

.data-point {
  position: absolute;
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  animation: dataPointFloat 3s ease-in-out infinite;
}

.point-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #00ff88;
  line-height: 1;
}

.point-label {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

.data-point.point-1 {
  top: 25%;
  right: 25%;
  animation-delay: 0s;
}

.data-point.point-2 {
  top: 60%;
  left: 25%;
  animation-delay: 1s;
}

.data-point.point-3 {
  bottom: 25%;
  right: 20%;
  animation-delay: 2s;
}

/* Advanced Hero Animations */
@keyframes heroFloatAdvanced {
  0%, 100% { 
    transform: translateY(0px) rotate(0deg) scale(1); 
  }
  25% { 
    transform: translateY(-12px) rotate(5deg) scale(1.05); 
  }
  50% { 
    transform: translateY(-20px) rotate(0deg) scale(1.1); 
  }
  75% { 
    transform: translateY(-12px) rotate(-5deg) scale(1.05); 
  }
}

@keyframes iconGlow {
  0% { opacity: 0.3; transform: scale(1); }
  100% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes iconPulse {
  0% { width: 0; height: 0; opacity: 1; }
  100% { width: 60px; height: 60px; opacity: 0; }
}

@keyframes badgePulseAdvanced {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    box-shadow: 0 15px 40px rgba(0, 255, 136, 0.4);
  }
  25% {
    transform: translate(-50%, -50%) scale(1.05) rotate(1deg);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.5);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1) rotate(0deg);
    box-shadow: 0 25px 60px rgba(0, 255, 136, 0.6);
  }
  75% {
    transform: translate(-50%, -50%) scale(1.05) rotate(-1deg);
    box-shadow: 0 20px 50px rgba(0, 255, 136, 0.5);
  }
}

@keyframes badgeGlow {
  0% { opacity: 0.2; transform: scale(1); }
  100% { opacity: 0.4; transform: scale(1.1); }
}

@keyframes iconTrail {
  0% { width: 0; height: 0; opacity: 1; }
  100% { width: 40px; height: 40px; opacity: 0; }
}

@keyframes particleFloat {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
  50% { transform: translateY(-10px) scale(1.2); opacity: 0.6; }
}

@keyframes techTag3D {
  0%, 100% { transform: rotateY(0deg) scale(1); }
  50% { transform: rotateY(180deg) scale(1.1); }
}

@keyframes slideInRightAdvanced {
  0% {
    opacity: 0;
    transform: translateX(50px) rotateY(15deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
}

@keyframes slideInLeftAdvanced {
  0% {
    opacity: 0;
    transform: translateX(-50px) rotateY(-15deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
}

@keyframes drawPath {
  0% { stroke-dashoffset: 1000; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1000; }
}

@keyframes dataPointFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-8px) scale(1.05); }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Hero Text Animations */
@keyframes textFadeIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes titleGlow {
  0% {
    filter: drop-shadow(0 0 5px rgba(0, 255, 136, 0.3));
  }
  100% {
    filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
  }
}

@keyframes awardPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
  }
}

@keyframes buttonGlow {
  0% {
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
    filter: brightness(1);
  }
  100% {
    box-shadow: 0 12px 35px rgba(0, 255, 136, 0.6);
    filter: brightness(1.1);
  }
}

@keyframes iconSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.8;
  }
}

/* Responsive adjustments for hero animations */
@media only screen and (max-width: 991px) {
  .hero-animations-center {
    height: 400px;
  }
  
  .hero-text-content {
    max-width: 500px;
  }
  
  .hero-title h1 {
    font-size: 36px;
  }
  
  .welcome-greeting {
    font-size: 16px;
  }
  
  .hero-subtitle p {
    font-size: 14px;
  }
  
  .hero-award p {
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .fullstack-btn {
    font-size: 14px;
    padding: 12px 24px;
  }
  
  .fullstack-btn i {
    font-size: 16px;
  }
  
  .hero-floating-icon.icon-7,
  .hero-floating-icon.icon-8 {
    display: none;
  }
  
  .code-snippet-float {
    right: 2%;
    font-size: 10px;
    padding: 8px 12px;
  }
  
  .tech-tags-float {
    left: 2%;
  }
  
  .tech-tag {
    font-size: 10px;
    padding: 4px 8px;
  }
  
  .central-dev-badge {
    padding: 15px 25px;
  }
  
  .badge-content {
    font-size: 14px;
  }
}

@media only screen and (max-width: 767px) {
  .hero-animations-center {
    height: 350px;
  }
  
  .hero-text-content {
    max-width: 400px;
  }
  
  .hero-title h1 {
    font-size: 28px;
  }
  
  .welcome-greeting {
    font-size: 14px;
  }
  
  .hero-subtitle p {
    font-size: 13px;
  }
  
  .hero-award p {
    font-size: 11px;
    padding: 5px 10px;
  }
  
  .fullstack-btn {
    font-size: 13px;
    padding: 10px 20px;
  }
  
  .fullstack-btn i {
    font-size: 14px;
  }
  
  .hero-floating-elements {
    display: none;
  }
  
  .code-snippet-float,
  .tech-tags-float {
    display: none;
  }
  
  .central-dev-badge {
    padding: 12px 20px;
  }
  
  .badge-content {
    font-size: 12px;
    gap: 8px;
  }
  
  .badge-content i {
    font-size: 16px;
  }
  
  .data-points {
    display: none;
  }
  
  .connection-lines {
    display: none;
  }
}
  .author-image-part .bg-circle {
    z-index: -2;
    width: 425px;
    height: 425px;
    position: absolute;
    left: 5%;
    top: 4%;
    border-radius: 50%;
    background: var(--black-color); }
    @media only screen and (max-width: 1399px) {
      .author-image-part .bg-circle {
        left: 0;
        top: 15%;
        width: 300px;
        height: 300px; } }
  .author-image-part .progress-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
    width: 100%;
    text-align: center; }

.hero-counter-wrap {
  padding: 35px 40px;
  border-radius: 16px;
  background: var(--black-color); }
  @media only screen and (min-width: 768px) {
    .hero-counter-wrap {
      max-width: 265px; } }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .hero-counter-wrap {
      padding-left: 28px;
      padding-right: 28px; } }
  @media only screen and (max-width: 767px) {
    .hero-counter-wrap {
      padding-left: 25px;
      padding-right: 25px; } }
  .hero-counter-wrap .counter-item:not(:last-child) {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .hero-counter-wrap .count-text {
    line-height: 1;
    font-size: 40px;
    font-weight: 500;
    color: var(--primary-color); }
    .hero-counter-wrap .count-text.plus:after {
      content: '+'; }
    .hero-counter-wrap .count-text.k-plus:after {
      content: 'k+'; }
    .hero-counter-wrap .count-text.percent:after {
      content: '%+'; }
  .hero-counter-wrap .counter-title {
    display: block; }

/*******************************************************/
/******************** ## Current Project Section *****************/
/*******************************************************/
.current-project-area {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  position: relative;
  overflow: hidden;
}

.project-showcase-content .section-title h2 span {
  background: linear-gradient(45deg, #00ff88, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.project-features {
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #00ff88, #00d4ff);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.feature-icon i {
  color: #000;
  font-size: 20px;
}

.feature-content h5 {
  color: #fff;
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.learning-paths h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

.path-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.path-tag {
  background: rgba(0, 224, 120, 0.1);
  border: 2px solid rgba(0, 255, 136, 0.3);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}

.project-stats {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #00ff88;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
}

.project-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.project-showcase-image {
  position: relative;
  padding-left: 40px;
}

.project-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(0, 255, 136, 0.2);
  transition: all 0.3s ease;
}

.project-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 255, 136, 0.4);
}

.project-main-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 30px 25px 25px;
  opacity: 0;
  transition: all 0.3s ease;
}

.project-image-wrapper:hover .image-overlay {
  opacity: 1;
}

.overlay-content h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  background: linear-gradient(45deg, #00ff88, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 15px;
}

.overlay-stats {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.overlay-stats .stat {
  background: rgba(0, 255, 136, 0.2);
  color: #00ff88;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(0, 255, 136, 0.1);
  border: 2px solid rgba(0, 255, 136, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.floating-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.3);
}

.floating-icon.icon-1 {
  top: 10%;
  right: -8%;
  animation-delay: 0s;
}

.floating-icon.icon-2 {
  top: 30%;
  left: -12%;
  animation-delay: 0.5s;
}

.floating-icon.icon-3 {
  top: 50%;
  right: -5%;
  animation-delay: 1s;
}

.floating-icon.icon-4 {
  bottom: 40%;
  left: -8%;
  animation-delay: 1.5s;
}

.floating-icon.icon-5 {
  bottom: 20%;
  right: -3%;
  animation-delay: 2s;
}

.floating-icon.icon-6 {
  top: 70%;
  left: -6%;
  animation-delay: 2.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Responsive Design */
@media only screen and (max-width: 991px) {
  .project-showcase-image {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .project-btns {
    justify-content: center;
  }
  
  .floating-icon.icon-5,
  .floating-icon.icon-6 {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  
  .path-tags {
    justify-content: center;
  }
  
  .project-btns {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-number {
    font-size: 28px;
  }
}

/*******************************************************/
/******************** ## Invoice.Lab Section *****************/
/*******************************************************/
.invoice-lab-area {
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.invoice-lab-area .project-showcase-content .section-title h2 span {
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.benefit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.benefit-tag {
  background: rgba(102, 126, 234, 0.1);
  border: 2px solid rgba(102, 126, 234, 0.3);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
}

.benefit-tag:hover {
  background: rgba(102, 126, 234, 0.2);
  border-color: rgba(102, 126, 234, 0.5);
  transform: translateY(-2px);
}

/* Invoice.Lab specific floating icons */
.invoice-lab-area .floating-icon {
  background: rgba(102, 126, 234, 0.1);
  border: 2px solid rgba(102, 126, 234, 0.3);
  color: #667eea;
}

.invoice-lab-area .floating-icon:hover {
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.invoice-lab-area .feature-icon {
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.invoice-lab-area .stat-number {
  color: #667eea;
}

.invoice-lab-area .overlay-stats .stat {
  background: rgba(102, 126, 234, 0.2);
  color: #667eea;
  border: 1px solid rgba(102, 126, 234, 0.3);
}

.invoice-lab-area .overlay-content h4 {
  background: linear-gradient(45deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.invoice-lab-area .project-image-wrapper {
  border: 2px solid rgba(102, 126, 234, 0.2);
}

.invoice-lab-area .project-image-wrapper:hover {
  border-color: rgba(102, 126, 234, 0.4);
}

/*******************************************************/
/******************** ## About Section *****************/
/*******************************************************/
.about-content-part .section-title p {
  max-width: 620px; }

.about-image-part {
  padding-left: 40px;
  position: relative; }
  @media only screen and (max-width: 991px) {
    .about-image-part {
      padding-left: 100px; } }
  @media only screen and (max-width: 375px) {
    .about-image-part {
      padding-left: 50px; } }
  .about-image-part .dot-shape {
    position: absolute;
    left: -10%;
    top: 25%;
    -webkit-animation: rotated_circle linear 10s infinite;
    animation: rotated_circle linear 10s infinite; }

.about-info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 580px;
  border-radius: 20px;
  padding: 16px 40px 2px;
  background: var(--lighter-color);
  border: 1px solid var(--border-color); }
  @media only screen and (max-width: 375px) {
    .about-info-box {
      padding-left: 25px;
      padding-right: 25px; } }
  .about-info-box .info-box-item {
    margin-bottom: 15px; }
    .about-info-box .info-box-item:not(:last-child) {
      margin-right: 50px; }

.info-box-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .info-box-item > i {
    margin-right: 15px;
    color: var(--black-color);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    line-height: 40px;
    border-radius: 50%;
    text-align: center; }
  .info-box-item .content {
    line-height: 1.5; }
    .info-box-item .content span {
      font-size: 14px; }
    @media only screen and (min-width: 376px) {
      .info-box-item .content a {
        font-size: 18px; } }
    .info-box-item .content a:not(:hover) {
      color: white; }

.about-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: white;
  border-radius: 32px;
  color: var(--black-color);
  padding: 10px 25px 10px 15px; }
  .about-btn img {
    border-radius: 50%;
    margin-right: 15px; }
  .about-btn h6 {
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 0;
    margin-right: 15px; }
    @media only screen and (max-width: 479px) {
      .about-btn h6 {
        font-size: 14px; } }
  .about-btn i {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg); }
  .about-btn.btn-one {
    position: absolute;
    left: -10%;
    bottom: 42%; }
    @media only screen and (max-width: 991px) {
      .about-btn.btn-one {
        left: 5%; } }
    .about-btn.btn-one h6 {
      margin-right: 9px; }
  .about-btn.btn-two {
    position: absolute;
    left: -18%;
    bottom: 23%;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px; }
    @media only screen and (max-width: 991px) {
      .about-btn.btn-two {
        left: 0; } }
    @media only screen and (max-width: 479px) {
      .about-btn.btn-two {
        bottom: 12%; } }

/* What I Do */
.what-i-do-images {
  position: relative;
  padding-right: 17%;
  padding-bottom: 13%; }
  .what-i-do-images img {
    width: 100%; }
  .what-i-do-images .last-image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 55%; }
  .what-i-do-images .icon {
    z-index: -1;
    line-height: 1;
    font-size: 85px;
    position: absolute;
    color: var(--primary-color); }
    @media only screen and (max-width: 767px) {
      .what-i-do-images .icon {
        font-size: 45px; } }
    .what-i-do-images .icon.first {
      right: 0;
      top: 11%; }
    .what-i-do-images .icon.last {
      bottom: 0;
      left: 12%; }

/* About Page */
.about-right-part {
  height: 465px;
  position: relative; }
  @media only screen and (max-width: 479px) {
    .about-right-part {
      height: 400px; } }
  .about-right-part:after {
    content: '';
    z-index: -2;
    width: 390px;
    height: 390px;
    position: absolute;
    right: 10%;
    bottom: 0;
    border-radius: 50%;
    background: var(--lighter-color); }
    @media only screen and (max-width: 479px) {
      .about-right-part:after {
        width: 250px;
        height: 250px; } }
  .about-right-part .experience-years {
    position: absolute;
    right: 0;
    top: 50%;
    width: 190px;
    height: 190px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: black;
    padding: 40px;
    font-weight: 700;
    border-radius: 50%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    font-family: "DM Sans", sans-serif;
    background: var(--primary-color);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
    @media only screen and (max-width: 479px) {
      .about-right-part .experience-years {
        top: 0;
        width: 130px;
        height: 130px;
        padding: 25px;
        -webkit-transform: translateY(-30%);
        -ms-transform: translateY(-30%);
        transform: translateY(-30%); } }
    .about-right-part .experience-years b {
      line-height: 1;
      display: block;
      font-size: 50px;
      margin-bottom: 6px; }
      @media only screen and (max-width: 479px) {
        .about-right-part .experience-years b {
          font-size: 25px; } }
    .about-right-part .experience-years h5 {
      color: black;
      margin-bottom: 0;
      font-weight: 700;
      line-height: 1.3; }
      @media only screen and (max-width: 479px) {
        .about-right-part .experience-years h5 {
          font-size: 16px; } }
  .about-right-part .about-btn {
    position: absolute; }
    .about-right-part .about-btn.one {
      left: 0;
      top: 30%; }
    .about-right-part .about-btn.two {
      left: 10%;
      top: calc(60% - 30px); }
      @media only screen and (max-width: 479px) {
        .about-right-part .about-btn.two {
          left: 0; } }
    .about-right-part .about-btn.three {
      left: 20%;
      bottom: 10%; }
      @media only screen and (max-width: 479px) {
        .about-right-part .about-btn.three {
          left: 0; } }
  .about-right-part .dot-shape {
    z-index: -1;
    position: absolute; }
    .about-right-part .dot-shape.one {
      top: 0;
      left: 30%; }
    .about-right-part .dot-shape.two {
      bottom: 0;
      right: 15%; }

/*******************************************************/
/******************* ## Services Area *****************/
/*******************************************************/
.service-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  padding: 35px 50px;
  margin-bottom: 30px;
  border-radius: 15px;
  background: var(--lighter-color);
  border: 1px solid var(--border-color); }
  @media only screen and (max-width: 575px) {
    .service-item {
      padding-left: 25px;
      padding-right: 25px; } }
  @media only screen and (max-width: 479px) {
    .service-item {
      display: block; } }
  .service-item .number {
    color: white;
    font-size: 24px;
    margin-right: 50px;
    font-family: "DM Sans", sans-serif; }
  @media only screen and (max-width: 479px) {
    .service-item .content {
      margin-top: 25px;
      margin-bottom: 25px; } }
  .service-item .content p {
    margin-bottom: 0; }
  .service-item .details-btn {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-left: auto;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center; }
  .service-item:hover {
    border-color: var(--primary-color); }
    .service-item:hover .details-btn {
      color: var(--black-color);
      background: var(--primary-color); }

/*******************************************************/
/******************** ## Skills Area ******************/
/*******************************************************/
.skill-item {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
  margin-bottom: 30px;
  border-radius: 14px;
  padding: 25px 10px 10px;
  background: var(--lighter-color);
  border: 1px solid var(--border-color); }
  .skill-item h5 {
    margin-top: 15px;
    margin-bottom: 16px; }
  .skill-item .percent {
    padding: 10px;
    display: block;
    font-size: 20px;
    font-weight: 600;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    line-height: 1.2;
    border-radius: 14px;
    background: #131313;
    font-family: "DM Sans", sans-serif;
    color: rgba(255, 255, 255, 0.35); }
  .skill-item:hover {
    border-color: var(--primary-color); }
    .skill-item:hover .percent {
      color: var(--black-color);
      background: var(--primary-color); }

/*******************************************************/
/******************** ## Resume Area *******************/
/*******************************************************/
.big-icon {
  font-size: 130px;
  color: var(--primary-color);
  width: 270px;
  height: 270px;
  background: var(--lighter-color);
  line-height: 270px;
  border-radius: 50%;
  text-align: center;
  border: 1px solid var(--border-color); }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .big-icon {
      width: 200px;
      height: 200px;
      font-size: 100px;
      line-height: 200px; } }
  @media only screen and (max-width: 375px) {
    .big-icon {
      width: 200px;
      height: 200px;
      font-size: 100px;
      line-height: 200px; } }

.resume-items-wrap {
  z-index: 1;
  position: relative;
  border-radius: 15px;
  padding: 60px 60px 1px;
  background: var(--lighter-color); }
  @media only screen and (max-width: 1199px) {
    .resume-items-wrap {
      padding-left: 25px;
      padding-right: 25px; } }
  .resume-items-wrap:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 1px;
    height: 70%;
    background: var(--border-color); }
    @media only screen and (max-width: 1199px) {
      .resume-items-wrap:before {
        left: 45%; } }
    @media only screen and (max-width: 767px) {
      .resume-items-wrap:before {
        display: none; } }

.resume-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 55px; }
  .resume-item .icon {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin-right: 20px;
    width: 40px;
    height: 40px;
    background: #131313;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    color: rgba(255, 255, 255, 0.35); }
  .resume-item .content .years {
    line-height: 1;
    display: block;
    margin-bottom: 20px; }
  .resume-item .content h4 {
    margin-bottom: 5px; }
    @media only screen and (max-width: 479px) {
      .resume-item .content h4 {
        font-size: 20px;
        line-height: 1.3; } }
  .resume-item .content .company {
    color: rgba(255, 255, 255, 0.35); }
  .resume-item:hover .icon {
    color: var(--black-color);
    background: var(--primary-color); }

/*******************************************************/
/******************** ## Contact Area *****************/
/*******************************************************/
.form-style-one .form-group {
  margin-bottom: 32px; }
  .form-style-one .form-group .for-icon {
    right: 26px;
    font-size: 16px;
    margin-bottom: 0;
    position: absolute;
    margin-top: -45px;
    color: rgba(255, 255, 255, 0.2); }
  .form-style-one .form-group .nice-select,
  .form-style-one .form-group .form-control {
    font-size: 16px;
    color: white;
    font-weight: 400;
    line-height: 1.3;
    padding: 19px 45px 19px 30px;
    border-radius: 14px;
    background: var(--lighter-color);
    font-family: "DM Sans", sans-serif;
    border: 1px solid var(--border-color); }
    .form-style-one .form-group .nice-select:focus,
    .form-style-one .form-group .form-control:focus {
      -webkit-box-shadow: none;
      box-shadow: none;
      background: #070707;
      border-color: var(--primary-color); }
      .form-style-one .form-group .nice-select:focus::-webkit-input-placeholder,
      .form-style-one .form-group .form-control:focus::-webkit-input-placeholder {
        color: white; }
      .form-style-one .form-group .nice-select:focus:-ms-input-placeholder,
      .form-style-one .form-group .form-control:focus:-ms-input-placeholder {
        color: white; }
      .form-style-one .form-group .nice-select:focus::-ms-input-placeholder,
      .form-style-one .form-group .form-control:focus::-ms-input-placeholder {
        color: white; }
      .form-style-one .form-group .nice-select:focus::placeholder,
      .form-style-one .form-group .form-control:focus::placeholder {
        color: white; }
      .form-style-one .form-group .nice-select:focus ~ .for-icon,
      .form-style-one .form-group .form-control:focus ~ .for-icon {
        color: white; }
    .form-style-one .form-group .nice-select::-webkit-input-placeholder,
    .form-style-one .form-group .form-control::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.2); }
    .form-style-one .form-group .nice-select:-ms-input-placeholder,
    .form-style-one .form-group .form-control:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.2); }
    .form-style-one .form-group .nice-select::-ms-input-placeholder,
    .form-style-one .form-group .form-control::-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.2); }
    .form-style-one .form-group .nice-select::placeholder,
    .form-style-one .form-group .form-control::placeholder {
      color: rgba(255, 255, 255, 0.2); }
  .form-style-one .form-group label {
    font-size: 18px;
    color: white;
    font-weight: 500;
    margin-bottom: 18px;
    font-family: "DM Sans", sans-serif; }
  .form-style-one .form-group .nice-select .current {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.2); }
  .form-style-one .form-group .nice-select:focus .current {
    color: white; }
  .form-style-one .form-group .nice-select:focus:after {
    border-color: white; }
  .form-style-one .form-group .nice-select .list {
    background: var(--black-color); }
  .form-style-one .form-group .nice-select .option.focus, .form-style-one .form-group .nice-select .option.selected.focus, .form-style-one .form-group .nice-select .option:hover {
    background-color: #5c5a5a; }
  .form-style-one .form-group .nice-select:after {
    right: 26px;
    margin-top: -6px;
    border-color: rgba(255, 255, 255, 0.2); }

/* Contact Page Style */
.contact-page-content h6 {
  font-size: 18px;
  margin-bottom: 22px; }

.contact-page-content .social-style-one a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--lighter-color); }
  .contact-page-content .social-style-one a:not(:hover) {
    background: white; }

.contact-page-form {
  padding: 45px 50px 50px;
  border-radius: 14px;
  background: var(--lighter-color);
  border: 1px solid var(--border-color); }
  @media only screen and (max-width: 479px) {
    .contact-page-form {
      padding-left: 20px;
      padding-right: 20px; } }
  .contact-page-form .form-group .nice-select,
  .contact-page-form .form-group .form-control {
    background: rgba(255, 255, 255, 0.07); }

.our-location iframe {
  height: 600px; }
  @media only screen and (max-width: 1399px) {
    .our-location iframe {
      height: 500px; } }
  @media only screen and (max-width: 991px) {
    .our-location iframe {
      height: 400px; } }
  @media only screen and (max-width: 575px) {
    .our-location iframe {
      height: 350px; } }

.has-error .help-block.with-errors {
  margin-top: 5px;
  color: red; }

#msgSubmit.h4 {
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 10px; }

/*******************************************************/
/******************* ## Projects Area *****************/
/*******************************************************/
.project-image {
  margin-bottom: 45px; }
  .project-image img {
    width: 100%; }

.project-content {
  margin-bottom: 45px;
  padding-left: 60px;
  padding-right: 60px; }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .project-content {
      padding-left: 20px;
      padding-right: 20px; } }
  @media only screen and (max-width: 767px) {
    .project-content {
      padding-left: 40px;
      padding-right: 40px; } }
  @media only screen and (max-width: 479px) {
    .project-content {
      padding-left: 25px;
      padding-right: 25px; } }
  @media only screen and (max-width: 375px) {
    .project-content {
      padding-left: 0;
      padding-right: 0; } }
  .project-content .sub-title {
    display: block;
    margin-bottom: 15px;
    color: var(--primary-color); }
  .project-content h2 {
    margin-bottom: 30px; }
    @media only screen and (max-width: 767px) {
      .project-content h2 {
        font-size: 35px; } }
    @media only screen and (max-width: 479px) {
      .project-content h2 {
        font-size: 30px;
        line-height: 1.3; } }
  .project-content .details-btn {
    margin-top: 25px; }

.project-item.style-two {
  margin-bottom: 60px; }
  .project-item.style-two .project-image {
    margin-bottom: 32px;
    z-index: 1;
    position: relative; }
    .project-item.style-two .project-image::before {
      position: absolute;
      content: "";
      width: 100%;
      height: 100%;
      z-index: -1;
      top: 0;
      left: 0;
      opacity: 0;
      background-color: var(--lighter-color); }
    .project-item.style-two .project-image::before {
      z-index: 1;
      -webkit-transition: .3s;
      -o-transition: .3s;
      transition: .3s; }
    .project-item.style-two .project-image .details-btn {
      z-index: 2;
      opacity: 0;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      font-size: 20px;
      color: var(--black-color);
      width: 65px;
      height: 65px;
      background: var(--primary-color);
      line-height: 65px;
      border-radius: 50%;
      text-align: center;
      -webkit-transform: translate(-50%, -50%) rotate(-45deg);
      -ms-transform: translate(-50%, -50%) rotate(-45deg);
      transform: translate(-50%, -50%) rotate(-45deg); }
  .project-item.style-two .project-content {
    margin-bottom: 0;
    padding-left: 50px;
    padding-right: 50px; }
    @media only screen and (max-width: 1199px) {
      .project-item.style-two .project-content {
        padding-left: 25px;
        padding-right: 25px; } }
    @media only screen and (max-width: 375px) {
      .project-item.style-two .project-content {
        padding-left: 0;
        padding-right: 0; } }
    @media only screen and (max-width: 479px) {
      .project-item.style-two .project-content h3 {
        font-size: 25px; } }
  .project-item.style-two:hover .project-image::before {
    opacity: .65; }
  .project-item.style-two:hover .project-image .details-btn {
    opacity: 1; }

.project-item.style-three {
  margin-bottom: 30px;
  position: relative; }
  .project-item.style-three:before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    opacity: 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    max-height: 100%;
    width: 100%;
    height: 250px;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(201, 243, 29, 0)), to(#C9F31D));
    background: -webkit-linear-gradient(top, rgba(201, 243, 29, 0) 0%, #C9F31D 100%);
    background: -o-linear-gradient(top, rgba(201, 243, 29, 0) 0%, #C9F31D 100%);
    background: linear-gradient(180deg, rgba(201, 243, 29, 0) 0%, #C9F31D 100%); }
  .project-item.style-three .project-image {
    margin-bottom: 0; }
  .project-item.style-three .project-content {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    width: 100%;
    padding: 40px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    margin-bottom: 0; }
    @media only screen and (max-width: 375px) {
      .project-item.style-three .project-content {
        padding-left: 25px;
        padding-right: 25px; } }
    .project-item.style-three .project-content .project-btn {
      font-size: 22px;
      margin-bottom: 5px;
      display: inline-block;
      color: var(--lighter-color);
      -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    .project-item.style-three .project-content .sub-title {
      font-weight: 500;
      margin-bottom: 10px;
      color: var(--lighter-color); }
    .project-item.style-three .project-content h4 {
      font-weight: 700;
      margin-bottom: 0; }
      .project-item.style-three .project-content h4 a {
        color: var(--lighter-color); }
  .project-item.style-three:hover:before {
    opacity: 1; }
  .project-item.style-three:hover .project-content {
    opacity: 1; }

/* Project Details */
.project-details-content h3 {
  margin-bottom: 35px; }

.project-details-content .list-style-one {
  max-width: 600px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .project-details-content .list-style-one li {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px; }
    .project-details-content .list-style-one li:before {
      font-size: 24px;
      margin-right: 15px; }

.project-details-info {
  padding: 40px 60px;
  border-radius: 15px;
  background-color: var(--primary-color); }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .project-details-info {
      padding-left: 35px;
      padding-right: 35px; } }
  @media only screen and (max-width: 375px) {
    .project-details-info {
      padding-left: 35px;
      padding-right: 35px; } }

.pd-info-item:not(:last-child) {
  margin-bottom: 35px; }

.pd-info-item span {
  display: block;
  color: var(--lighter-color);
  font-family: "DM Sans", sans-serif; }

.pd-info-item h5 {
  color: var(--lighter-color);
  font-family: "Inter", sans-serif; }
  @media only screen and (min-width: 376px) {
    .pd-info-item h5 {
      font-size: 22px; } }

.tag-share {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 40px 0;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: var(--lighter-color);
  border: 1px solid var(--border-color); }
  @media only screen and (max-width: 479px) {
    .tag-share {
      padding-left: 15px;
      padding-right: 15px; } }
  .tag-share .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px; }
    .tag-share .item > b {
      color: white;
      font-weight: 500;
      margin-right: 20px; }
    .tag-share .item h5 {
      margin: 0 20px 0 0; }

.big-letter:first-letter {
  float: left;
  font-size: 27px;
  margin-top: 5px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 12px;
  margin-right: 20px;
  color: var(--lighter-color);
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  background: var(--primary-color); }

/*******************************************************/
/***************** ## Testimonials Area ***************/
/*******************************************************/
.testimonial-item {
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  text-align: center;
  padding: 50px 60px;
  border-radius: 16px;
  background: var(--black-color);
  border: 1px solid var(--border-color); }
  @media only screen and (max-width: 1199px) {
    .testimonial-item {
      padding-left: 25px;
      padding-right: 25px; } }
  .testimonial-item .author {
    position: relative;
    margin-bottom: 35px;
    display: inline-block; }
    .testimonial-item .author img {
      display: inline-block; }
    .testimonial-item .author:before {
      content: "\f10d";
      position: absolute;
      right: 90%;
      top: 5px;
      font-weight: 900;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      color: var(--primary-color);
      width: 60px;
      height: 60px;
      background: #1F1F1F;
      line-height: 60px;
      border-radius: 50%;
      text-align: center;
      font-family: "Font Awesome 5 Pro"; }
  .testimonial-item .text {
    margin-bottom: 30px; }
  .testimonial-item .testi-des h5 {
    margin-bottom: 0; }
    @media only screen and (min-width: 376px) {
      .testimonial-item .testi-des h5 {
        font-size: 22px; } }
  .testimonial-item .testi-des span {
    font-size: 14px;
    color: var(--primary-color); }
  .testimonial-item:hover {
    background: #131313; }
    .testimonial-item:hover .author:before {
      color: var(--black-color);
      background: var(--primary-color); }

.testimonials-wrap {
  margin-left: -15px;
  margin-right: -15px; }
  .testimonials-wrap .testimonial-item {
    margin-left: 15px;
    margin-right: 15px; }

/*******************************************************/
/****************** ## Pricing Area *******************/
/*******************************************************/
.pricing-item {
  padding: 10px;
  border-radius: 16px;
  margin-bottom: 30px;
  background: var(--lighter-color); }
  .pricing-item .pricing-header {
    padding: 47px 50px;
    border-radius: 16px;
    background: #131313;
    border: 1px solid var(--border-color); }
    @media only screen and (max-width: 1199px) {
      .pricing-item .pricing-header {
        padding-left: 25px;
        padding-right: 25px; } }
    .pricing-item .pricing-header .save-percent {
      margin-bottom: 40px;
      color: rgba(255, 255, 255, 0.35); }
      .pricing-item .pricing-header .save-percent span {
        color: var(--primary-color); }
    .pricing-item .pricing-header .price {
      font-size: 28px;
      font-weight: 500;
      color: var(--primary-color);
      font-family: "DM Sans", sans-serif; }
      @media only screen and (max-width: 1199px) {
        .pricing-item .pricing-header .price {
          font-size: 40px; } }
      @media only screen and (max-width: 375px) {
        .pricing-item .pricing-header .price {
          font-size: 35px; } }
      .pricing-item .pricing-header .price:before {
        content: '$'; }
      .pricing-item .pricing-header .price:after {
        font-size: 16px;
        font-weight: 400;
        color: var(--base-color);
        content: ''; }
  .pricing-item .pricing-details {
    padding: 40px 50px; }
    @media only screen and (max-width: 1199px) {
      .pricing-item .pricing-details {
        padding-left: 25px;
        padding-right: 25px; } }
    .pricing-item .pricing-details p {
      margin-bottom: 35px; }
    .pricing-item .pricing-details ul {
      padding-bottom: 12px; }
      .pricing-item .pricing-details ul li {
        color: white;
        font-size: 20px;
        margin-bottom: 34px; }
        @media only screen and (max-width: 375px) {
          .pricing-item .pricing-details ul li {
            font-size: 18px; } }
        .pricing-item .pricing-details ul li:before {
          content: "\f00c";
          font-size: 18px;
          margin-right: 15px;
          color: var(--primary-color);
          font-family: 'Font Awesome 5 Pro'; }
        .pricing-item .pricing-details ul li.unable {
          color: white;
          opacity: 0.35; }
          .pricing-item .pricing-details ul li.unable:before {
            color: white; }
  .pricing-item:not(:hover) .theme-btn {
    color: var(--base-color);
    background: rgba(255, 255, 255, 0.1); }

/*******************************************************/
/**************** ## Client Logo Area ******************/
/*******************************************************/
.client-logo-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px; }
  @media only screen and (max-width: 991px) {
    .client-logo-wrap {
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; } }
  .client-logo-wrap .client-logo-item {
    width: calc(20% - 60px);
    margin: 0 30px 70px;
    -webkit-filter: grayscale(1) opacity(0.2);
    filter: grayscale(1) opacity(0.2); }
    @media only screen and (max-width: 991px) {
      .client-logo-wrap .client-logo-item {
        width: calc(25% - 60px);
        margin-bottom: 40px; } }
    @media only screen and (max-width: 767px) {
      .client-logo-wrap .client-logo-item {
        width: calc(33.33% - 60px); } }
    @media only screen and (max-width: 375px) {
      .client-logo-wrap .client-logo-item {
        width: calc(50% - 60px); } }
    .client-logo-wrap .client-logo-item:hover {
      -webkit-filter: grayscale(0) opacity(1);
      filter: grayscale(0) opacity(1); }

/*******************************************************/
/******************** ## Blog Area ********************/
/*******************************************************/
.blog-item {
  margin-bottom: 30px;
  background: var(--lighter-color);
  border-radius: 16px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid transparent;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s; }
  .blog-item:hover {
    border-color: rgba(255, 255, 255, 0.1); }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .blog-item {
      display: block; } }
  @media only screen and (max-width: 767px) {
    .blog-item {
      display: block; } }
  .blog-item .image {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 50%;
    margin-right: 40px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .blog-item .image {
        max-width: none;
        margin-right: 0;
        margin-bottom: 15px; } }
    @media only screen and (max-width: 767px) {
      .blog-item .image {
        max-width: none;
        margin-right: 0;
        margin-bottom: 15px; } }
    .blog-item .image img {
      width: 100%;
      border-radius: 16px; }
  .blog-item .content {
    padding-right: 30px; }
    @media only screen and (min-width: 992px) and (max-width: 1199px) {
      .blog-item .content {
        padding: 30px; } }
    @media only screen and (max-width: 767px) {
      .blog-item .content {
        padding: 30px; } }
    @media only screen and (max-width: 375px) {
      .blog-item .content {
        padding-left: 20px;
        padding-right: 20px; } }
    .blog-item .content h5 {
      font-size: 22px;
      line-height: 1.55;
      margin-bottom: 30px; }
      @media only screen and (max-width: 375px) {
        .blog-item .content h5 {
          font-size: 20px; } }
  .blog-item.style-two {
    display: block;
    overflow: hidden;
    border: 1px solid var(--border-color); }
    .blog-item.style-two .image {
      max-width: 100%;
      margin: 0 0 40px; }
    .blog-item.style-two .content {
      padding: 0 35px; }
      @media only screen and (min-width: 992px) and (max-width: 1199px) {
        .blog-item.style-two .content {
          padding-left: 15px;
          padding-right: 15px; } }
      @media only screen and (max-width: 375px) {
        .blog-item.style-two .content {
          padding-left: 15px;
          padding-right: 15px; } }
      .blog-item.style-two .content h5 {
        font-size: 20px; }
      .blog-item.style-two .content hr {
        margin-left: -45px;
        margin-right: -45px; }

.blog-content {
  background: white;
  padding: 35px 40px 30px;
  -webkit-box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 10px 60px rgba(0, 0, 0, 0.07); }
  @media only screen and (max-width: 991px) {
    .blog-content {
      padding-left: 25px;
      padding-right: 25px; } }
  .blog-content h4 {
    margin-bottom: 10px; }
    @media only screen and (max-width: 991px) {
      .blog-content h4 {
        font-size: 23px; } }
    @media only screen and (max-width: 375px) {
      .blog-content h4 {
        font-size: 20px; } }
  .blog-content p {
    margin-bottom: 20px; }

.blog-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .blog-meta .tag {
    color: var(--base-color);
    line-height: 1;
    padding: 10px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1); }
    .blog-meta .tag:not(:last-child) {
      margin-right: 10px; }
    .blog-meta .tag:hover {
      color: var(--lighter-color);
      background: var(--primary-color); }
  .blog-meta i {
    color: white;
    margin-right: 10px; }

/* Blog Details */
.blog-details-wrap {
  padding: 15px;
  border-radius: 12px;
  background: var(--lighter-color);
  border: 1px solid var(--border-color); }
  .blog-details-wrap .content {
    padding-left: 35px;
    padding-right: 35px; }
    @media only screen and (max-width: 1199px) {
      .blog-details-wrap .content {
        padding-left: 15px;
        padding-right: 15px; } }
    @media only screen and (max-width: 479px) {
      .blog-details-wrap .content {
        padding-left: 0;
        padding-right: 0; } }
    .blog-details-wrap .content h4 {
      margin-bottom: 18px; }
      @media only screen and (min-width: 480px) {
        .blog-details-wrap .content h4 {
          font-size: 27px; } }
    .blog-details-wrap .content .tag-share {
      border-radius: 0;
      border-left: none;
      border-right: none;
      padding-left: 0;
      padding-right: 0; }
  .blog-details-wrap .image img {
    border-radius: 10px; }

.author-date-share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .author-date-share > * {
    margin-bottom: 10px; }
  .author-date-share .author {
    margin-right: 20px; }
    .author-date-share .author img {
      border-radius: 50%; }
  .author-date-share .text {
    margin-right: 70px; }
    @media only screen and (max-width: 991px) {
      .author-date-share .text {
        margin-right: 30px; } }
    @media only screen and (max-width: 479px) {
      .author-date-share .text {
        margin-right: 20px; } }
    .author-date-share .text span {
      font-family: "DM Sans", sans-serif; }
    .author-date-share .text h5 {
      margin-bottom: 0; }
      @media only screen and (min-width: 576px) {
        .author-date-share .text h5 {
          font-size: 22px; } }
      @media only screen and (max-width: 375px) {
        .author-date-share .text h5 {
          font-size: 18px; } }
  .author-date-share .details-btn {
    margin-left: auto;
    width: 55px;
    height: 55px;
    line-height: 55px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
    .author-date-share .details-btn:not(:hover) {
      color: white; }

blockquote {
  margin-top: 45px;
  margin-bottom: 45px;
  font-size: 27px;
  line-height: 1.5;
  font-weight: 500;
  position: relative;
  padding: 30px 40px 30px 125px;
  color: white;
  background: #131313;
  font-family: "DM Sans", sans-serif;
  border-left: 3px solid var(--primary-color); }
  blockquote:before {
    content: "\f10d";
    line-height: 1;
    position: absolute;
    left: 48px;
    top: 30px;
    font-size: 45px;
    font-weight: 300;
    color: var(--primary-color);
    font-family: "Font Awesome 5 Pro"; }
  @media only screen and (max-width: 767px) {
    blockquote {
      font-size: 22px;
      padding-left: 100px; }
      blockquote:before {
        left: 30px;
        font-size: 40px; } }
  @media only screen and (max-width: 479px) {
    blockquote {
      font-size: 20px;
      padding-left: 60px;
      padding-right: 25px; }
      blockquote:before {
        left: 15px;
        font-size: 25px; } }
  @media only screen and (max-width: 375px) {
    blockquote {
      font-size: 18px;
      padding-left: 25px; }
      blockquote:before {
        display: none; } }
  blockquote .blockquote-footer {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.35);
    font-family: "Inter", sans-serif;
    margin-bottom: 0;
    margin-top: 20px; }
    blockquote .blockquote-footer:before {
      content: '——';
      letter-spacing: -2px;
      color: var(--primary-color);
      margin-right: 30px; }

/* Next Prev Blog */
.next-prev-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color); }
  .next-prev-post .post-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 330px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 30px; }
    .next-prev-post .post-item .image {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      max-width: 65px;
      margin-right: 30px; }
      .next-prev-post .post-item .image img {
        border-radius: 50%; }
    .next-prev-post .post-item .date {
      margin-bottom: 8px;
      display: inline-block;
      text-transform: uppercase; }
      .next-prev-post .post-item .date i {
        color: white;
        margin-right: 10px; }
    .next-prev-post .post-item h6 {
      line-height: 1.5;
      margin-bottom: 0; }
      @media only screen and (min-width: 376px) {
        .next-prev-post .post-item h6 {
          font-size: 18px; } }

/* Comments */
.comments {
  padding: 40px 50px 35px;
  background: white;
  -webkit-box-shadow: 0px 4px 60px 0px rgba(12, 11, 11, 0.07);
  box-shadow: 0px 4px 60px 0px rgba(12, 11, 11, 0.07); }
  @media only screen and (max-width: 767px) {
    .comments {
      padding-left: 40px;
      padding-right: 40px; } }
  @media only screen and (max-width: 375px) {
    .comments {
      padding-left: 25px;
      padding-right: 25px; } }

.comment-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0; }

.comment-body {
  padding-top: 35px;
  padding-bottom: 10px;
  max-width: 693px; }
  @media only screen and (min-width: 768px) {
    .comment-body {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .comment-body .author-thumb {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 100px;
    margin-right: 35px;
    margin-bottom: 20px; }
    .comment-body .author-thumb img {
      border-radius: 50%; }
  .comment-body .content {
    padding-left: 0;
    padding-right: 0; }
    .comment-body .content .blog-meta li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 5px;
      text-transform: capitalize; }
      .comment-body .content .blog-meta li:not(:last-child):after {
        content: '';
        width: 5px;
        height: 5px;
        background: white;
        border-radius: 50%;
        margin-left: 20px;
        margin-right: 20px; }
      .comment-body .content .blog-meta li a {
        color: var(--primary-color); }
    .comment-body .content h6 {
      margin-bottom: 0; }
      @media only screen and (min-width: 376px) {
        .comment-body .content h6 {
          font-size: 18px; } }
    .comment-body .content p {
      margin-bottom: 10px; }
  .comment-body.comment-child {
    margin-left: 50px; }
    @media only screen and (max-width: 575px) {
      .comment-body.comment-child {
        margin-left: 30px; } }

.admin-comment .comment-body {
  border: none;
  padding: 30px 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #131313;
  border-radius: 10px;
  max-width: none; }
  @media only screen and (max-width: 767px) {
    .admin-comment .comment-body {
      display: block;
      padding-left: 40px;
      padding-right: 40px; } }
  @media only screen and (max-width: 375px) {
    .admin-comment .comment-body {
      padding-left: 25px;
      padding-right: 25px; } }
  .admin-comment .comment-body .content h5 {
    margin-bottom: 12px; }
    @media only screen and (min-width: 376px) {
      .admin-comment .comment-body .content h5 {
        font-size: 22px; } }
  .admin-comment .comment-body .author-thumb {
    max-width: 160px;
    margin-right: 50px; }
    @media only screen and (min-width: 768px) {
      .admin-comment .comment-body .author-thumb {
        margin-bottom: 0; } }
    @media only screen and (max-width: 375px) {
      .admin-comment .comment-body .author-thumb {
        max-width: 100px; } }

/* Comment Form */
.comment-form {
  border-top: 1px solid var(--border-color); }
  .comment-form h5 {
    font-size: 24px;
    margin-bottom: 20px; }

/*******************************************************/
/******************* ## Error Section ******************/
/*******************************************************/
.error-content .section-title h1 {
  margin-bottom: 0; }
  @media only screen and (min-width: 1400px) {
    .error-content .section-title h1 {
      font-size: 85px; } }

@media only screen and (min-width: 1400px) {
  .error-content .section-title h2 {
    font-size: 55px; } }

/*******************************************************/
/******************** ## FAQs Area *********************/
/*******************************************************/
.faq-image-part {
  max-width: 550px;
  position: relative;
  padding-right: 22%;
  padding-bottom: 25%; }
  .faq-image-part .image-two {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 75%; }
  .faq-image-part:after, .faq-image-part:before {
    content: '';
    z-index: -1;
    width: 305px;
    height: 305px;
    position: absolute;
    background: url(../images/faqs/mwa.png); }
    @media only screen and (max-width: 479px) {
      .faq-image-part:after, .faq-image-part:before {
        width: 200px;
        height: 200px; } }
  .faq-image-part:before {
    top: 6%;
    right: 14%; }
  .faq-image-part:after {
    bottom: 8%;
    left: 10%; }
  .faq-image-part .square-shape {
    width: 25px;
    height: 25px;
    position: absolute;
    left: 7.5%;
    bottom: 10.5%;
    background: var(--primary-color); }

.accordion-item {
  padding: 20px 25px;
  border-radius: 12px;
  background: var(--lighter-color);
  border: 1px solid var(--border-color); }
  @media only screen and (max-width: 375px) {
    .accordion-item {
      padding-left: 15px;
      padding-right: 15px; } }
  .accordion-item:not(:last-child) {
    margin-bottom: 15px; }
  .accordion-item:first-of-type {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px; }
  .accordion-item:last-of-type {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px; }
  .accordion-item .accordion-button {
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: transparent; }
    .accordion-item .accordion-button:focus {
      -webkit-box-shadow: none;
      box-shadow: none; }
    .accordion-item .accordion-button:after {
      display: none; }
    .accordion-item .accordion-button:before {
      -webkit-box-flex: 0;
      -ms-flex: none;
      flex: none;
      color: black;
      content: "\f105";
      font-weight: 400;
      -webkit-transition: 0.5s;
      -o-transition: 0.5s;
      transition: 0.5s;
      text-align: right;
      border-radius: 50%;
      margin-right: 15px;
      width: 25px;
      height: 25px;
      background: var(--primary-color);
      line-height: 25px;
      border-radius: 50%;
      text-align: center;
      font-family: "Font Awesome 5 Pro"; }
    .accordion-item .accordion-button:not(.collapsed):before {
      -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
      transform: rotate(90deg); }
  .accordion-item .accordion-body {
    padding: 15px 0 0 40px; }
    .accordion-item .accordion-body p:last-child {
      margin-bottom: 0; }

/*******************************************************/
/***************** ## Sidebar Widgets *****************/
/*******************************************************/
.main-sidebar {
  padding: 50px 40px;
  border-radius: 12px;
  background: var(--lighter-color);
  border: 1px solid var(--border-color); }
  @media only screen and (min-width: 992px) and (max-width: 1199px) {
    .main-sidebar {
      padding-left: 20px;
      padding-right: 20px; } }
  @media only screen and (max-width: 375px) {
    .main-sidebar {
      padding-left: 25px;
      padding-right: 25px; } }

.widget:not(:last-child) {
  margin-bottom: 45px; }

.widget-title {
  margin-bottom: 34px;
  position: relative;
  padding-bottom: 25px; }
  .widget-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1); }

.widget-search .widget-title {
  margin-bottom: 20px;
  padding-bottom: 0; }
  .widget-search .widget-title:after {
    content: none; }

.widget-search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px 25px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #131313;
  border-radius: 12px;
  border: 1px solid var(--border-color); }
  .widget-search form input {
    padding: 0;
    border: none;
    font-size: 16px;
    font-weight: 400;
    background: transparent;
    font-family: "Inter", sans-serif; }
    .widget-search form input::-webkit-input-placeholder {
      color: #3E3E3E; }
    .widget-search form input:-ms-input-placeholder {
      color: #3E3E3E; }
    .widget-search form input::-ms-input-placeholder {
      color: #3E3E3E; }
    .widget-search form input::placeholder {
      color: #3E3E3E; }
  .widget-search form button {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    color: var(--primary-color);
    background: transparent; }

.widget-category ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.3); }
  .widget-category ul li:not(:last-child) {
    margin-bottom: 14px; }
  .widget-category ul li i {
    margin-right: 12px; }
  .widget-category ul li a {
    font-weight: 500;
    font-family: "DM Sans", sans-serif; }
    .widget-category ul li a:not(:hover) {
      color: rgba(255, 255, 255, 0.3); }

.widget-recent-news ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center; }
  .widget-recent-news ul li:not(:last-child) {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color); }
  .widget-recent-news ul li .image {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    max-width: 65px;
    margin-right: 30px; }
    @media only screen and (max-width: 1199px) {
      .widget-recent-news ul li .image {
        margin-right: 20px; } }
    .widget-recent-news ul li .image img {
      border-radius: 50%; }
  .widget-recent-news ul li .blog-meta {
    text-transform: uppercase; }
  .widget-recent-news ul li h5 {
    font-size: 18px;
    margin-bottom: 0; }
    @media only screen and (max-width: 375px) {
      .widget-recent-news ul li h5 {
        font-size: 16px; } }

.tag-coulds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: -10px -5px 0; }
  .tag-coulds a {
    font-weight: 500;
    padding: 2px 20px;
    margin: 10px 5px 0;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    text-transform: capitalize;
    background: rgba(255, 255, 255, 0.1); }
    .tag-coulds a:hover {
      color: var(--black-color);
      background: var(--primary-color); }

.cta-widget {
  overflow: hidden;
  border-radius: 14px;
  background-size: cover;
  padding: 115px 40px 40px;
  background-position: center;
  z-index: 1;
  position: relative; }
  .cta-widget::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.9;
    background-color: #131313; }
  @media only screen and (max-width: 375px) {
    .cta-widget {
      padding-left: 25px;
      padding-right: 25px; } }
  .cta-widget:before {
    mix-blend-mode: multiply; }
  .cta-widget .sub-title {
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 10px; }
  .cta-widget h4 {
    line-height: 1.45;
    margin-bottom: 30px; }

/* Room Sidebar */
.widget-search-filter .form-group {
  margin-bottom: 30px; }
  .widget-search-filter .form-group:after {
    display: block;
    clear: both;
    content: ""; }
  .widget-search-filter .form-group label {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--heading-color);
    font-family: "DM Sans", sans-serif; }
  .widget-search-filter .form-group input,
  .widget-search-filter .form-group .nice-select {
    color: #CDCDCD;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    padding: 16px 25px;
    border-bottom: none;
    font-family: "Inter", sans-serif; }
  .widget-search-filter .form-group .nice-select .current {
    color: #CDCDCD; }
  .widget-search-filter .form-group .nice-select:after {
    right: 25px;
    border-color: #CDCDCD; }

/*******************************************************/
/******************* ## Main Footer ********************/
/*******************************************************/
/* Footer Widgets */
.footer-widget {
  margin-bottom: 50px; }

/* Footer Description */
.footer-description {
  margin-top: 20px;
  margin-bottom: 20px; }

.footer-description p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin: 0; }

/* Location Badge */
.footer-location {
  margin-top: 15px; }

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(61, 200, 184, 0.1);
  color: #3dc8b8;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(61, 200, 184, 0.3); }

.location-badge i {
  font-size: 14px; }

/* Footer Services/Specializations */
.widget_services ul {
  list-style: none;
  padding: 0;
  margin: 0; }

.widget_services li {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease; }

.widget_services li:hover {
  color: #00ff88; }

.widget_services li i {
  color: #00ff88;
  font-size: 14px;
  width: 16px;
  text-align: center;
  flex-shrink: 0; }

/* Footer Social */
.footer-social {
  margin-top: 25px; }

.social-title {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px; }

.social-links {
  display: flex;
  gap: 15px; }

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 18px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1); }

.social-links a:hover {
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 255, 136, 0.3); }

.footer-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-top: -5px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px; }

.footer-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 2px; }

/* Footer Navigation Menu - Already defined below */

@media only screen and (min-width: 992px) {
  .widget_nav_menu {
    margin-left: auto;
    margin-right: auto;
    max-width: -webkit-max-content;
    max-width: -moz-max-content;
    max-width: max-content; } }

.widget_nav_menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  align-items: start; }
  .widget_nav_menu ul li {
    margin: 0;
    font-family: "DM Sans", sans-serif; }
  .widget_nav_menu ul li a {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease;
    display: block;
    padding: 4px 0; }
  .widget_nav_menu ul li a:hover {
    color: #00ff88; }

.widget_newsletter form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 430px; }
  @media only screen and (min-width: 992px) {
    .widget_newsletter form {
      margin-left: auto;
      margin-right: auto; } }
  .widget_newsletter form label {
    margin: 5px 0 0 0;
    line-height: 1;
    color: var(--primary-color);
    padding-bottom: 21px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2); }
  .widget_newsletter form input {
    font-size: 16px;
    color: var(--base-color);
    padding: 0 0 12px 15px;
    border: none;
    margin-right: auto;
    background: transparent;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2); }
    .widget_newsletter form input::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.3); }
    .widget_newsletter form input:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.3); }
    .widget_newsletter form input::-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.3); }
    .widget_newsletter form input::placeholder {
      color: rgba(255, 255, 255, 0.3); }
  .widget_newsletter form button {
    -webkit-box-flex: 0;
    -ms-flex: none;
    flex: none;
    margin-left: 20px;
    font-size: 14px;
    color: black;
    line-height: 1;
    font-weight: 600;
    padding: 14px 25px;
    border-radius: 14px;
    background: var(--primary-color); }
    .widget_newsletter form button i {
      margin-left: 5px; }

.widget_contact_info ul li {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px; }
  .widget_contact_info ul li i {
    font-size: 16px;
    color: #00ff88;
    width: 20px;
    text-align: center;
    flex-shrink: 0; }
  .widget_contact_info ul li a {
    color: #ccc;
    transition: color 0.3s ease; }
  .widget_contact_info ul li a:hover {
    color: #00ff88; }

/* Footer Bottom */
.footer-bottom {
  position: relative; }
  .footer-bottom .copyright-text {
    color: white; }
    .footer-bottom .copyright-text a {
      color: var(--primary-color); }
  .footer-bottom .scroll-top {
    color: var(--lighter-color);
    font-size: 22px;
    position: absolute;
    top: -30px;
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 14px; }
    @media only screen and (max-width: 991px) {
      .footer-bottom .scroll-top {
        width: 40px;
        height: 40px;
        font-size: 16px;
        line-height: 40px;
        left: calc(50% - 20px); } }

.footer-bottom-nav {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-left: -22px;
  margin-right: -22px; }
  .footer-bottom-nav li {
    margin: 0 22px 5px; }
    .footer-bottom-nav li a:hover {
      color: white; }

/* Technology Stack Section */
.technology-stack-area {
  position: relative;
  overflow: hidden; }

/* Tech Background Elements */
.tech-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1; }

.tech-grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(61, 200, 184, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 200, 184, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: grid-move 20s linear infinite; }

@keyframes grid-move {
  0% { transform: translate(0, 0); }
  100% { transform: translate(50px, 50px); } }

.floating-code-snippets {
  position: absolute;
  width: 100%;
  height: 100%; }

.code-snippet {
  position: absolute;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: rgba(61, 200, 184, 0.3);
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(61, 200, 184, 0.1);
  animation: float-code 15s ease-in-out infinite; }

.snippet-1 { top: 10%; left: 5%; animation-delay: 0s; }
.snippet-2 { top: 20%; right: 10%; animation-delay: 2s; }
.snippet-3 { top: 60%; left: 8%; animation-delay: 4s; }
.snippet-4 { top: 30%; right: 15%; animation-delay: 6s; }
.snippet-5 { bottom: 30%; left: 12%; animation-delay: 8s; }
.snippet-6 { bottom: 20%; right: 8%; animation-delay: 10s; }

@keyframes float-code {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-20px) rotate(2deg); opacity: 0.6; } }

.tech-connection-lines {
  position: absolute;
  width: 100%;
  height: 100%; }

.tech-svg {
  width: 100%;
  height: 100%; }

.tech-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-path 8s ease-in-out infinite; }

.tech-path:nth-child(1) { animation-delay: 0s; }
.tech-path:nth-child(2) { animation-delay: 2s; }
.tech-path:nth-child(3) { animation-delay: 4s; }

@keyframes draw-path {
  0% { stroke-dashoffset: 1000; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -1000; } }

/* Tech Badge */
.tech-badge {
  display: inline-block;
  position: relative; }

.badge-text {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 16px;
  border: 1px solid var(--primary-color);
  border-radius: 20px;
  background: rgba(61, 200, 184, 0.1);
  position: relative;
  z-index: 2; }

.badge-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, var(--primary-color), #00d4ff);
  border-radius: 22px;
  z-index: 1;
  opacity: 0;
  animation: badge-pulse 2s ease-in-out infinite; }

@keyframes badge-pulse {
  0%, 100% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(1.05); } }

/* Tech Highlight - Removed conflicting transparent text styles */
.tech-highlight {
  position: relative; }

.tech-description {
  color: var(--base-color);
  font-size: 16px;
  line-height: 1.6; }

/* Tech Stats */
.tech-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px; }

.stat-item {
  text-align: center; }

.stat-number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1; }

.stat-label {
  font-size: 12px;
  color: var(--base-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px; }

/* Category Header */
.tech-category {
  margin-bottom: 60px;
  position: relative;
  z-index: 2; }

.category-header {
  margin-bottom: 40px; }
  .category-header .category-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block; }
    .category-header .category-title:after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary-color), #00d4ff);
      border-radius: 2px; }
  .category-header p {
    color: var(--base-color);
    font-size: 16px;
    margin: 0; }

/* Enhanced Tech Item */
.tech-item {
  text-align: center;
  padding: 25px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px); }
  .tech-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(61, 200, 184, 0.1), transparent);
    transition: left 0.5s ease; }
  .tech-item:hover:before {
    left: 100%; }
  .tech-item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px rgba(61, 200, 184, 0.3);
    background: rgba(255, 255, 255, 0.05); }

.tech-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
  position: relative;
  z-index: 2; }

.tech-status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-color);
  box-shadow: 0 0 10px var(--primary-color);
  animation: status-pulse 2s ease-in-out infinite; }

@keyframes status-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); } }

.tech-icon {
  position: relative;
  z-index: 2; }
  .tech-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease; }
  .tech-icon i {
    font-size: 50px;
    color: var(--primary-color);
    transition: all 0.3s ease; }
  .tech-item:hover .tech-icon img {
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(170deg);
    transform: scale(1.1) rotate(5deg); }
  .tech-item:hover .tech-icon i {
    color: #00d4ff;
    transform: scale(1.1) rotate(5deg); }

.tech-info {
  margin-bottom: 15px;
  position: relative;
  z-index: 2; }
  .tech-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px; }

.tech-tags {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex-wrap: wrap; }

.tech-tag {
  font-size: 10px;
  color: var(--base-color);
  background: rgba(255, 255, 255, 0.1);
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1); }

.tech-level {
  margin-bottom: 15px;
  position: relative;
  z-index: 2; }
  .tech-level .level-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 6px; }
  .tech-level .level-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #00d4ff);
    border-radius: 2px;
    width: 0;
    transition: width 1.5s ease 0.5s;
    position: relative; }
    .tech-level .level-fill:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 20px;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
      animation: shimmer 2s ease-in-out infinite; }
  .tech-level .level-fill[data-level="95"] {
    width: 95%; }
  .tech-level .level-fill[data-level="90"] {
    width: 90%; }
  .tech-level .level-fill[data-level="85"] {
    width: 85%; }
  .tech-level .level-fill[data-level="80"] {
    width: 80%; }
  .tech-level .level-fill[data-level="75"] {
    width: 75%; }
  .tech-level .level-fill[data-level="70"] {
    width: 70%; }
  .tech-level .level-fill[data-level="60"] {
    width: 60%; }
  .tech-level .level-text {
    font-size: 10px;
    color: var(--base-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px; }

@keyframes shimmer {
  0% { transform: translateX(-20px); }
  100% { transform: translateX(20px); } }

.tech-code-preview {
  position: relative;
  z-index: 2;
  margin-top: 10px; }
  .tech-code-preview code {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--base-color);
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    opacity: 0.7;
    transition: all 0.3s ease; }
  .tech-item:hover .tech-code-preview code {
    opacity: 1;
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(61, 200, 184, 0.1); }

.tech-cta {
  margin-top: 50px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2; }
  .tech-cta h4 {
    font-size: 24px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 30px; }
  .tech-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; }
    @media only screen and (max-width: 767px) {
      .tech-cta .cta-buttons {
        flex-direction: column;
        align-items: center; } }

/* Responsive Design for Technology Stack */
@media only screen and (max-width: 1199px) {
  .tech-item {
    padding: 25px 15px; }
  .category-header .category-title {
    font-size: 24px; }
  .tech-stats {
    gap: 30px; }
  .stat-number {
    font-size: 20px; } }

@media only screen and (max-width: 991px) {
  .tech-category {
    margin-bottom: 40px; }
  .category-header {
    margin-bottom: 30px; }
  .tech-item {
    padding: 20px 15px; }
  .tech-item .tech-icon img,
  .tech-item .tech-icon i {
    width: 45px;
    height: 45px;
    font-size: 45px; }
  .tech-stats {
    gap: 20px; }
  .stat-number {
    font-size: 18px; }
  .tech-description {
    font-size: 14px; } }

@media only screen and (max-width: 767px) {
  .tech-item {
    margin-bottom: 20px; }
  .tech-item .tech-icon img,
  .tech-item .tech-icon i {
    width: 40px;
    height: 40px;
    font-size: 40px; }
  .tech-info h5 {
    font-size: 14px; }
  .tech-cta {
    padding: 30px 20px; }
  .tech-cta h4 {
    font-size: 20px; }
  .tech-stats {
    flex-direction: column;
    gap: 15px; }
  .stat-item {
    display: flex;
    justify-content: space-between;
    align-items: center; }
  .stat-number {
    font-size: 16px; }
  .stat-label {
    font-size: 11px; }
  .category-header .category-title {
    font-size: 20px; }
  .code-snippet {
    font-size: 10px;
    padding: 6px 10px; } }

@media only screen and (max-width: 575px) {
  .tech-item {
    padding: 15px 10px; }
  .tech-tags {
    gap: 2px; }
  .tech-tag {
    font-size: 8px;
    padding: 1px 4px; }
  .tech-code-preview code {
    font-size: 8px;
    padding: 2px 6px; }
  .badge-text {
    font-size: 10px;
    padding: 6px 12px; }
  .tech-description {
    font-size: 13px; } }

/* Showcase Page Styles */
.showcase-intro-area {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 20px;
    color: #00ff88;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 20px;
}

.project-badge i {
    font-size: 12px;
}

.open-source-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    border-radius: 12px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 8px;
}

.open-source-badge::before {
    content: "🔓";
    font-size: 8px;
}

.project-showcase-content h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.project-description {
    color: #c9d1d9;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.project-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #c9d1d9;
    font-size: 14px;
}

.feature-item i {
    color: #00ff88;
    font-size: 14px;
}

.tech-stack {
    margin-bottom: 30px;
}

.tech-stack h6 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: #c9d1d9;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.project-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.project-showcase-image {
    position: relative;
}

.image-gallery {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-gallery .main-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.image-gallery:hover .main-image {
    transform: scale(1.05);
}

.overlay-image {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    border: 2px solid #00ff88;
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

/* Project Cards */
.project-card {
    margin-bottom: 30px;
}

.project-card-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.project-card-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.project-card-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 255, 136, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.project-card-image:hover .project-overlay {
    opacity: 1;
}

.project-info {
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.project-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-info p {
    font-size: 14px;
    color: #c9d1d9;
    margin-bottom: 15px;
}

.project-tech {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-badge {
    padding: 4px 8px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    color: #00ff88;
    font-size: 10px;
    font-weight: 500;
}

/* Research & Development */
.research-steps {
    margin-top: 40px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
}

.step-content h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.step-content p {
    color: #c9d1d9;
    font-size: 14px;
    line-height: 1.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(0, 255, 136, 0.05);
    border-color: rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #000000;
    font-size: 24px;
}

.stat-content h3 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-content p {
    color: #c9d1d9;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 991px) {
    .project-showcase-content h2 {
        font-size: 28px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-links {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .project-showcase-content h2 {
        font-size: 24px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
    }
    
    .tech-tags {
        justify-content: center;
    }
}

/* Project-Specific Tech Styles */

/* Business Tech Style */
.business-tech-style {
    background: linear-gradient(135deg, rgba(0, 100, 200, 0.05) 0%, rgba(0, 150, 255, 0.02) 100%);
    border: 1px solid rgba(0, 150, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.business-badge {
    background: linear-gradient(135deg, #0066cc, #0099ff);
    color: #ffffff;
}

.business-tag {
    background: rgba(0, 150, 255, 0.1);
    border-color: rgba(0, 150, 255, 0.3);
    color: #0099ff;
}

.business-btn {
    background: linear-gradient(135deg, #0066cc, #0099ff);
    color: #ffffff;
}

.tech-frame {
    background: #1a1a2e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 150, 255, 0.2);
}

.frame-header {
    background: #2a2a3e;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.frame-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.frame-title {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.frame-content {
    position: relative;
}

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.data-flow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
}

.flow-line {
    position: absolute;
    background: linear-gradient(90deg, #0099ff, #00ff88);
    height: 2px;
    animation: dataFlow 2s ease-in-out infinite;
}

.flow-line:nth-child(1) {
    top: 10px;
    width: 40px;
    animation-delay: 0s;
}

.flow-line:nth-child(2) {
    top: 30px;
    width: 30px;
    animation-delay: 0.5s;
}

.flow-line:nth-child(3) {
    top: 50px;
    width: 50px;
    animation-delay: 1s;
}

@keyframes dataFlow {
    0%, 100% { opacity: 0.3; transform: scaleX(0.5); }
    50% { opacity: 1; transform: scaleX(1); }
}

/* Engineering Tech Style */
.engineering-tech-style {
    background: linear-gradient(135deg, rgba(255, 100, 0, 0.05) 0%, rgba(255, 150, 0, 0.02) 100%);
    border: 1px solid rgba(255, 150, 0, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.engineering-badge {
    background: linear-gradient(135deg, #ff6400, #ff9600);
    color: #ffffff;
}

.engineering-tag {
    background: rgba(255, 150, 0, 0.1);
    border-color: rgba(255, 150, 0, 0.3);
    color: #ff9600;
}

.engineering-btn {
    background: linear-gradient(135deg, #ff6400, #ff9600);
    color: #ffffff;
}

.engineering-frame {
    background: #1a1a2e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 150, 0, 0.2);
    position: relative;
}

.circuit-board {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.circuit-line {
    position: absolute;
    background: #ff9600;
    opacity: 0.3;
}

.circuit-line.horizontal {
    width: 100%;
    height: 2px;
    top: 30%;
    animation: circuitPulse 3s ease-in-out infinite;
}

.circuit-line.vertical {
    width: 2px;
    height: 100%;
    left: 70%;
    animation: circuitPulse 3s ease-in-out infinite 1.5s;
}

.circuit-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff9600;
    border-radius: 50%;
    animation: nodeGlow 2s ease-in-out infinite;
}

.node-1 { top: 25%; left: 20%; }
.node-2 { top: 60%; right: 20%; }
.node-3 { bottom: 20%; left: 50%; }

@keyframes circuitPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes nodeGlow {
    0%, 100% { box-shadow: 0 0 5px #ff9600; }
    50% { box-shadow: 0 0 15px #ff9600; }
}

.data-visualization {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 4px;
    align-items: end;
    height: 40px;
}

.chart-bar {
    width: 8px;
    background: linear-gradient(to top, #ff6400, #ff9600);
    border-radius: 2px;
    animation: barGrow 2s ease-out infinite;
}

.chart-bar:nth-child(1) { animation-delay: 0s; }
.chart-bar:nth-child(2) { animation-delay: 0.2s; }
.chart-bar:nth-child(3) { animation-delay: 0.4s; }
.chart-bar:nth-child(4) { animation-delay: 0.6s; }

@keyframes barGrow {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

/* Developer Tech Style */
.developer-tech-style {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.05) 0%, rgba(0, 200, 100, 0.02) 100%);
    border: 1px solid rgba(0, 255, 136, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.developer-badge {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000000;
}

.developer-tag {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.developer-btn {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000000;
}

.code-terminal {
    background: #0d1117;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.2);
    font-family: 'Monaco', 'Menlo', monospace;
}

.terminal-header {
    background: #21262d;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.btn {
    width: 12px;
    height: 12px;
    border-radius: 0;
    border: none;
    outline: none;
    display: block;
    flex-shrink: 0;
    box-sizing: border-box;
    min-width: 12px;
    min-height: 12px;
}

.btn.red { background: #ff5f56; }
.btn.yellow { background: #ffbd2e; }
.btn.green { background: #27ca3f; }

.terminal-title {
    color: #58a6ff;
    font-size: 14px;
    font-weight: 500;
}

.terminal-body {
    padding: 20px;
    color: #c9d1d9;
    font-size: 14px;
    line-height: 1.6;
}

.terminal-image-container {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
    box-shadow: 0 4px 12px rgba(0, 255, 136, 0.1);
    height: 100%;
    position: relative;
}

.terminal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.terminal-image-container:hover .terminal-image {
    transform: scale(1.02);
}

/* Terminal body for image-only display */
.code-terminal .terminal-body {
    padding: 20px;
    height: 250px;
}

/* ==========================================
   TECHNOLOGY SHOWCASE - READY FOR NEW CONTENT
   ========================================== */

.code-line {
    margin-bottom: 8px;
}

.code-keyword { color: #ff7b72; }
.code-variable { color: #79c0ff; }
.code-string { color: #a5d6ff; }
.code-function { color: #d2a8ff; }

.cursor-blink {
    display: inline-block;
    animation: blink 1s infinite;
    color: #00ff88;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Creative Tech Style */
.creative-tech-style {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.05) 0%, rgba(255, 165, 0, 0.02) 100%);
    border: 1px solid rgba(255, 107, 107, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.creative-badge {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: #ffffff;
}

.creative-tag {
    background: rgba(255, 107, 107, 0.1);
    border-color: rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.creative-btn {
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    color: #ffffff;
}

.creative-frame {
    background: #1a1a2e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
    position: relative;
}

.color-palette {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.color-swatch {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: colorPulse 3s ease-in-out infinite;
}

.color-swatch:nth-child(1) { animation-delay: 0s; }
.color-swatch:nth-child(2) { animation-delay: 0.5s; }
.color-swatch:nth-child(3) { animation-delay: 1s; }
.color-swatch:nth-child(4) { animation-delay: 1.5s; }
.color-swatch:nth-child(5) { animation-delay: 2s; }

@keyframes colorPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.creative-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.brush-stroke {
    position: absolute;
    background: linear-gradient(45deg, rgba(255, 107, 107, 0.3), rgba(255, 165, 0, 0.3));
    border-radius: 50px;
    animation: brushMove 4s ease-in-out infinite;
}

.brush-stroke:nth-child(1) {
    width: 60px;
    height: 8px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.brush-stroke:nth-child(2) {
    width: 40px;
    height: 6px;
    bottom: 30%;
    left: 15%;
    animation-delay: 1.5s;
}

.brush-stroke:nth-child(3) {
    width: 80px;
    height: 10px;
    top: 60%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes brushMove {
    0%, 100% { transform: translateX(0) rotate(0deg); opacity: 0.3; }
    50% { transform: translateX(20px) rotate(15deg); opacity: 0.8; }
}

/* Gaming Tech Style */
.gaming-tech-style {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.05) 0%, rgba(255, 107, 107, 0.02) 100%);
    border: 1px solid rgba(108, 92, 231, 0.1);
    border-radius: 20px;
    padding: 30px;
}

.gaming-badge {
    background: linear-gradient(135deg, #6c5ce7, #ff6b6b);
    color: #ffffff;
}

.gaming-tag {
    background: rgba(108, 92, 231, 0.1);
    border-color: rgba(108, 92, 231, 0.3);
    color: #6c5ce7;
}

.gaming-btn {
    background: linear-gradient(135deg, #6c5ce7, #ff6b6b);
    color: #ffffff;
}

.gaming-frame {
    background: #1a1a2e;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(108, 92, 231, 0.2);
    position: relative;
}

.game-ui {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ui-element {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 8px;
    padding: 8px 12px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

.health-bar {
    width: 80px;
    height: 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    padding: 0;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #ffa500);
    border-radius: 4px;
    animation: healthPulse 2s ease-in-out infinite;
}

@keyframes healthPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.score, .level {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.score-value, .level-value {
    color: #6c5ce7;
    font-size: 14px;
}

.gaming-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #6c5ce7;
    border-radius: 50%;
    animation: particleFloat 3s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 1.5s;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
    50% { transform: translateY(-20px) scale(1.5); opacity: 1; }
}

/* Project Headers and Status */
.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.project-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #c9d1d9;
    font-size: 12px;
    font-weight: 500;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: statusPulse 2s ease-in-out infinite;
}

.status-indicator.active { background: #00ff88; }
.status-indicator.processing { background: #ff9600; }
.status-indicator.contributing { background: #00ff88; }
.status-indicator.creative { background: #ff6b6b; }
.status-indicator.gaming { background: #6c5ce7; }

@keyframes statusPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}


/* Responsive Design for Tech Styles */
@media (max-width: 991px) {
    .project-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

@media (max-width: 767px) {
    .business-tech-style, .engineering-tech-style, .developer-tech-style, 
    .creative-tech-style, .gaming-tech-style {
        padding: 20px;
    }
    
    .tech-frame, .engineering-frame, .code-terminal, .creative-frame, .gaming-frame {
        margin-top: 20px;
    }
}

/* Tech Projects Page Styles */
.tech-stats-grid {
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #fff;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #00ff88;
    margin-bottom: 10px;
}

.stat-label {
    color: #fff;
    font-size: 14px;
    margin: 0;
}

/* Project Items */
.project-item {
    margin-bottom: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.project-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.project-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.project-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.project-description {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.tech-stack h5,
.project-features h5 {
    color: #00ff88;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tech-tag {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    margin-bottom: 10px;
    font-size: 14px;
}

.feature-list li i {
    color: #00ff88;
    font-size: 12px;
}

.project-status {
    margin-top: 30px;
    display: grid;
    grid-template-rows: auto auto auto auto;
    grid-gap: 12px;
    width: 100%;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    grid-row: 1;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #666;
    flex-shrink: 0;
}

.status-dot.active {
    background: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.status-dot.research {
    background: #ffbd2e;
    box-shadow: 0 0 10px rgba(255, 189, 46, 0.5);
}

.status-indicator span {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    grid-row: 2;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00ff88, #00d4ff);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-text {
    color: #ccc;
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    grid-row: 3;
}

/* GitHub Link Styles */
.project-status .github-link {
    grid-row: 4;
    margin: 0;
}

.project-status .github-link .github-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    background: linear-gradient(135deg, #24292e, #1a1e22) !important;
    color: #fff !important;
    padding: 10px 16px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    cursor: pointer !important;
}

.project-status .github-link .github-btn:hover {
    background: linear-gradient(135deg, #2d3339, #21262d) !important;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(0, 255, 136, 0.3) !important;
}

.project-status .github-link .github-btn i {
    font-size: 16px !important;
    color: #00ff88 !important;
}

.project-status .github-link .github-btn span {
    font-family: 'Courier New', monospace !important;
    color: #fff !important;
}

/* Code Terminal Large */
.code-terminal-large {
    background: #1a1a2e;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.terminal-header {
    background: #16213e;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.terminal-buttons {
    display: flex;
    gap: 8px;
}

.terminal-buttons .btn {
    width: 12px;
    height: 12px;
    border-radius: 0;
    border: none;
    outline: none;
    display: block;
    flex-shrink: 0;
    box-sizing: border-box;
    min-width: 12px;
    min-height: 12px;
}

.terminal-buttons .btn.red { background: #ff5f56; }
.terminal-buttons .btn.yellow { background: #ffbd2e; }
.terminal-buttons .btn.green { background: #28ca3f; }

.terminal-title {
    color: #8b949e;
    font-size: 12px;
    font-family: 'Courier New', monospace;
}

.terminal-body {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    color: #c9d1d9;
}

.code-line {
    margin-bottom: 8px;
}

.code-keyword {
    color: #ff7b72;
    font-weight: 600;
}

.code-variable {
    color: #79c0ff;
}

.code-string {
    color: #a5d6ff;
}

.code-property {
    color: #ffa657;
}

.code-function {
    color: #d2a8ff;
}

.code-class {
    color: #ffa657;
}

.code-comment {
    color: #7d8590;
    font-style: italic;
}

.project-image {
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 136, 0.2);
}

.project-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Development Process */
.process-timeline {
    position: relative;
}

/* Showcase page process steps */
.development-process-area .process-step {
    text-align: center;
    padding: 30px 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
}

/* Showcase page step icons */
.development-process-area .step-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid rgba(0, 255, 136, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #00ff88;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* Showcase page hover effects */
.development-process-area .process-step:hover .step-icon {
    background: rgba(0, 255, 136, 0.2);
    border-color: rgba(0, 255, 136, 0.5);
    transform: scale(1.1);
}

/* Showcase page step content */
.development-process-area .step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.development-process-area .step-content h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 0;
}

.development-process-area .step-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Tech Projects Responsive Design */
@media only screen and (max-width: 991px) {
  .project-item {
    padding: 30px 20px;
    margin-bottom: 60px;
  }
  
  .project-title {
    font-size: 28px;
  }
  
  .stat-item {
    padding: 25px 15px;
    margin-bottom: 30px;
  }
  
  .stat-number {
    font-size: 30px;
  }
  
  .code-terminal-large {
    margin-bottom: 30px;
  }
  
  .terminal-body {
    padding: 15px;
    font-size: 12px;
  }
  
  .process-step {
    padding: 20px 15px;
    margin-bottom: 30px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .status-indicator span {
    font-size: 13px;
  }
  
  .progress-text {
    font-size: 11px;
  }
}

@media only screen and (max-width: 767px) {
  .project-item {
    padding: 20px 15px;
  }
  
  .project-title {
    font-size: 24px;
  }
  
  .tech-tags {
    gap: 8px;
  }
  
  .tech-tag {
    font-size: 11px;
    padding: 4px 8px;
  }
  
  .stat-item {
    padding: 20px 10px;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .stat-number {
    font-size: 24px;
  }
  
  .terminal-body {
    padding: 12px;
    font-size: 11px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .step-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/* Services Page Styles */
.service-stats-grid {
    margin-bottom: 60px;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
}

.service-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.service-description {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.service-features h5,
.tech-stack h5 {
    color: #00ff88;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-process h5 {
    color: #00ff88;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    margin: 0;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-content h6 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 0;
}

.step-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

/* Security Section */
.security-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.security-item:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
}

.security-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
}

.security-content h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.security-content p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.security-feature-list h5 {
    color: #00ff88;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Technology Highlights */
.tech-highlight {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 136, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

/* Ensure Innovation & Performance section text is visible */
.services-overview-area .section-title h2 {
    color: #fff !important;
}

.services-overview-area .section-title p {
    color: #ccc !important;
}

.tech-highlight:hover {
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-5px);
}

.tech-highlight .tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    flex-shrink: 0;
}

.tech-content h4 {
    color: #fff !important;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tech-content p {
    color: #ccc !important;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-features li {
    color: #fff;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.tech-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00ff88;
    font-weight: bold;
}

/* CTA Section */
.cta-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00ff88, #00d4ff);
    color: #000;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.theme-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    color: #000;
    text-decoration: none;
}

.theme-btn.style-two {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00ff88;
}

.theme-btn.style-two:hover {
    background: #00ff88;
    color: #000;
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
}

/* ===========================================
   PRICING PAGE STYLES
   =========================================== */

/* Currency Toggle */
.currency-toggle-area {
  background: #131313;
}

.currency-toggle-wrapper {
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.currency-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.currency-label {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #3dc8b8, #00d4ff);
  transition: 0.4s;
  border-radius: 30px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .toggle-slider:before {
  transform: translateX(30px);
}

.currency-note {
  color: #ccc;
  font-size: 14px;
  margin: 0;
}

/* Pricing Stats */
.pricing-stats-grid {
  margin-bottom: 60px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #000;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.stat-label {
  color: #ccc;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Service Badge */
.service-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(61, 200, 184, 0.1);
  color: #3dc8b8;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(61, 200, 184, 0.3);
}

.service-badge i {
  font-size: 16px;
}

/* Pricing Items */
.pricing-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 255, 136, 0.15);
  border-color: rgba(0, 255, 136, 0.3);
}

.pricing-item.featured {
  border: 2px solid #00ff88;
  transform: scale(1.05);
}

.pricing-item.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  color: #000;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: #000;
}

.pricing-header h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.pricing-header p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
}

.pricing-price {
  margin-bottom: 30px;
}

.price-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.price-amount .currency {
  font-size: 24px;
  color: #00ff88;
  font-weight: 600;
}

.price-amount .amount {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
}

.price-amount .period {
  font-size: 16px;
  color: #ccc;
  font-weight: 400;
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 30px;
}

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

.pricing-features li {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: #00ff88;
  font-size: 12px;
  width: 16px;
  text-align: center;
}

.pricing-footer {
  margin-top: auto;
}

/* Additional Services */
.additional-service-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.additional-service-item:hover {
  transform: translateX(10px);
  box-shadow: 0 20px 40px rgba(0, 255, 136, 0.1);
}

.additional-service-item .service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #000;
  flex-shrink: 0;
}

.additional-service-item .service-content h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.additional-service-item .service-content p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.service-price {
  color: #00ff88;
  font-size: 16px;
  font-weight: 600;
}

/* FAQ Accordion */
.faq-accordion {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-item {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  background: transparent;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 20px;
  border: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  background: rgba(0, 0, 0, 0.3);
  color: #ccc;
  font-size: 14px;
  line-height: 1.6;
  padding: 20px;
}

/* Pricing CTA */
.pricing-cta {
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.1), rgba(0, 212, 255, 0.1));
}

/* ===========================================
   HIDDEN SIDEBAR FEATURED PROJECT
   =========================================== */

.featured-project {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.project-preview {
  text-align: center;
}

.project-image img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.project-image img:hover {
  transform: scale(1.02);
}

.project-info h5 {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.project-info p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00ff88, #00d4ff);
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.project-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
  color: #000;
  text-decoration: none;
}

.project-link i {
  font-size: 12px;
}

/* ===========================================
   PRODUCTIVITY TASK PROJECT STYLING
   =========================================== */

.productivity-task-area {
  background: linear-gradient(135deg, rgba(0, 206, 209, 0.1), rgba(0, 191, 255, 0.1));
  position: relative;
}

.productivity-task-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 206, 209, 0.05), rgba(0, 191, 255, 0.05));
  z-index: -1;
}

.productivity-task-area .section-title h2 span {
  background: linear-gradient(135deg, #00ced1, #00bfff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.productivity-task-area .feature-icon {
  background: linear-gradient(135deg, #00ced1, #00bfff);
  color: #fff;
}

.productivity-task-area .tech-tag {
  background: linear-gradient(135deg, #00ced1, #00bfff);
  color: #fff;
  border: none;
}

.productivity-task-area .benefit-tag {
  background: rgba(0, 206, 209, 0.1);
  color: #00ced1;
  border: 1px solid rgba(0, 206, 209, 0.3);
}

.productivity-task-area .theme-btn {
  background: linear-gradient(135deg, #00ced1, #00bfff);
  color: #fff;
  border: none;
}

.productivity-task-area .theme-btn:hover {
  background: linear-gradient(135deg, #00b8b8, #0099cc);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
}

.productivity-task-area .project-image-wrapper::before {
  background: linear-gradient(135deg, rgba(0, 206, 209, 0.1), rgba(0, 191, 255, 0.1));
}

.productivity-task-area .floating-icon {
  background: transparent;
  color: #00ced1;
  border: 2px solid rgba(0, 206, 209, 0.3);
  box-shadow: 0 5px 15px rgba(0, 206, 209, 0.2);
}

.productivity-task-area .overlay-content h4 {
  color: #00ced1;
}

.productivity-task-area .overlay-stats .stat {
  background: rgba(0, 206, 209, 0.1);
  color: #00ced1;
  border: 1px solid rgba(0, 206, 209, 0.3);
}

/* ===========================================
   FOOTER ENHANCEMENTS - MOVED TO MAIN FOOTER SECTION
   =========================================== */

/* Footer Responsive */
@media only screen and (max-width: 991px) {
  .footer-description {
    margin-top: 15px;
    margin-bottom: 15px;
  }
  
  .footer-description p {
    font-size: 13px;
  }
  
  .location-badge {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  .widget_services li {
    font-size: 13px;
    margin-bottom: 10px;
  }
  
  .social-links {
    gap: 10px;
  }
  
  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .footer-title {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .widget_nav_menu ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

/* Services Page Responsive Design */
@media only screen and (max-width: 991px) {
  .service-title {
    font-size: 28px;
  }
  
  .process-steps {
    gap: 15px;
  }
  
  .process-step {
    padding: 15px;
    gap: 15px;
  }
  
  .step-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  /* Pricing Responsive */
  .pricing-item.featured {
    transform: none;
  }
  
  .pricing-item.featured:hover {
    transform: translateY(-10px);
  }
  
  .additional-service-item {
    flex-direction: column;
    text-align: center;
  }
  
  .additional-service-item:hover {
    transform: translateY(-5px);
  }
  
  .price-amount .amount {
    font-size: 36px;
  }
  
  .pricing-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .tech-highlight {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .cta-content h2 {
    font-size: 28px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media only screen and (max-width: 767px) {
  .service-title {
    font-size: 24px;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .security-item {
    padding: 20px 15px;
    margin-bottom: 20px;
  }
  
  .security-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  
  .tech-highlight {
    padding: 15px;
  }
  
  .tech-highlight .tech-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .cta-content h2 {
    font-size: 24px;
  }
  
  .theme-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

