/*--------------------------------------------------------------
# CSS Reset & Imports
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css?family=Open+Sans|Montserrat&display=swap');

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

/*--------------------------------------------------------------
# Design Tokens
--------------------------------------------------------------*/
:root {
  --p1w-green: #18D26E;
  --p1w-green-light: #4AE891;
  --p1w-green-dark: #12A556;
  --p1w-green-glow: rgba(24, 210, 110, 0.15);

  --p1w-charcoal: #1A1D23;
  --p1w-charcoal-light: #252830;
  --p1w-slate: #2E3238;
  --p1w-mist: #F4F6F8;
  --p1w-text: #333840;
  --p1w-text-muted: #6B7280;
  --p1w-white: #F5F0EB;
  --p1w-eggshell: #F5F0EB;
  --p1w-eggshell-warm: #EDE8E2;

  --p1w-service-dev: #6BBF3F;
  --p1w-service-it: #E0364A;
  --p1w-service-cloud: #2BA8E0;
  --p1w-service-pro: #F5C542;
  --p1w-service-brand: #1A1D23;

  --gradient-cta: linear-gradient(135deg, var(--p1w-charcoal) 0%, var(--p1w-green-dark) 100%);
  --gradient-hero: linear-gradient(180deg, rgba(26,29,35,0.85) 0%, rgba(18,165,86,0.4) 100%);
  --gradient-section: linear-gradient(180deg, var(--p1w-mist) 0%, rgba(24,210,110,0.05) 100%);
  --gradient-impact: linear-gradient(135deg, var(--p1w-charcoal) 0%, var(--p1w-charcoal-light) 60%, rgba(24,210,110,0.3) 100%);
  --gradient-glisten: radial-gradient(ellipse at center, rgba(24,210,110,0.12) 0%, transparent 70%);
}

/*--------------------------------------------------------------
# Keyframes & Animations
--------------------------------------------------------------*/
@keyframes animate-preloader {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 8px rgba(24, 210, 110, 0.3); }
  50% { box-shadow: 0 0 24px rgba(24, 210, 110, 0.6); }
}

