/*
* ----------------------------------------------------------------------------------------
Author       : Creativepersonal
Template Name: Monster - Personal Portfolio Template
Version      : 1.0
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL CSS STYLE
* 02.PRELOADER & BOUNCE CCS STYLE
* 03.HOMEPAGE CSS STYLE
    -LOGO CSS
    -MENU CSS
* 04.ABOUT CSS STYLE
* 05.SERVICE CSS STYLE
* 06.WORK CSS STYLE
* 07.AVAILABLE CSS STYLE
* 08.CONTACT CSS STYLE
* 09.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

/*
* ----------------------------------------------------------------------------------------
* 01.GLOBAL STYLE
* ----------------------------------------------------------------------------------------
*/

body {
  font-size: 14px;
  font-weight: 300;
  line-height: 24px;
  height: 100%;
  font-family: "Poppins", sans-serif;
  color: #232323;
}

html,
body {
  height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.4s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  color: #000;
}

img {
  width: 100%;
}

a:hover {
  color: #fff;
  text-decoration: none;
}

a:focus {
  outline: none;
  text-decoration: none;
}

p {
  line-height: 32px;
}

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

fieldset {
  border: 0 none;
  margin: 0 auto;
  padding: 0;
}

.no-padding {
  padding: 0;
}

.section-padding {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  position: relative;
  display: inline-block;
  font-size: 2.5em;
  font-weight: 900;
  margin-bottom: 24px;
  color: #232323;
}

.section-title h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 4px;
  background: #007bff;
  border-radius: 2px;
  margin: 12px auto 0 auto;
}

.section-title p {
  font-weight: 300;
}

/*
* ----------------------------------------------------------------------------------------
* 02.PRELOADER & BOUNCE CCS STYLE
* ----------------------------------------------------------------------------------------
*/

.preloader {
  background: #000;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 99999;
}

.status-mes {
  width: 45px;
  height: 45px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -22px 0 0 -22px;
  font-size: 10px;
  text-indent: -12345px;
  border-top: 8px solid #222;
  border-right: 8px solid #222;
  border-bottom: 8px solid #222;
  border-left: 8px solid #fff;
  border-radius: 50%;
  -webkit-animation: spinner 1000ms infinite linear;
  animation: spinner 1000ms infinite linear;
  z-index: 10000;
}

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

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

