* {
  scroll-behavior: smooth;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #272829;
  overflow-x: hidden;
  line-height: 1.6;
}

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



a {
  color: #149ddd;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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



/*--------------------------------------------------------------*/

.gallery {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 5vw);
  grid-gap: 1.5rem; 
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; 
}

.gallery__item--1 {
  grid-column-start: 1;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 3;

  /** Alternative Syntax **/
  /* grid-column: 1 / span 2;  */
  /* grid-row: 1 / span 2; */
}

.gallery__item--2 {
  grid-column-start: 3;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 3;

  /** Alternative Syntax **/
  /* grid-column: 3 / span 2;  */
  /* grid-row: 1 / span 2; */
}

.gallery__item--3 {
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 1;
  grid-row-end: 6;

  /** Alternative Syntax **/
  /* grid-column: 5 / span 4;
  grid-row: 1 / span 5; */
}

.gallery__item--4 {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 3;
  grid-row-end: 6;

  /** Alternative Syntax **/
  /* grid-column: 1 / span 4;  */
  /* grid-row: 3 / span 3; */
}

.gallery__item--5 {
  grid-column-start: 1;
  grid-column-end: 5;
  grid-row-start: 6;
  grid-row-end: 9;

  /** Alternative Syntax **/
  /* grid-column: 1 / span 4; */
  /* grid-row: 6 / span 3; */
}

.gallery__item--6 {
  grid-column-start: 5;
  grid-column-end: 9;
  grid-row-start: 6;
  grid-row-end: 9;

  /** Alternative Syntax **/
  /* grid-column: 5 / span 4; */
  /* grid-row: 6 / span 3; */
}