@keyframes ken-burns {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

/*--------------------------------------------------------------
# Reduced Motion
--------------------------------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-aos] {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/*--------------------------------------------------------------
# Base Styles & Typography
--------------------------------------------------------------*/
body {
  background: linear-gradient(168deg, var(--p1w-eggshell) 0%, var(--p1w-eggshell-warm) 50%, var(--p1w-eggshell) 100%);
  background-attachment: fixed;
  color: var(--p1w-text);
  font-family: "Open Sans", sans-serif;
}

a {
  color: var(--p1w-green);
  text-decoration: none;
  transition: 0.3s;
}

/* Override Bootstrap white/light backgrounds with eggshell */
.bg-white { background-color: var(--p1w-eggshell) !important; }
.bg-light { background-color: var(--p1w-eggshell-warm) !important; }

a:hover,
a:active,
a:focus {
  color: var(--p1w-green-light);
  outline: none;
  text-decoration: none;
}

p {
  margin: 0 0 30px 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

h1, h2 { font-weight: 700; }
h3, h4 { font-weight: 600; }

.section-intro {
  font-size: 1.1em;
  letter-spacing: 0.05em;
  text-shadow: 1px 2px 2px rgba(0,0,0,0.3);
}

/*--------------------------------------------------------------
# Utility Components
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 11;
  display: none;
  width: 44px;
  height: 44px;
  background: var(--p1w-green);
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  transition: background 0.3s;
}

.back-to-top svg {
  color: #fff;
  width: 44px;
  height: 44px;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--p1w-eggshell);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  width: 60px;
  height: 60px;
  border: 6px solid #f2f2f2;
  border-top: 6px solid var(--p1w-green);
  border-radius: 50%;
  animation: animate-preloader 1s linear infinite;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 997;
  height: 92px;
  padding: 30px 0;
  transition: all 0.5s;
}

#header.header-scrolled {
  height: 72px;
  padding: 20px 0;
  background: rgba(26, 29, 35, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--p1w-green);
  transition: all 0.5s;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 3px;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
  padding-left: 10px;
  border-left: 4px solid var(--p1w-green);
}

#header #logo img {
  margin: 0;
  padding: 0;
  height: 220px;
  transition: height 0.5s;
}

#header #logo_text {
  position: absolute;
  left: 60px;
  top: 12px;
  color: var(--p1w-green);
  display: none;
  transition: all 1s;
}

#header.header-scrolled #logo img {
  height: 0;
}

#header.header-scrolled #logo_text {
  display: block;
}

.logo {
  max-width: 90%;
}

.logo_t svg {
  margin-right: 8px;
  transition: transform 0.6s ease;
}

.logo_t:hover svg {
  animation: animate-preloader 1s ease-in-out;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
#intro {
  display: table;
  width: 100%;
  height: 100vh;
  background: #000;
}

#intro .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: ken-burns 12s ease-in-out infinite alternate;
}

#intro .carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
}

#intro .carousel-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#intro .carousel-background img {
  max-width: 100%;
}

#intro .carousel-content {
  text-align: center;
}

#intro h2 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
}

#intro p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
  width: 10%;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  display: inline-block;
  margin: 10px;
  padding: 8px 32px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  background: var(--p1w-green);
  border-radius: 50px;
  transition: 0.5s;
}

#intro .btn-get-started:hover {
  color: var(--p1w-green);
  background: var(--p1w-eggshell) !important;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
  display: none;
}

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

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Menu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

/* Nav Menu Styling */
.nav-menu a,
.nav-sub a {
  display: inline-block;
  padding: 12px 8px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  outline: none;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
  color: var(--p1w-green);
}

.nav-menu > li:not:first-child {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 0px;
  padding: 10px;
  background: var(--p1w-eggshell);
  box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.20);
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  display: block;
  padding: 10px;
  color: var(--p1w-text);
  font-size: 13px;
  text-transform: none;
  transition: 0.3s;
}

.nav-menu ul li:hover > a {
  color: var(--p1w-green);
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Navigation */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  cursor: pointer;
  outline: none;
  transition: all 0.4s;
}

#mobile-nav-toggle svg {
  color: #fff;
}

#mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 998;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(26, 29, 35, 0.95);
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  position: relative;
  width: 100%;
  display: block;
  padding: 10px 22px 10px 15px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  outline: none;
  overflow: hidden;
}

#mobile-nav ul li a:hover {
  color: var(--p1w-green);
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
  color: var(--p1w-green);
}

#mobile-nav ul .menu-has-children svg {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  color: #fff;
  cursor: pointer;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: var(--p1w-green);
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: var(--p1w-green);
}

#mobile-body-overly {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 997;
  width: 100%;
  height: 100%;
  background: rgba(26, 29, 35, 0.7);
  display: none;
}

/* Mobile Nav Body Classes */
body.mobile-nav-active {
  overflow: hidden;
}

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

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

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
/* Section Headers */
.section-header h3 {
  position: relative;
  padding-bottom: 15px;
  color: var(--p1w-text);
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.section-header h3::before {
  content: '';
  position: absolute;
  left: calc(50% - 60px);
  bottom: 1px;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
}

.section-header h3::after {
  content: '';
  position: absolute;
  left: calc(50% - 20px);
  bottom: 0;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--p1w-green);
}

.section-header p {
  padding-bottom: 30px;
  color: var(--p1w-text);
  text-align: center;
}

/* Module Components */
.module .collapse,
.module .collapsing {
  height: 5rem;
}

.module .collapse {
  position: relative;
  display: block;
  overflow: hidden;
}

.module .btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, -40%);
}

.module .collapse.show {
  height: auto;
  margin-bottom: 60px;
}

.module .collapse.show:before {
  display: none;
}

.module .btn.collapsed:before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f078";
}

.module .btn:not(.collapsed):before {
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  content: "\f077";
}

/* Featured Services Section */
#featured-services {
  background: var(--p1w-charcoal);
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services .box-bg {
  background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

#featured-services svg {
  display: inline-block;
  width: 48px;
  height: 48px;
  font-size: 48px;
  line-height: 1;
  color: var(--p1w-green);
}