/*
* ----------------------------------------------------------------------------------------
* 03.HOMEPAGE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-area {
  height: 100%;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.welcome-image-area {
  position: relative;
  height: 100%;
  background: url(../images/bg/bg.png);
  background-size: cover;
  z-index: 1;
}

.welcome-image-area:after {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

.particle-bg {
  position: relative;
  height: 100%;
  background: url(../images/bg/bg2.jpg);
  background-size: cover;
  z-index: 1;
}

.particle-bg:after {
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

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

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

.header-text h1 {
  color: #fafafa;
  font-size: 80px;
  font-weight: 900;
  text-transform: capitalize;
}

.header-text .home-arrow-down {
  text-align: center;
  position: absolute;
  bottom: -210px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.header-text .home-arrow-down .btn {
  font-size: 30px;
}

.header-text .home-arrow-down .fa {
  color: #fafafa;
  display: inline-block;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-animation-name: home-arrow-down;
  animation-name: home-arrow-down;
  animation-duration: 2s;
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes home-arrow-down {
  from {
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  10% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
    filter: alpha(opacity=100);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  to {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

@keyframes home-arrow-down {
  from {
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, 0px, 0);
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
  10% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
    filter: alpha(opacity=100);
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  }
  to {
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    filter: alpha(opacity=0);
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  }
}

.header-top-area {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 999;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
}

.logo {
  padding-top: 28px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.logo a {
  display: block;
  color: #fff;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 30px;
  font-family: "Dancing Script", cursive;
}

.mainmenu .navbar-nav li a {
  color: #fff;
  font-size: 10px;
  padding: 30px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.mainmenu .navbar-nav li a:hover {
  background: none;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.nav li a:focus,
.nav li a:hover {
  background: none;
  color: #fff;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.navbar {
  margin: 0;
}

.menu-bg {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  background: #000;
}

.menu-bg .logo {
  padding-top: 18px;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.menu-bg .mainmenu .navbar-nav li a {
  color: #fff;
  padding: 20px 15px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.menu-bg .mainmenu .navbar-nav li a:hover {
  color: #fff;
}

/*
* ----------------------------------------------------------------------------------------
* DROPDOWN CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.mainmenu ul {
  list-style-type: none;
}

.mainmenu li ul.sub-menu,
.mainmenu ul li ul.sub-menu li ul.sub-menu {
  background: #000;
  left: 10px;
  opacity: 0;
  filter: alpha(opacity=0);
  position: absolute;
  top: 115%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  visibility: hidden;
  width: 120px;
  z-index: 999;
}

.mainmenu ul li ul.sub-menu li ul.sub-menu {
  top: 0;
  left: 100%;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.mainmenu ul li ul.sub-menu li {
  padding: 0;
  width: 100%;
}

.mainmenu ul li:hover ul.sub-menu {
  top: 100%;
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 999;
  visibility: visible;
}

.mainmenu ul.nav > li ul li:hover ul.sub-menu {
  opacity: 1;
  filter: alpha(opacity=100);
  visibility: visible;
}

.mainmenu ul li ul.sub-menu li a {
  color: #fff !important;
  cursor: pointer;
  display: block;
  padding: 8px 10px 12px 20px;
}

.mainmenu ul li ul.sub-menu li:last-child a {
  border-bottom: none;
}

.mainmenu ul li:hover ul.sub-menu li a:hover {
  text-decoration: none;
  background: #333;
  padding: 8px 10px 12px 20px;
}

/*
* ----------------------------------------------------------------------------------------
* VIDEO BACKGROUND CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.welcome-video-area {
  position: relative;
  height: 100%;
  background-size: cover;
  z-index: 1;
  background-position: center center;
}

.welcome-video-area:after {
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

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

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

/*
* ----------------------------------------------------------------------------------------
* 04.ABOUT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.about-image {
}

.about-text h2 {
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  color: #232323;
  letter-spacing: 2px;
  font-weight: 700;
}

.about-text p {
  font-weight: 300;
  margin-bottom: 30px;
}

.about-text ul li {
  width: 40%;
  float: left;
  margin-bottom: 25px;
  color: #a3a3a3;
  border-bottom: 1px dotted #ccc;
  display: inline-block;
  margin-right: 50px;
  padding-bottom: 10px;
}

/* --- About Me Skills and Quote Styles --- */
.about-skills-row {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin: 30px 0 24px 0;
}
.about-skill {
  flex: 1 1 0;
  min-width: 180px;
}
.about-skill h3 {
  font-size: 1.25em;
  font-weight: 700;
  margin-bottom: 6px;
  color: #232323;
}
.about-skill p {
  color: #555;
  font-size: 1em;
  margin-bottom: 0;
}
.about-quote {
  font-style: italic;
  color: #444;
  border-left: 3px solid #007bff;
  padding-left: 18px;
  margin: 0 0 32px 0;
  font-size: 1.08em;
  background: none;
}
.about-intro {
  font-size: 1.13em;
  color: #232323;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .about-skills-row {
    flex-direction: column;
    gap: 18px;
  }
}

/* --- About Me Actions Modern Styles (Button Flex Row) --- */
.about-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 40px;
}
.about-btn-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  width: 100%;
}
.about-btn {
  display: inline-block;
  min-width: 120px;
  min-height: 44px;
  padding: 16px 38px;
  font-size: 1.1em;
  font-weight: 600;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(123, 47, 242, 0.08);
  background-clip: padding-box;
  margin: 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.primary-btn {
  background: #7b2ff2;
  color: #fff;
}
.primary-btn:hover,
.primary-btn:focus {
  background: #5f22b8;
  color: #fff;
  outline: 2px solid #5f22b8;
  outline-offset: 2px;
}
.secondary-btn {
  background: #f5f5f7;
  color: #232323;
}
.secondary-btn:hover,
.secondary-btn:focus {
  background: #ececec;
  color: #7b2ff2;
  outline: 2px solid #7b2ff2;
  outline-offset: 2px;
}
@media (max-width: 767px) {
  .about-btn-row {
    flex-direction: column;
    gap: 10px;
  }
  .about-btn {
    width: 100%;
  }
}

.about-social-group {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  margin-left: 10px;
  position: static;
}

.about-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 44px;
  min-height: 44px;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #ececec;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  color: #7b2ff2;
  font-size: 1.5em;
  transition: box-shadow 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
  outline: none;
}