/*--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  width: 45px;
  height: 45px;
  border-radius: 50px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #149ddd 0%, #2eafec 100%);
  color: #fff;
  transition: all 0.3s ease;
  z-index: 99999;
  box-shadow: 0 4px 15px rgba(20, 157, 221, 0.4);
}

.back-to-top i {
  font-size: 24px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.back-to-top:hover {
  color: #fff;
  background: linear-gradient(135deg, #2eafec 0%, #149ddd 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(20, 157, 221, 0.5);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  transition: all ease-in-out 0.5s;
  z-index: 9997;
  padding: 0 15px;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  overflow-y: auto;
  box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
}

#header::-webkit-scrollbar {
  width: 6px;
}

#header::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
}

#header::-webkit-scrollbar-thumb {
  background: rgba(20, 157, 221, 0.5);
  border-radius: 3px;
}

#header::-webkit-scrollbar-thumb:hover {
  background: rgba(20, 157, 221, 0.8);
}

#header .profile img {
  margin: 20px auto;
  display: block;
  width: 130px;
  border: 4px solid rgba(20, 157, 221, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#header .profile img:hover {
  transform: scale(1.05);
  border-color: #149ddd;
  box-shadow: 0 6px 25px rgba(20, 157, 221, 0.4);
}

#header .profile h1 {
  font-size: 26px;
  margin: 10px 0 0 0;
  padding: 0;
  font-weight: 600;
  -moz-text-align-last: center;
  text-align-last: center;
  font-family: "Poppins", sans-serif;
}

#header .profile h1 a, #header .profile h1 a:hover {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

#header .profile h1 a:hover {
  color: #149ddd;
}

#header .profile .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 38px;
  height: 38px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

#header .profile .social-links a:hover {
  background: linear-gradient(135deg, #149ddd 0%, #2eafec 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 5px 15px rgba(20, 157, 221, 0.4);
}

#main {
  margin-left: 300px;
}

@media (max-width: 1199px) {
  #header {
    left: -300px;
  }
  #main {
    margin-left: 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu {
  padding-top: 30px;
}

.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
}

.nav-menu a {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  padding: 14px 18px;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  font-size: 15px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: linear-gradient(135deg, #149ddd 0%, #2eafec 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.nav-menu a i {
  font-size: 24px;
  padding-right: 10px;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  text-decoration: none;
  color: #fff;
  background: rgba(20, 157, 221, 0.1);
  transform: translateX(5px);
}

.nav-menu a:hover::before, .nav-menu .active > a::before {
  transform: scaleY(1);
}

.nav-menu a:hover i, .nav-menu .active > a i, .nav-menu li:hover > a i {
  color: #149ddd;
  transform: scale(1.1);
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 9998;
  border: 0;
  background: linear-gradient(135deg, #149ddd 0%, #2eafec 100%);
  font-size: 24px;
  transition: all 0.4s ease;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(20, 157, 221, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 20px rgba(20, 157, 221, 0.5);
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active #header {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle {
  background: linear-gradient(135deg, #2eafec 0%, #149ddd 100%);
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg5.jpg") top center;
  background-size: cover;
}

#hero:before {
  content: "";
  background: rgba(5, 13, 24, 0.3);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

#hero .hero-container {
  position: relative;
  z-index: 2;
  min-width: 300px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 64px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero p {
  color: #fff;
  margin-bottom: 50px;
  font-size: 26px;
  font-family: "Poppins", sans-serif;
}

#hero p span {
  color: #fff;
  padding-bottom: 4px;
  letter-spacing: 1px;
  border-bottom: 3px solid #149ddd;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  
  .title h1 {
    font-size: 48px !important;
  }
  
  .section-title h2 {
    font-size: 26px;
  }
  
  .portfolio #portfolio-flters {
    padding: 6px 15px;
  }
  
  .portfolio #portfolio-flters li {
    padding: 8px 12px;
    font-size: 12px;
    margin: 3px;
  }
  
  .about img {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.section-bg {
  background: linear-gradient(135deg, #f5f8fd 0%, #e8f4f8 100%);
}

.section-title {
  padding-bottom: 30px;
}

.title h1 {
  font-size: 80px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  background: linear-gradient(135deg, #149ddd 0%, #2eafec 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}


.section-title h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #173b6c;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #149ddd 0%, #2eafec 100%);
  bottom: 0;
  left: 0;
  border-radius: 2px;
  animation: slideIn 0.6s ease;
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 50px;
  }
}

.section-title p {
  margin-bottom: 0;
  line-height: 1.8;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  color: #173b6c;
  margin-bottom: 15px;
}

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

.about .content ul li {
  padding-bottom: 12px;
  transition: all 0.3s ease;
  padding-left: 5px;
}

.about .content ul li:hover {
  padding-left: 10px;
  color: #149ddd;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 8px;
  color: #149ddd;
  transition: all 0.3s ease;
}

.about .content ul li:hover i {
  transform: scale(1.2);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about img {
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.about img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 35px rgba(20, 157, 221, 0.2);
}

/*--------------------------------------------------------------
# Facts
--------------------------------------------------------------*/
.facts {
  padding-bottom: 30px;
}

.facts .count-box {
  padding: 30px;
  width: 100%;
}

.facts .count-box i {
  display: block;
  font-size: 44px;
  color: #149ddd;
  float: left;
}

.facts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #050d18;
  margin-left: 60px;
}

.facts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #122f57;
}

.facts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #122f57;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.facts .count-box a:hover {
  color: #1f5297;
}

/*--------------------------------------------------------------
# Akills
--------------------------------------------------------------*/
.skills .progress {
  height: 55px;
  display: block;
  background: none;
  margin-bottom: 20px;
}

.skills .progress .skill {
  padding: 0;
  margin: 0 0 8px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  font-size: 14px;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
  font-weight: 700;
  color: #149ddd;
}