#featured-services h4 {
  margin: 15px 0;
  font-size: 18px;
  font-weight: 400;
}

#featured-services h4 a {
  color: #fff;
}

#featured-services h4 a:hover {
  color: var(--p1w-green);
}

#featured-services p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 24px;
  color: #fff;
}

/* About Us Section */
#about {
  position: relative;
  padding: 60px 0 40px 0;
  background: url("../img/cloud-bg.webp") center top no-repeat fixed;
  background-size: cover;
}

#about::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  background: rgba(245, 240, 235, 0.88);
}

#about .container {
  position: relative;
  z-index: 10;
}

.about-col {
  background: rgba(245, 240, 235, 0.92);
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.about-col:hover {
  box-shadow: 0px 8px 30px rgba(24, 210, 110, 0.12);
  transform: translateY(-4px);
}

.about-col .img {
  position: relative;
  text-align: center;
}

.about-col .img img {
  border-radius: 12px 12px 0 0;
}

.about-col .icon {
  position: absolute;
  left: calc(50% - 40px);
  bottom: -12px;
  width: 84px;
  height: 84px;
  padding-top: 18px;
  text-align: center;
  background: rgb(24,210,110);
  background: linear-gradient(180deg, rgba(24,210,110,1) 0%, rgb(140, 198, 188) 100%);
  border: 4px solid #fff;
  border-radius: 50%;
  transition: 0.3s;
}

.about-col svg {
  width: 36px;
  height: 36px;
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

.about-col:hover .icon {
  background: var(--p1w-green);
  border: none;
  animation: pulse-glow 2s ease-in-out infinite;
}

.about-col:hover .icon svg {
  color: #fff;
  transform: translateY(-2px);
}

.about-col h2 {
  padding: 16px 0;
  color: var(--p1w-text);
  font-weight: 700;
  text-align: center;
  transition: 0.3s;
}

.about-col:hover h2 {
  color: var(--p1w-green);
}

.about-col h2 a {
  color: var(--p1w-text);
}

.about-col:hover h2 a {
  color: var(--p1w-green);
}

.about-col h2 a:hover {
  color: #000000;
}

.about-col p {
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
  font-size: 0.95rem;
  line-height: 1.5rem;
  color: var(--p1w-text);
}

/* Capability tiles — professional services */
.capability-tile {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.capability-tile:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--p1w-green);
  transform: translateY(-4px);
}

.capability-tile.active {
  background: rgba(24, 210, 110, 0.12);
  border-color: var(--p1w-green);
  box-shadow: 0 4px 20px rgba(24, 210, 110, 0.2);
}

.capability-tile i {
  color: var(--p1w-green);
  transition: transform 0.3s ease;
}

.capability-tile:hover i {
  transform: scale(1.15);
}

.capability-tile h4, .capability-tile h5 {
  color: #fff;
  margin-bottom: 0;
}

.capability-tile .small {
  color: rgba(255, 255, 255, 0.7);
}

.capability-detail {
  display: none;
  animation: fadeSlideIn 0.4s ease;
}

.capability-detail.show {
  display: block;
}

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

#impact {
  background: var(--gradient-impact);
}

#glisten {
  background: var(--gradient-glisten);
}

/* Services Section */
.bg-shadow {
  background: rgba(0,0,0,0.2);
}

.box .icon {
  float: left;
}

.box .icon svg {
  width: 36px;
  height: 36px;
  font-size: 36px;
  line-height: 1;
  color: var(--p1w-green);
  transition: 0.5s;
}

.box .title {
  margin-left: 60px;
  font-weight: 700;
  color: #FFF;
}

.box .title a {
  color: var(--p1w-text);
}

#experience .box .title a {
  color: #FFF;
}

.box:hover .title a,
#experience .box:hover .title a {
  color: var(--p1w-green);
}

.description {
  margin-left: 60px;
}

/* Section Backgrounds & Utilities */
.section-bg {
  background: var(--p1w-charcoal);
}