.about-social-icon:hover,
.about-social-icon:focus {
  box-shadow: 0 4px 16px rgba(123, 47, 242, 0.1);
  border-color: #7b2ff2;
  color: #5f22b8;
  outline: 2px solid #7b2ff2;
  outline-offset: 2px;
}

/*
* ----------------------------------------------------------------------------------------
* 05.SERVICE CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.service-area {
}

.single-service i {
  font-size: 40px;
  margin-bottom: 10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #f5f5f5;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  text-align: center;
  color: #1c1c1c;
  line-height: 80px;
  float: left;
  margin-right: 25px;
  margin-bottom: 50px;
}

.single-service h2 {
  font-size: 12px;
  text-transform: uppercase;
  margin: 20px 0px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #232323;
  letter-spacing: 2px;
  font-weight: 700;
}

.single-service p {
  color: #232323;
}

/*
* ----------------------------------------------------------------------------------------
* 06.WORK CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.work {
  background: #f7f7f7;
}

.work-inner .mix {
  display: none;
}

ul.work {
  padding: 0;
  list-style: none;
  text-align: center;
  margin-bottom: 30px;
}

ul.work li {
  display: inline-block;
  padding-bottom: 4px;
  margin: 0 8px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 300;
  color: #938d8d;
  border: none;
  cursor: pointer;
  font-size: 12px;
  border-bottom: 2px solid transparent;
}

ul.work li:hover {
  color: #000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

ul.work li.active {
  color: #000;
}

.work .item {
  padding: 0;
  margin: 0;
}

.work .col-md-4 {
  padding: 0;
  margin: 0;
}

.work figure.effect-ruby img {
  height: auto;
  width: 100%;
}

.work .grid figure {
  position: relative;
  float: left;
  overflow: hidden;
  min-width: 320px;
  max-width: 480px;
  max-height: 360px;
  width: 100%;
  height: auto;
  text-align: center;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.work .grid figure:hover {
  background: #000;
}

.work figure.effect-ruby h2 {
  margin-top: 20%;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  color: #fff;
}

.work figure.effect-ruby p {
  font-size: 14px;
  text-transform: capitalize;
  border: none;
  padding: 0;
  margin: 5px 0px;
}

.work figure.effect-ruby p strong {
  font-size: 16px;
  text-transform: uppercase;
  margin-right: 5px;
}

.work .item:hover figure.effect-ruby h2 {
  opacity: 1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*
* ----------------------------------------------------------------------------------------
* 07.TESTIMONIAL CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.testimonial-area {
  background: #f7f7f7;
}

.testimonial-list {
}

.single-testimonial h2 {
  font-size: 12px;
  text-transform: uppercase;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #232323;
  letter-spacing: 2px;
  font-weight: 700;
}

.single-testimonial h3 {
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 300;
  margin-top: 0;
}

.single-testimonial p {
  line-height: 25px;
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 5px;
  height: 5px;
  margin: 5px 7px;
  border-radius: 20px;
  background: #000;
}

/*
* ----------------------------------------------------------------------------------------
* 08.CONTACT CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.contact-me-area {
}

.form-control {
  display: block;
  border: 0px;
  width: 100%;
  height: 45px;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 1.42857143;
  color: #333;
  background-color: #f7f7f7;
  background-image: none;
  border-radius: 0px;
  box-shadow: none;
  margin-bottom: 25px;
}

.form-control:focus {
  border-color: #000;
  outline: 0;
  box-shadow: none;
}

.contact-form button.btn {
  display: inline-block;
  color: #fff;
  background: none;
  padding: 15px 25px;
  border: 1px solid #333;
  font-size: 14px;
  border-radius: 0px;
  font-weight: 300;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: #232323;
  text-transform: capitalize;
  border-radius: 30px;
}

.contact-form button.btn:hover {
  background: transparent;
  border: 1px solid #000;
  color: #000;
  -webkit-transition: all 0.4s;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.input-success,
.input-error {
  margin-bottom: 0;
  margin-top: 10px;
  border-radius: 4px;
  display: none;
}

.input-success {
  border: 1px solid #01b500;
}

.input-error {
  border: 1px solid #ff0000;
}

/*
* ----------------------------------------------------------------------------------------
* 09.FOOTER CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.footer-area {
  background: #f7f7f7;
  padding: 80px 0px;
}

.social-links ul {
  padding: 0;
  margin: 0;
}

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

.social-links ul li a {
  font-size: 18px;
  color: #222222;
  margin: 25px 10px;
  display: block;
}

.header-links ul {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 24px 0 0 0;
  padding: 0;
}

.header-links ul li {
  list-style: none;
}

.header-links ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 12px;
  border: 1.5px solid #ececec;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.06);
  color: #007bff;
  font-size: 1.5em;
  transition: box-shadow 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
  outline: none;
}

.header-links ul li a:hover,
.header-links ul li a:focus {
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.1);
  border-color: #007bff;
  color: #0056b3;
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  color: #232323;
  margin-bottom: 18px;
  letter-spacing: -1px;
  text-align: center;
}

@media (max-width: 767px) {
  .header-links ul li a {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
    border-radius: 10px;
  }
  .hero-title {
    font-size: 2rem;
  }
}

.footer-area p {
  margin-bottom: 0;
  font-size: 14px;
  color: #222222;
}

/*
* ----------------------------------------------------------------------------------------
* 17. BLOG PAGES DESIGN CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.blog-page-design-area {
  background: #000;
  padding-top: 150px;
  padding-bottom: 100px;
}

.blog-page-title-area h2 {
  color: #fff;
}

.single-blog-post {
  margin-bottom: 50px;
}

.single-blog-post h2 {
  font-size: 22px;
}

.single-blog-post a.read-more {
  background: #000;
  color: #fff;
  padding: 6px 20px;
  border: 1px solid #000;
}

.single-blog-post a.read-more:hover {
  background: transparent;
  color: #000;
  border: 1px solid #000;
}

.post-date {
  margin-bottom: 10px;
}

.post-date span {
  margin-right: 20px;
}

.post-date span i {
  margin-right: 5px;
  color: #333;
}

.single-blog-post p {
  font-size: 16px;
  margin-bottom: 20px;
}

.blog-carosel-control {
  position: absolute;
  top: 50%;
  color: #000;
  font-size: 30px;
  margin-top: -50px;
  background: #333;
  height: 100px;
  width: 25px;
  text-align: center;
  line-height: 99px;
}

.blog-carosel-control.right {
  right: 0px;
  left: auto;
}

.pagination {
  margin: 0;
}

ul.blog_pagination li a {
  border: 1px solid #e8e8e9;
  border-radius: 0 !important;
  color: #353535;
  font-family: roboto, sans-serif;
  font-size: 16px;
  height: 35px;
  line-height: 20px;
  margin: 5px;
  width: 35px;
}

.black-icon {
  background: #333 none repeat scroll 0 0 !important;
  color: #fff !important;
}

.black-icon:hover {
  background: #333 !important;
}

.black-icon i {
  font-size: 14px;
}

ul.blog_pagination li a:hover {
  color: #fff;
  background: #333;
  border: 1px solid #333;
}

.single-side-bar {
  margin-bottom: 40px;
  overflow: hidden;
}

.single-side-bar h2 {
  margin-bottom: 15px;
  font-size: 22px;
  margin-top: 0;
  text-transform: capitalize;
}

.single-side-bar input {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid #333;
  border-radius: 0;
  box-shadow: none;
  color: #e3e8f0;
  height: 50px;
  float: left;
}

.single-side-bar input:hover,
.single-side-bar input:focus {
  border: 1px solid #333;
  box-shadow: none;
  outline: 0 none;
}

.single-side-bar button {
  background: #333 none repeat scroll 0 0;
  border: 1px solid #333;
  color: #fff;
  height: 42px;
  padding: 0 32px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-side-bar button:hover {
  background: transparent;
  color: #000;
  border: 1px solid #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.single-side-bar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.single-side-bar ul li a {
  color: #767676;
  display: block;
  font-size: 14px;
  padding: 5px 0;
}

.single-side-bar ul li a span {
  float: right;
}

.single-side-bar ul li a:hover {
  color: #333;
}

.single-blog-social-icon {
  overflow: hidden;
  float: left;
  width: 177px;
  margin-bottom: 10px;
}

.single-blog-social-icon i {
  border: 1px solid #333;
  border-radius: 50px;
  float: left;
  font-size: 22px;
  height: 50px;
  line-height: 50px;
  margin-right: 15px;
  text-align: center;
  width: 50px;
}

.single-blog-social-icon .facebook {
  border: 1px solid #5d82d1;
  color: #5d82d1;
}

.single-blog-social-icon .twitter {
  border: 1px solid #00bff3;
  color: #00bff3;
}

.single-blog-social-icon .youtube {
  border: 1px solid #cb1d1f;
  color: #cb1d1f;
}

.single-blog-social-icon .youtube-play {
  border: 1px solid #cb1d1f;
  color: #cb1d1f;
}

.single-blog-social-icon .behance {
  border: 1px solid #0068ff;
  color: #0068ff;
}

.single-blog-social-icon .dribbble {
  border: 1px solid #ea4c8a;
  color: #ea4c8a;
}

.tag {
  overflow: hidden;
}

.tag a {
  color: #000;
  float: left;
  font-size: 14px;
  font-weight: 300;
  margin: 5px 7px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  padding: 5px 8px;
  border: 1px solid #333;
}

.tag a:hover {
  color: #000;
  border: 1px solid #333;
  background: transparent;
}

.single-blog-post-details blockquote {
  font-size: 16px;
  line-height: 28px;
}

.next-previews-button-design {
  margin-top: 40px;
  overflow: hidden;
}

.next-previews-button-design a {
  color: #000;
}

.post-comments-area {
  overflow: hidden;
  margin-top: 50px;
}

.post-comments-area h2 {
  margin-bottom: 20px;
}

.single-comment {
  overflow: hidden;
  margin-bottom: 60px;
}

.single-comment img {
  float: left;
  margin-right: 50px;
  margin-bottom: 80px;
  width: 100px;
  border-radius: 50%;
}

.single-comment h5 {
  font-weight: 700;
}

.single-comment p {
}

.single-comment a {
  color: #333;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.single-comment a:hover {
  color: #333;
}

.single-comment a i {
  font-size: 10px;
  background: #767676 none repeat scroll 0 0;
  color: #fff;
  padding: 5px;
  margin-right: 5px;
  border-radius: 30px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.single-comment a:hover i {
  background: #333 none repeat scroll 0 0;
  border-radius: 30px;
  color: #fff;
  font-size: 10px;
  padding: 5px;
}

.comment-form-area {
  margin-left: 150px;
}

.comment-form-area input {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid #e3e8f0;
  box-shadow: none;
  color: #333;
  height: 50px;
  border-radius: 0;
}

.comment-form-area input:hover,
.comment-form-area input:focus {
  border: 1px solid #333;
  box-shadow: none;
  outline: 0 none;
}

.comment-form-area textarea {
  background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
  border: 1px solid #e3e8f0;
  box-shadow: none;
  color: #333;
  height: 150px;
  border-radius: 0;
}

.comment-form-area textarea:hover,
.comment-form-area textarea:focus {
  border: 1px solid #333;
  box-shadow: none;
  outline: 0 none;
}

.comment-form-area button {
  background: #000 none repeat scroll 0 0;
  border: 1px solid #333;
  color: #fff;
  font-size: 16px;
  padding: 7px 10px;
  display: inline-block;
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 6px;
  height: 6px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #000;
}

/*
* ----------------------------------------------------------------------------------------
* PREVIEW CSS STYLE
* ----------------------------------------------------------------------------------------
*/

