/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #e0e0e0;
  background: #0a1628;
}

a {
  color: #00d4ff;
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  color: #ffffff;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #00f0ff 0%, #0080ff 100%);
  color: #fff;
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.8);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 70px;
  transition: all 0.5s;
  z-index: 997;
  background: linear-gradient(90deg, rgba(10, 22, 40, 0.3) 0%, rgba(15, 42, 77, 0.3) 100%);
  box-shadow: 0px 2px 25px rgba(0, 212, 255, 0.05);
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  backdrop-filter: blur(2px);
}

#header .logo h1 {
  font-size: 28px;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

#header .logo h1 a,
#header .logo h1 a:hover {
  color: #00d4ff;
  text-decoration: none;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Header Social Links
--------------------------------------------------------------*/
.header-social-links {
  margin: 0 0 0 30px;
}

.header-social-links a {
  color: #00d4ff;
  padding-left: 8px;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
}

.header-social-links a i {
  line-height: 0;
}

.header-social-links a:hover {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
}

@media (max-width: 768px) {
  .header-social-links {
    margin: 0 15px 0 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #b0c4e0;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(135deg, #0f2a4d 0%, #1a3a5c 100%);
  box-shadow: 0px 0px 30px rgba(0, 212, 255, 0.3);
  transition: 0.3s;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #b0c4e0;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #00d4ff;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #00d4ff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
  z-index: 10000; /* keep toggle above everything */
}

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

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(10, 22, 40, 0.95);
  transition: 0.3s;
  z-index: 999;
}

/* When #navbar has .navbar-mobile show a full fixed panel */
#navbar.navbar-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  padding-top: 70px; /* header height */
  background: rgba(10, 22, 40, 0.96);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  z-index: 9998;
  overflow-y: auto;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: linear-gradient(135deg, #0f2a4d 0%, #1a3a5c 100%);
  overflow-y: auto;
  transition: 0.3s;
}

/* Make the UL visible and styled for mobile panel */
#navbar.navbar-mobile > ul,
.navbar.navbar-mobile > ul {
  display: block !important;
  margin: 0;
  padding: 8px 18px 40px 18px;
  list-style: none;
}

/* Stack items and make links legible */
#navbar.navbar-mobile li {
  display: block;
  width: 100%;
  margin: 6px 0;
}

#navbar.navbar-mobile a,
.navbar.navbar-mobile a {
  display: block;
  color: #b0c4e0;
  padding: 12px 10px;
  font-size: 18px;
}

/* Dropdown submenu: hidden by default, shown when .dropdown-active toggled */
.navbar-mobile .dropdown > ul {
  display: none;
  margin: 6px 0 6px 8px;
  padding-left: 8px;
}

.navbar-mobile .dropdown.dropdown-active > ul,
.navbar-mobile .dropdown > ul.dropdown-active {
  display: block !important;
}

/* optional caret for dropdown parent (uses bootstrap-icons font family) */
#navbar.navbar-mobile .dropdown > a .bi-chevron-down,
#navbar.navbar-mobile .dropdown > a .bi-chevron-right {
  float: right;
}

/* make submenu links slightly smaller but visible */
.navbar-mobile .dropdown > ul a {
  font-size: 16px;
  color: #dcecff;
  padding: 8px 6px;
}

/* lock background scrolling when nav open (optional helper class toggled by JS) */
body.nav-open {
  overflow: hidden;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #b0c4e0;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #00d4ff;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: rgba(15, 42, 77, 0.8);
  box-shadow: 0px 0px 30px rgba(0, 212, 255, 0.2);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #00d4ff;
  text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;
  background: url("../img/hero-bg.jpg") center center;
  background-size: cover;
  position: relative;
  margin-top: 70px;
  padding: 0;
}

#hero:before {
  content: "";
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(0, 100, 200, 0.6) 100%);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  z-index: 2;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

#hero h1 span {
  border-bottom: 4px solid #ffffff;
  color: #00d4ff;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

#hero h2 {
  color: rgba(176, 196, 224, 0.9);
  margin-bottom: 30px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  transition: ease-in-out 0.3s;
  color: #fff;
  background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  border: 1px solid rgba(0, 212, 255, 0.5);
}

#hero .btn-get-started:hover {
  background: linear-gradient(135deg, #00f0ff 0%, #0080ff 100%);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.7);
}

@media (max-width: 992px) {
  #hero {
    height: calc(100vh - 70px);
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 30px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #0f2340;
}

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

.section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #00d4ff;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: rgba(0, 212, 255, 0.3);
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #00d4ff;
  bottom: 0;
  left: calc(50% - 20px);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.section-title p {
  margin-bottom: 0;
  color: #b0c4e0;
}