.darker-bg::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.list-group-number {
  list-style: decimal inside;
}

.list-group-alpha {
  list-style: lower-alpha inside;
}

.list-group-roman {
  list-style: lower-roman inside;
}

.list-group-alpha > li,
.list-group-number > li {
  display: list-item;
  margin: 18px 0 0 0;
}

/* Call To Action Section */
#call-to-action {
  padding: 60px 0;
  background: var(--gradient-cta);
}

#call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action p {
  color: #fff;
}

.cta-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 28px;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #fff;
  border: 2px solid #fff;
  border-radius: 25px;
  text-transform: uppercase;
  transition: 0.5s;
}

.cta-btn:hover {
  color: #FFF;
  background: var(--p1w-green);
  border: 2px solid var(--p1w-green);
}

.checkEx .fa-check {
  color: rgb(24,210,110);
}

.checkEx .fa-times {
  color: rgb(255,112,88);
}

/* Skills Section */
#skills {
  padding: 60px 0;
}

#skills .progress {
  height: 35px;
  margin-bottom: 10px;
}

#skills .progress .skill {
  margin: 0 0 0 20px;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  line-height: 35px;
  text-transform: uppercase;
}

#skills .progress .skill .val {
  float: right;
  margin: 0 20px 0 0;
  font-style: normal;
}

#skills .progress-bar {
  width: 1px;
  text-align: left;
  transition: .9s;
}

/* Facts Section
--------------------------------*/

#facts {
  background: url("../img/about/animals/forest.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 80px 0 60px 0;
  position: relative;
}

#facts::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.82);
  z-index: 9;
}

#facts .container {
  position: relative;
  z-index: 10;
}

#facts .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: var(--p1w-green);
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: var(--p1w-text);
}

#facts .facts-img {
  text-align: center;
}

#facts .facts-img img {
	max-width:640px;
	margin-bottom:-20px;
}

/* Portfolio Section
--------------------------------*/

#portfolio {
  background: url("../img/double-bubble-outline.png") center top repeat;
}

.portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

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

.portfolio-item {
  position: relative;
  min-height: 360px;
  margin-bottom:40px;
}

.portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 150px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}
.portfolio-item figure img {
transition:0.3s;
}

.portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.5s;
  margin-top:-50px;
}

.portfolio-item figure .link-preview,
.portfolio-item figure .link-details {
  position: absolute;
  display: inline-block;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: var(--p1w-eggshell);
  border-radius: 50%;
  transition: 0.2s linear;
}

.portfolio-item figure .link-preview svg,
.portfolio-item figure .link-details svg {
  padding-top: 8px;
  font-size: 22px;
  width:28px;
  height:28px;
  color: #333;
}

.portfolio-item figure .link-preview:hover,
.portfolio-item figure .link-details:hover {
  background: var(--p1w-green);
}

.portfolio-item figure .link-preview:hover svg,
.portfolio-item figure .link-details:hover svg {
  color: #fff;
}

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

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

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

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

.portfolio-item .portfolio-info {
  background: var(--p1w-eggshell);
  text-align: center;
  padding: 30px;
  border-radius: 0 0 3px 3px;
}

.portfolio-item .portfolio-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
}

.portfolio-item .portfolio-info h4 a {
  color: var(--p1w-text);
}

.portfolio-item .portfolio-info h4 a:hover {
  color: var(--p1w-green);
}

.portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  font-weight: 500;
  font-size: 14px;
}

/* Clients Section
--------------------------------*/

#clients {
  padding: 60px 0;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav,
#clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: var(--p1w-green);
}

/* Testimonials Section
--------------------------------*/

#testimonials {
  padding: 60px 0;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item {
  text-align: center;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

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

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

#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

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

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: var(--p1w-green);
}

/* Team Section
--------------------------------*/

#team {
  background: var(--p1w-eggshell);
  padding: 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

#team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

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

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

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

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: var(--p1w-green);
}

#team .member .social svg {
  font-size: 18px;
  width:18px;
  height:18px;
  margin: 0 2px;
}