.preview-body {
  background: #fafafa;
}

.preview-single-image img {
  width: 100%;
}

.preview-single-image {
  -webkit-transition: 1s;
  transition: 1s;
  box-shadow: 1px 2px 2px 0px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.preview-single-image:hover {
  -webkit-transition: 1s;
  transition: 1s;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.preview-single-image h2 {
  font-size: 20px;
  text-align: center;
  color: #000;
  background: #fff;
  margin: 0;
  padding: 30px 20px;
}

.preview-header-top-area {
  padding: 50px 0px;
}

.preview-header-top-area h2 {
  font-size: 80px;
  color: #232323;
  text-transform: capitalize;
  font-weight: 900;
}

.preview-header-top-area p {
  color: #333;
  font-size: 30px;
  font-weight: 300;
}

.main h2 {
  color: #000;
}

.main {
  margin-bottom: 180px;
}

/* Technologies I Work With section modern grid styles */
.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  margin-left: -8px;
  margin-right: -8px;
}
.tech-card {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 16%;
  max-width: 16%;
}
.tech-icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f5f5f5;
  margin-bottom: 14px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.tech-card i {
  font-size: 40px;
  color: #007bff;
  transition: transform 0.3s;
}
.tech-card .tech-label {
  font-weight: 700;
  font-size: 1.1em;
  color: #232323;
  margin-top: 2px;
  letter-spacing: 0.01em;
}
.tech-card:hover .tech-icon-bg {
  box-shadow: 0 6px 24px rgba(0, 123, 255, 0.18);
  transform: scale(1.08);
}
.tech-card:hover i {
  transform: scale(1.12);
}
@media (max-width: 991px) {
  .tech-card {
    flex: 0 0 30%;
    max-width: 30%;
  }
}
@media (max-width: 767px) {
  .tech-card {
    flex: 0 0 48%;
    max-width: 48%;
  }
  .section-title h2 {
    font-size: 2em;
  }
}

.modern-contact-form {
  background: #fff;
  padding: 40px 32px 32px 32px;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(0, 123, 255, 0.08);
  margin-bottom: 32px;
}
.input-icon {
  position: relative;
  margin-bottom: 24px;
}
.input-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #007bff;
  font-size: 18px;
  z-index: 2;
}
.input-icon .form-control {
  padding-left: 44px;
}
.input-icon textarea.form-control {
  padding-left: 44px;
  padding-top: 14px;
}
@media (max-width: 767px) {
  .modern-contact-form {
    padding: 24px 8px 16px 8px;
    border-radius: 10px;
  }
  .input-icon i {
    left: 10px;
    font-size: 16px;
  }
  .input-icon .form-control {
    padding-left: 36px;
  }
}