/*--------------------------------------------------------------
# What We Do
--------------------------------------------------------------*/
.what-we-do .icon-box {
  text-align: center;
  padding: 30px 20px;
  transition: all ease-in-out 0.3s;
  background: linear-gradient(135deg, #0f2a4d 0%, #1a3a5c 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
}

.what-we-do .icon-box:nth-child(1),
.what-we-do .icon-box:nth-child(2),
.what-we-do .icon-box:nth-child(3) {
  background: #f7fdff;
}

.what-we-do .icon-box:nth-child(1) .icon,
.what-we-do .icon-box:nth-child(2) .icon,
.what-we-do .icon-box:nth-child(3) .icon {
  background: rgba(0, 212, 255, 0.15);
  border-color: rgba(0, 212, 255, 0.3);
}

.what-we-do .icon-box:nth-child(1) .icon i,
.what-we-do .icon-box:nth-child(2) .icon i,
.what-we-do .icon-box:nth-child(3) .icon i {
  color: #0066cc;
}

.what-we-do .icon-box:nth-child(1) h4,
.what-we-do .icon-box:nth-child(2) h4,
.what-we-do .icon-box:nth-child(3) h4 {
  color: #0a1628;
}

.what-we-do .icon-box:nth-child(1) h4 a,
.what-we-do .icon-box:nth-child(2) h4 a,
.what-we-do .icon-box:nth-child(3) h4 a {
  color: #0066cc;
}

.what-we-do .icon-box:nth-child(1) p,
.what-we-do .icon-box:nth-child(2) p,
.what-we-do .icon-box:nth-child(3) p {
  color: #333333;
}

.what-we-do .icon-box:nth-child(1):hover,
.what-we-do .icon-box:nth-child(2):hover,
.what-we-do .icon-box:nth-child(3):hover {
  background: #f0f8ff;
  border-color: #0066cc;
  box-shadow: 0px 0 25px rgba(0, 102, 204, 0.2);
}

.what-we-do .icon-box:nth-child(1):hover h4 a,
.what-we-do .icon-box:nth-child(2):hover h4 a,
.what-we-do .icon-box:nth-child(3):hover h4 a,
.what-we-do .icon-box:nth-child(1):hover .icon i,
.what-we-do .icon-box:nth-child(2):hover .icon i,
.what-we-do .icon-box:nth-child(3):hover .icon i {
  color: #000000;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  padding: 10px 0;
}

.about h3 {
  font-weight: 600;
  font-size: 32px;
  color: #00d4ff;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
  color: #b0c4e0;
}

.about ul li+li {
  margin-top: 10px;
}

.about ul li {
  position: relative;
  padding-left: 26px;
}

.about ul i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 22px;
  color: #00d4ff;
}

.about .icon-boxes {
  padding-top: 10px;
}

.about .icon-boxes h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
  color: #ffffff;
}

.about .icon-boxes i {
  font-size: 48px;
  color: #00d4ff;
}

.about .icon-boxes p {
  font-size: 15px;
  color: #8a9db0;
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  padding: 10px 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
  color: #00d4ff;
}

.skills .progress-bar-wrap {
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background: linear-gradient(90deg, #00d4ff 0%, #0066cc 100%);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  background: linear-gradient(135deg, #0a1628 0%, #0f2a4d 100%);
  padding: 30px 0 40px 0;
}

.counts .count-box {
  padding: 30px 30px 25px 30px;
  width: 100%;
  position: relative;
  text-align: center;
  background: #f7fdff;
  border: 1px solid rgba(4, 184, 255, 0.2);
  border-radius: 8px;
}

.counts .count-box i {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
  padding: 12px;
  color: #fff;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.counts .count-box span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: #0066cc;
}

.counts .count-box p {
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #333333;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  border-radius: 6px;
  background: #f7fdff;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(0, 102, 204, 0.2);
  box-shadow: 0 0 30px rgba(83, 83, 83, 0.4), 0 0 60px rgba(88, 88, 88, 0.2);
}

.services .icon-box i {
  float: left;
  color: #0066cc;
  font-size: 40px;
  line-height: 0;
}

.services .icon-box h4 {
  margin-left: 70px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: #0a1628;
}

.services .icon-box h4 a {
  color: #0066cc;
  transition: 0.3s;
}

.services .icon-box p {
  margin-left: 70px;
  line-height: 24px;
  font-size: 14px;
  color: #333333;
}

.services .icon-box:hover {
  box-shadow: 0 0 40px rgba(122, 122, 122, 0.6), 0 0 80px rgba(216, 217, 218, 0.3);
  border-color: #0066cc;
  background: #f0f8ff;
}

.services .icon-box:hover h4 a {
  color: #0270ca;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.services .icon-box:hover i {
  color: #0270ca;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio {
  padding: 60px 0;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #b0c4e0;
  border-radius: 4px;
  text-transform: uppercase;
  background: rgba(15, 42, 77, 0.8);
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.portfolio #portfolio-flters li:hover,
.portfolio #portfolio-flters li.filter-active {
  background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

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

.portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 212, 255, 0.1);
  transition: 0.3s;
  border-radius: 8px;
  overflow: hidden;
}

.portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 212, 255, 0.3);
}

.portfolio .portfolio-item {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

.portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.4s;
}

.portfolio .portfolio-item figure .link-preview,
.portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  line-height: 0;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #00d4ff;
  border-radius: 50%;
  transition: all 0.2s linear;
  overflow: hidden;
  font-size: 20px;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.portfolio .portfolio-item figure .link-preview i,