#the-team {
  padding:60px 0;
}

/* Contact Section
--------------------------------*/

#contact, #tos, #privacy, #faqs {
  padding: 3.5rem 0;
  position: relative;
}
#contact::before, #tos::before, #privacy::before, #faqs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,.06) 0%, transparent 100%);
  pointer-events: none;
}
#contact.contact-premium::before { display: none; }

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info svg {
  font-size: 48px;
  width:48px;
  height:48px;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--p1w-green);
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: var(--p1w-text);
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--p1w-text-muted);
}

#contact .contact-info a {
  color: var(--p1w-text);
}

#contact .contact-info a:hover {
  color: var(--p1w-green);
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

#contact .contact-phone {
	border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

#contact .form #sendmessage {
  color: var(--p1w-green);
  border: 1px solid var(--p1w-green);
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="submit"] {
  background: var(--p1w-green);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form button[type="submit"]:hover {
  background: var(--p1w-green-dark);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: var(--p1w-charcoal);
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: var(--p1w-charcoal-light);
  padding: 60px 0 30px 0;
  border-top: 4px solid var(--p1w-green);
}

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

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid var(--p1w-green);
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

#footer .footer-top .social-links a {
  font-size: 42px;
  display: inline-block;
  background: transparent;
  color: #eee;
  line-height: 1;
  padding: 12px 0;
  margin-right: 4px;
  border-radius: 50%;
  border: 2px solid var(--p1w-green);
  text-align: center;
  width: 64px;
  height: 64px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: var(--p1w-green);
  color: #fff;
  border-color: var(--p1w-green);
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: var(--p1w-slate);
}

#footer .footer-top h4::after {
  background: var(--p1w-green);
  width: 60px;
}

#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 svg {
  width:32px;
  height:32px;
  vertical-align:middle;
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid var(--p1w-slate);
  padding: 10px 0;
}

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

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: var(--p1w-green);
}

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

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

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

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: var(--p1w-green);
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: var(--p1w-green-dark);
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 60px;
  }
  
  #intro p {
    width: 60%;
  }
  
  #intro .carousel-control-prev,
  #intro .carousel-control-next {
    width: 5%;
  }
  
  #nav-menu-container {
    padding-right: 60px;
  }
  
  .card-columns {
    column-count: 4;
  }
}

@media (max-width: 768px) {
  #header #logo h1 {
    font-size: 28px;
  }
  
  #header #logo img {
    max-height: 40px;
  }
  
  #intro h2 {
    font-size: 28px;
  }
  
  #nav-menu-container {
    display: none;
  }
  
  #mobile-nav-toggle {
    display: inline;
  }
  
  #contact .contact-phone {
    border: none;
  }
  
  .back-to-top {
    bottom: 15px;
  }
  
  .section-bg {
    background: var(--p1w-charcoal);
  }
  
  .featherlight .featherlight-content {
    max-width: 95%;
  }
  
  .featherlight img {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Eye Blink Animation (about page)
--------------------------------------------------------------*/
#lid {
  animation: blink 2.4s infinite;
}
#eye {
  animation: squeeze 2.4s infinite;
}

@keyframes blink {
  90% {
    transform: none;
    animation-timing-function: ease-in;
  }
  93% {
    transform: translateY(15px) scaleY(0);
  }
  100% {
    animation-timing-function: ease-out;
  }
}
@keyframes squeeze {
  90% {
    transform: none;
    animation-timing-function: ease-in;
  }
  93% {
    transform: translateY(3px) scaleY(0.8);
  }
  100% {
    animation-timing-function: ease-out;
  }
}

/*--------------------------------------------------------------
# Driving Cars Animation (managed-it page)
--------------------------------------------------------------*/
@keyframes driving {
  from { left: -200px; }
  to { left: 102%; }
}

.car {
  position: absolute;
  animation-name: driving;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  height: 20%;
  left: -260px;
  bottom: 11%;
  z-index: 200;
  animation-duration: 4s;
}

.car img {
  height: 100%;
  border-radius: 0 !important;
}