.modern-contact-info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
  margin: 40px 0 32px 0;
  flex-wrap: wrap;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  margin-bottom: 24px;
}
.contact-info-item i {
  font-size: 2.2em;
  color: #007bff;
  margin-bottom: 10px;
}
.contact-info-label {
  font-weight: 700;
  color: #007bff;
  font-size: 1.1em;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.contact-info-value {
  color: #232323;
  font-size: 1em;
  font-weight: 400;
  word-break: break-word;
}
@media (max-width: 767px) {
  .modern-contact-info {
    flex-direction: column;
    gap: 18px;
    margin: 24px 0 16px 0;
  }
  .contact-info-item {
    min-width: 0;
  }
}

.modern-contact-info-cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  margin: 40px 0 32px 0;
}
.contact-card {
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  min-width: 180px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 0 12px 0;
  transition: none;
}
.contact-card:hover {
  box-shadow: none;
  transform: none;
}
.contact-icon-bg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #f5f5f5;
  margin-bottom: 18px;
  transition: none;
}
.contact-card i {
  font-size: 2em;
  color: #007bff;
}
.contact-info-label {
  font-weight: 700;
  color: #232323;
  font-size: 1.1em;
  margin-bottom: 4px;
  letter-spacing: 0.01em;
  text-align: center;
}
.contact-info-value {
  color: #6b7280;
  font-size: 1em;
  font-weight: 400;
  word-break: break-word;
  margin-top: 2px;
  text-align: center;
}
.contact-info-value a {
  color: #232323;
  text-decoration: none;
  word-break: break-all;
}
.contact-info-value a:hover {
  text-decoration: underline;
}
@media (max-width: 800px) {
  .modern-contact-info-cards {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .contact-card {
    width: 100%;
    max-width: 400px;
    min-width: 0;
  }
}

.minimal-footer {
  background: none;
  padding: 48px 0 32px 0;
  border-top: none;
}
.footer-social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin: 0 auto;
}
.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #f0f0f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  color: #6b7280;
  font-size: 2em;
  transition: box-shadow 0.2s, border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social-icon:hover {
  box-shadow: 0 4px 16px rgba(0, 123, 255, 0.1);
  border-color: #007bff;
  color: #007bff;
}
@media (max-width: 600px) {
  .footer-social-icons {
    gap: 16px;
  }
  .footer-social-icon {
    width: 44px;
    height: 44px;
    font-size: 1.4em;
    border-radius: 10px;
  }
}