.portfolio .portfolio-item figure .link-details i {
  color: #0a1628;
  line-height: 0;
}

.portfolio .portfolio-item figure .link-preview:hover,
.portfolio .portfolio-item figure .link-details:hover {
  background: #00f0ff;
}

.portfolio .portfolio-item figure .link-preview:hover i,
.portfolio .portfolio-item figure .link-details:hover i {
  color: #0a1628;
}

.portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

.portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

.portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

.portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

.portfolio .portfolio-item .portfolio-info {
  background: linear-gradient(135deg, #0f2a4d 0%, #1a3a5c 100%);
  text-align: center;
  padding: 30px;
  height: 90px;
  border-radius: 0 0 3px 3px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
  color: #ffffff;
}

.portfolio .portfolio-item .portfolio-info h4 a {
  color: #00d4ff;
}

.portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #00f0ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #8a9db0;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

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

.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 212, 255, 0.3);
  opacity: 1;
  border: 1px solid #00d4ff;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(0, 212, 255, 0.15);
  background: linear-gradient(135deg, #0f2a4d 0%, #1a3a5c 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  color: #00d4ff;
}

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

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

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

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00d4ff;
}

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

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 0 30px;
  margin: 30px 15px;
  text-align: center;
  min-height: 350px;
  box-shadow: 0px 2px 12px rgba(0, 212, 255, 0.15);
  background: linear-gradient(135deg, #0f2a4d 0%, #1a3a5c 100%);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 8px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid #00d4ff;
  margin: 0 auto;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #ffffff;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #8a9db0;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: rgba(0, 212, 255, 0.3);
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #ffffff;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 212, 255, 0.3);
  opacity: 1;
  border: 1px solid #00d4ff;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #00d4ff;
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 0 30px rgba(1, 123, 148, 0.4), 0 0 60px rgba(0, 212, 255, 0.2);
  padding: 30px 20px;
  background: #f7fdff;
  border: 1px solid rgba(0, 102, 204, 0.2);
  border-radius: 8px;
}

.team .member {
  box-sizing: border-box;
}

/* Responsive: 2 columns on tablets, 1 on mobile */
@media (max-width: 991px) {
  .team .member {
    flex: 1 1 45%;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .team .member {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
  border: 3px solid #0066cc;
  box-shadow: 0 0 15px rgba(0, 102, 204, 0.3);
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #0a1628;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #0066cc;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #333333;
}

.team .member:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.6), 0 0 80px rgba(0, 0, 0, 0.3);
  background: #f0f8ff;
  border-color: #0066cc;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #0066cc;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-wrap {
  padding: 30px;
  background: linear-gradient(135deg, #0f2a4d 0%, #1a3a5c 100%);
  border-radius: 4px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.contact .info i {
  font-size: 20px;
  color: #00d4ff;
  float: left;
  width: 44px;
  height: 44px;
  background: rgba(0, 212, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #ffffff;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #b0c4e0;
}

.contact .info:hover i {
  background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
  color: #fff;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.contact .php-email-form {
  width: 100%;
  padding: 30px;
  background: #9cd7eb;
  border-radius: 4px;
  border: 1px solid rgba(0, 102, 204, 0.2);
  box-shadow: 0 0 30px rgba(83, 83, 83, 0.4), 0 0 60px rgba(88, 88, 88, 0.2);
}

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

.contact .php-email-form .validate {
  display: none;
  color: #ff6b6b;
  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: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.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: #f7fdff;
  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 #0066cc;
  border-top-color: rgba(0, 102, 204, 0.3);
  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;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 102, 204, 0.3);
  color: #333333;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  background: rgba(255, 255, 255, 1);
  border-color: #0066cc;
  box-shadow: 0 0 10px rgba(0, 102, 204, 0.3);
}

.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, #00d4ff 0%, #0066cc 100%);
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
  font-weight: 600;
}

.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, #00f0ff 0%, #0080ff 100%);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

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

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

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 40px 0;
  margin-top: 70px;
  background: linear-gradient(135deg, #0a1628 0%, #0f2a4d 100%);
}

.breadcrumbs h2 {
  font-size: 26px;
  font-weight: 300;
  color: #00d4ff;
}

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

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

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

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

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #b0c4e0;
  font-size: 14px;
  background: #0a1628;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: linear-gradient(135deg, #0f2a4d 0%, #1a3a5c 100%);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #00d4ff;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #8a9db0;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #00d4ff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #00d4ff;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #8a9db0;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.6);
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #00d4ff;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: rgba(15, 42, 77, 0.6);
  padding: 6px 10px;
  position: relative;
  border-radius: 4px;
  text-align: left;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
  background: transparent;
  color: #b0c4e0;
}

#footer .footer-newsletter form input[type=email]::placeholder {
  color: rgba(176, 196, 224, 0.6);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
  font-size: 16px;
  padding: 0 20px 2px 20px;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
  cursor: pointer;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: linear-gradient(135deg, #00f0ff 0%, #0080ff 100%);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #8a9db0;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

#footer .social-links a:hover {
  background: linear-gradient(135deg, #00f0ff 0%, #0080ff 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}