.car:nth-child(-n+4) {
  bottom: 2%;
  z-index: 300;
}

.car:nth-child(n+5) {
  animation-duration: 6s;
}

.threed {
  color: #FFFFFF !important;
  z-index: 301;
  font-weight: 900;
  font-size: 2.8em;
  text-shadow: 0 1px 0 #ccc,
               0 2px 0 #c9c9c9,
               0 3px 0 #bbb,
               0 4px 0 #b9b9b9,
               0 5px 0 #aaa,
               0 6px 1px rgba(0,0,0,.1),
               0 0 5px rgba(0,0,0,.1),
               0 1px 3px rgba(0,0,0,.3),
               0 3px 5px rgba(0,0,0,.2),
               0 5px 10px rgba(0,0,0,.25),
               0 10px 10px rgba(0,0,0,.2),
               0 20px 20px rgba(0,0,0,.15);
}

/*--------------------------------------------------------------
# Clouds Viewport Animation
--------------------------------------------------------------*/
#viewport {
  position: fixed;
  top: 0px;
  right: 15px;
  bottom: 0px;
  left: 15px;
  overflow: hidden;
  border-radius: 12px;
  perspective: 800px;
  z-index: 0;
}

#world {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform-style: preserve-3d;
}

#world div {
  transform-style: preserve-3d;
}

.cloudBase {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
}

.cloudLayer {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  margin-left: -150px;
  margin-top: -150px;
  transition: opacity .5s ease-out;
}

/*--------------------------------------------------------------
# Service Color Classes
--------------------------------------------------------------*/
.btn-service-dev { background: var(--p1w-service-dev) !important; }
.btn-service-it { background: var(--p1w-service-it) !important; }
.btn-service-cloud { background: var(--p1w-service-cloud) !important; }
.btn-service-pro { background: var(--p1w-service-pro) !important; color: var(--p1w-text) !important; }
.btn-service-brand { background: var(--p1w-service-brand) !important; }

.icon-service-dev { color: var(--p1w-service-dev) !important; }
.icon-service-it { color: var(--p1w-service-it) !important; }
.icon-service-cloud { color: var(--p1w-service-cloud) !important; }
.icon-service-pro { color: var(--p1w-service-pro) !important; }
.icon-service-brand { color: var(--p1w-text-muted) !important; }

/* Brand quote forms */
.brand-quote-form {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  border: 1px solid #e9ecef;
}
.bg-light .brand-quote-form {
  background: var(--p1w-eggshell);
}

/* SMS Consent Checkbox */
.sms-consent {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 10px;
  background: rgba(24,210,110,.06);
  border: 1.5px solid rgba(24,210,110,.2);
  cursor: pointer;
  transition: border-color .25s, background .25s;
}
.sms-consent:hover {
  border-color: rgba(24,210,110,.4);
  background: rgba(24,210,110,.1);
}
.sms-consent input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid rgba(24,210,110,.5);
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  margin-top: 1px;
  position: relative;
  transition: background .2s, border-color .2s;
}
.sms-consent input[type="checkbox"]:checked {
  background: var(--p1w-green);
  border-color: var(--p1w-green);
}
.sms-consent input[type="checkbox"]:checked::after {
  content: '\2713';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}
.sms-consent label {
  font-size: .78rem;
  line-height: 1.5;
  color: #888;
  cursor: pointer;
  margin: 0;
}
.sms-consent label a {
  color: var(--p1w-green);
  text-decoration: underline;
}
/* Dark bg override for contact/modal */
.contact-premium .sms-consent,
.modal .sms-consent {
  background: rgba(24,210,110,.05);
  border-color: rgba(24,210,110,.2);
}
.contact-premium .sms-consent:hover,
.modal .sms-consent:hover {
  background: rgba(24,210,110,.1);
  border-color: rgba(24,210,110,.4);
}
.contact-premium .sms-consent label {
  color: rgba(255,255,255,.5);
}
.contact-premium .sms-consent input[type="checkbox"] {
  border-color: rgba(24,210,110,.5);
  background: rgba(255,255,255,.05);
}