/* Work Section Styles */
.section-tag {
  display: inline-block;
  font-size: 14px;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-weight: 600;
}

.section-subtitle {
  color: #64748b;
  font-size: 16px;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: transparent;
  border: 1px solid #e2e8f0;
  padding: 8px 24px;
  border-radius: 30px;
  color: #64748b;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: #6366f1;
  border-color: #6366f1;
  color: white;
}

.portfolio-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.portfolio-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.portfolio-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.05);
}

.portfolio-card-btns {
  display: flex;
  gap: 12px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.portfolio-card:hover .portfolio-card-btns {
  transform: translateY(0);
}

.card-btn {
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  border: 2px solid transparent;
}

/* Source Code button specific styles */
.card-btn:first-child {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  color: rgba(255, 255, 255, 0.9);
}

.card-btn:first-child:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Live Demo button specific styles */
.card-btn:last-child {
  background: rgba(255, 255, 255, 0.9);
  color: #111827;
}

.card-btn:last-child:hover {
  background: #6366f1;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Button hover effect */
.card-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%) scale(0);
  border-radius: 50%;
  transition: transform 0.4s ease;
  z-index: -1;
}

.card-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

/* Mobile optimization for buttons */
@media (max-width: 767px) {
  .portfolio-card-btns {
    flex-direction: column;
    gap: 10px;
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
  }

  .card-btn {
    width: 100%;
    justify-content: center;
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* Ensure proper button spacing in overlay */
.portfolio-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 24, 39, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
}

.portfolio-card:hover .portfolio-card-overlay {
  opacity: 1;
}

.portfolio-card-content {
  padding: 24px;
}

.project-category {
  font-size: 13px;
  color: #6366f1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-weight: 600;
}

.portfolio-card-content h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: #111827;
}