.skills .progress-bar-wrap {
  background: #e8f0f8;
  height: 12px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.skills .progress-bar {
  width: 1px;
  height: 12px;
  transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(90deg, #149ddd 0%, #2eafec 100%);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.skills .progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

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

/*--------------------------------------------------------------
# Resume
--------------------------------------------------------------*/
.resume .resume-title {
  font-size: 28px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 25px;
  color: #050d18;
  position: relative;
  padding-bottom: 10px;
}

.resume .resume-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #149ddd 0%, #2eafec 100%);
  border-radius: 2px;
}

.resume .resume-item {
  padding: 0 0 20px 28px;
  margin-top: -2px;
  border-left: 3px solid transparent;
  border-image: linear-gradient(180deg, #149ddd 0%, #2eafec 100%);
  border-image-slice: 1;
  position: relative;
  transition: all 0.3s ease;
}

.resume .resume-item:hover {
  padding-left: 32px;
}

.resume .resume-item h4 {
  line-height: 20px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #050d18;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.resume .resume-item:hover h4 {
  color: #149ddd;
}

.resume .resume-item h5 {
  font-size: 16px;
  background: linear-gradient(135deg, #e4edf9 0%, #d8e8f7 100%);
  padding: 6px 16px;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(20, 157, 221, 0.1);
}

.resume .resume-item ul {
  padding-left: 20px;
}

.resume .resume-item ul li {
  padding-bottom: 12px;
  line-height: 1.6;
}

.resume .resume-item:last-child {
  padding-bottom: 0;
}

.resume .resume-item::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50px;
  left: -11px;
  top: 0;
  background: #fff;
  border: 3px solid #149ddd;
  box-shadow: 0 0 0 4px rgba(20, 157, 221, 0.1);
  transition: all 0.3s ease;
}

.resume .resume-item:hover::before {
  background: linear-gradient(135deg, #149ddd 0%, #2eafec 100%);
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #fff;
  border-radius: 50px;
  padding: 8px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: inline-block;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #272829;
  margin: 0 5px;
  transition: all 0.3s ease;
  border-radius: 25px;
  position: relative;
}

.portfolio #portfolio-flters li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #149ddd 0%, #2eafec 100%);
  border-radius: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fff;
  transform: translateY(-2px);
}

.portfolio #portfolio-flters li:hover::before, .portfolio #portfolio-flters li.filter-active::before {
  opacity: 1;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.portfolio .portfolio-wrap img {
  transition: all 0.4s ease;
}

.portfolio .portfolio-wrap::before {
  content: "Click below to view details 👇";
  background: linear-gradient(135deg, rgba(20, 157, 221, 0.95) 0%, rgba(46, 175, 236, 0.95) 100%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.4s;
  z-index: 2;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  padding: 20px;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 0;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.4s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(20, 157, 221, 0.9);
  transition: all 0.3s ease;
  width: 100%;
  padding: 15px;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(46, 175, 236, 0.95);
  transform: scale(1.05);
}

.portfolio .portfolio-wrap .portfolio-links a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.portfolio .portfolio-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(20, 157, 221, 0.3);
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

.portfolio .portfolio-wrap h5 {
  text-align: center;
  padding: 15px;
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  color: #173b6c;
  background: #fff;
  border-radius: 0 0 12px 12px;
  transition: all 0.3s ease;
}

.portfolio .portfolio-wrap:hover h5 {
  background: linear-gradient(135deg, #149ddd 0%, #2eafec 100%);
  color: #fff;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  margin-bottom: 20px;
}

.services .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background: #149ddd;
  border-radius: 50%;
  transition: 0.5s;
  border: 1px solid #149ddd;
}

.services .icon i {
  color: #fff;
  font-size: 24px;
}

.services .icon-box:hover .icon {
  background: #fff;
}

.services .icon-box:hover .icon i {
  color: #149ddd;
}

.services .title {
  margin-left: 80px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #343a40;
}

.services .title a:hover {
  color: #149ddd;
}

.services .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 130px;
}

.contact .info {
  padding: 35px;
  background: #fff;
  width: 100%;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact .info:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(20, 157, 221, 0.15);
}

.contact .info i {
  font-size: 22px;
  color: #149ddd;
  float: left;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(20, 157, 221, 0.1) 0%, rgba(46, 175, 236, 0.1) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.contact .info h4 {
  padding: 0 0 0 65px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #050d18;
}

.contact .info p {
  padding: 0 0 10px 65px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #173b6c;
  line-height: 1.6;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 65px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: linear-gradient(135deg, #333 0%, #555 100%);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background: linear-gradient(135deg, #149ddd 0%, #2eafec 100%);
  color: #fff;
  transform: translateY(-3px) rotate(5deg);
  box-shadow: 0 5px 15px rgba(20, 157, 221, 0.4);
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: linear-gradient(135deg, #149ddd 0%, #2eafec 100%);
  color: #fff;
  transform: scale(1.1);
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: linear-gradient(135deg, #149ddd 0%, #2eafec 100%);
  border: 0;
  padding: 12px 30px;
  color: #fff;
  transition: all 0.3s ease;
  border-radius: 25px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(20, 157, 221, 0.3);
  cursor: pointer;
}

.contact .php-email-form button[type="submit"]:hover {
  background: linear-gradient(135deg, #2eafec 0%, #149ddd 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 157, 221, 0.4);
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 40px 0;
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #0e2442;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 0;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}

.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #149ddd !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 400;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  padding: 15px;
  color: #f4f6fd;
  font-size: 14px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 300px;
  z-index: 9999;
  background: #040b14;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 5px;
  text-align: center;
  font-size: 13px;
  color: #eaebf0;
}

@media (max-width: 1199px) {
  #footer {
    position: static;
    width: auto;
    padding-right: 20px 15px;
  }
}


/*----------------------------*/

/*---------------------------*/

.site-footer
{
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding:45px 0 20px;
  font-size:15px;
  line-height:24px;
  color:#b8b8b8;
}
.site-footer hr
{
  border-top-color:#bbb;
  opacity:0.5
}
.site-footer hr.small
{
  margin:20px 0
}
.site-footer h6
{
  color:#fff;
  font-size:16px;
  text-transform:uppercase;
  margin-top:5px;
  letter-spacing:2px
}
.site-footer a
{
  color:#737373;
}
.site-footer a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links
{
  padding-left:0;
  list-style:none
}
.footer-links li
{
  display:block
}
.footer-links a
{
  color:#737373
}
.footer-links a:active,.footer-links a:focus,.footer-links a:hover
{
  color:#3366cc;
  text-decoration:none;
}
.footer-links.inline li
{
  display:inline-block
}
.site-footer .social-icons
{
  text-align:right
}
.site-footer .social-icons a
{
  width:40px;
  height:40px;
  line-height:40px;
  margin-left:6px;
  margin-right:0;
  border-radius:100%;
  background-color:#33353d
}
.copyright-text
{
  margin:0
}
@media (max-width:991px)
{
  .site-footer [class^=col-]
  {
    margin-bottom:30px
  }
}
@media (max-width:767px)
{
  .site-footer
  {
    padding-bottom:0
  }
  .site-footer .copyright-text,.site-footer .social-icons
  {
    text-align:center
  }
}
.social-icons
{
  padding-left:0;
  margin-bottom:0;
  list-style:none
}
.social-icons li
{
  display:inline-block;
  margin-bottom:4px
}
.social-icons li.title
{
  margin-right:15px;
  text-transform:uppercase;
  color:#96a2b2;
  font-weight:700;
  font-size:13px
}
.social-icons a{
  background-color:#eceeef;
  color:#818a91;
  font-size:16px;
  display:inline-block;
  line-height:44px;
  width:44px;
  height:44px;
  text-align:center;
  margin-right:8px;
  border-radius:100%;
  -webkit-transition:all .2s linear;
  -o-transition:all .2s linear;
  transition:all .2s linear
}
.social-icons a:active,.social-icons a:focus,.social-icons a:hover
{
  color:#fff;
  background-color:#29aafe
}
.social-icons.size-sm a
{
  line-height:34px;
  height:34px;
  width:34px;
  font-size:14px
}
.social-icons a.facebook:hover
{
  background-color:#3b5998
}
.social-icons a.twitter:hover
{
  background-color:#00aced
}
.social-icons a.linkedin:hover
{
  background-color:#007bb6
}
.social-icons a.dribbble:hover
{
  background-color:#ea4c89
}
@media (max-width:767px)
{
  .social-icons li.title
  {
    display:block;
    margin-right:0;
    font-weight:600
  }
}