.portfolio-card-content p {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

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

.tech-stack span {
  background: #f1f5f9;
  color: #475569;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .portfolio-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 6px 16px;
    font-size: 13px;
  }

  .portfolio-card-content {
    padding: 20px;
  }

  .portfolio-card-content h3 {
    font-size: 18px;
  }

  .portfolio-card-content p {
    font-size: 14px;
  }

  .tech-stack span {
    font-size: 12px;
    padding: 3px 10px;
  }
}

/* Animation for MixItUp */
.portfolio-grid {
  min-height: 400px;
}

.mix {
  display: none;
}

.mix.mixitup-ready {
  display: block;
}

.mix.mixitup-showing {
  animation: fadeIn 0.5s ease forwards;
}

.mix.mixitup-hiding {
  animation: fadeOut 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* Portfolio Grid Layout */
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
  padding: 0 15px;
}

.portfolio-grid > [class*="col-"] {
  width: 100%;
  padding: 15px;
}

/* Container width adjustments */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .portfolio-grid > [class*="col-"] {
    width: 50%;
    max-width: 650px;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .container {
    max-width: 1140px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .portfolio-grid > [class*="col-"] {
    width: 50%;
    max-width: 570px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .portfolio-grid > [class*="col-"] {
    width: 50%;
    max-width: 480px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .portfolio-grid {
    margin: -10px;
  }

  .portfolio-grid > [class*="col-"] {
    width: 50%;
    padding: 10px;
    max-width: 360px;
  }
}

@media (max-width: 767px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .portfolio-grid {
    margin: -10px;
    flex-direction: column;
    align-items: center;
  }

  .portfolio-grid > [class*="col-"] {
    width: 100%;
    padding: 10px;
    max-width: 500px;
  }

  .portfolio-card-content {
    padding: 20px;
  }

  .portfolio-card-content h3 {
    font-size: 17px;
  }

  .portfolio-card-content p {
    font-size: 14px;
  }

  .tech-stack span {
    font-size: 12px;
    padding: 3px 10px;
  }
}

/* Filter buttons responsive */
@media (max-width: 576px) {
  .portfolio-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 6px 16px;
    font-size: 13px;
  }
}

/* Portfolio card improvements */
.portfolio-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.portfolio-card-img {
  position: relative;
  width: 100%;
  padding-top: 66.67%; /* Return to 3:2 Aspect Ratio for better card proportions */
}

.portfolio-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover .portfolio-card-img img {
  transform: scale(1.05);
}

.portfolio-card-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

/* Center grid container */
.work .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Ensure proper spacing */
.section-padding {
  padding: 80px 0;
}

@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }
}

@media (max-width: 767px) {
  .section-padding {
    padding: 50px 0;
  }
}

/* Ensure proper spacing between sections */
.work {
  overflow: hidden;
}

/* Fix for Safari flexbox gap */
@supports not (gap: 15px) {
  .portfolio-grid > [class*="col-"] {
    margin: 15px;
  }
}
