body,
html {
  font-family: "Open Sans", sans-serif;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  color: #777;
  font-weight: 400;
  width: 100% !important;
  height: 100% !important;
}
h2,
h3,
h4 {
  font-family: "Raleway", sans-serif;
}
h2 {
  text-transform: uppercase;
  margin: 0 0 20px;
  font-weight: 800;
  font-size: 36px;
  color: #333;
}
h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
}
h4 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
}
h5 {
  text-transform: uppercase;
  font-weight: 700;
  line-height: 20px;
}
p {
  font-size: 15px;
}
p.intro {
  margin: 12px 0 0;
  line-height: 24px;
}
a {
  color: #608dfd;
  font-weight: 400;
}
a:hover,
a:focus {
  text-decoration: none;
  color: #608dfd;
}
ul,
ol {
  list-style: none;
}
ul,
ol {
  padding: 0;
  webkit-padding: 0;
  moz-padding: 0;
}
hr {
  height: 2px;
  width: 70px;
  text-align: center;
  position: relative;
  background: #1e7a46;
  margin-bottom: 20px;
  border: 0;
}
/* Navigation */
#menu {
  padding: 15px;
  transition: all 0.8s;
}
#menu.navbar-default {
  background-color: #fff;
  border-color: rgba(231, 231, 231, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
#menu a.navbar-brand {
  display: flex;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  margin-right: 10px;
}
#menu.navbar-default .navbar-nav > li > a {
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  color: #555;
  font-size: 15px;
  font-weight: 400;
  padding: 8px 2px;
  border-radius: 0;
  margin: 9px 20px 0;
}
#menu.navbar-default .navbar-nav > li > a:after {
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: #000;
  content: "";
  transition: width 0.2s;
}
#menu.navbar-default .navbar-nav > li > a:hover:after {
  width: 100%;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background-color: transparent;
}
.navbar-default .navbar-nav > .active > a:after,
.navbar-default .navbar-nav > .active > a:hover:after,
.navbar-default .navbar-nav > .active > a:focus:after {
  display: block !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -1px !important;
  width: 100% !important;
  height: 2px !important;
  background: #000 !important;
  content: "" !important;
  transition: width 0.2s !important;
}
.navbar-toggle {
  border-radius: 0;
}
.navbar-default .navbar-toggle:hover,
.navbar-default .navbar-toggle:focus {
  background-color: #fff;
  border-color: #608dfd;
}
.navbar-default .navbar-toggle:hover > .icon-bar {
  background-color: #608dfd;
}
.section-title {
  margin-bottom: 70px;
}
.section-title h2 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.section-title p {
  font-size: 18px;
}
.btn-custom {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  padding: 16px 36px;
  letter-spacing: 2px;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  border-radius: 0;
  transition: all 0.3s ease;
  border: 2px solid #000;
}
.btn-custom:hover,
.btn-custom:focus,
.btn-custom.focus,
.btn-custom:active,
.btn-custom.active {
  color: #000;
  background-color: transparent;
  border-color: #000;
}
.btn:active,
.btn.active {
  background-image: none;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
a:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn.active.focus {
  outline: none;
  outline-offset: none;
}
/* Header Section */
.intro {
  display: table;
  width: 100%;
  padding: 0;
  background: linear-gradient(135deg, #f8f8f8 0%, #e5e5e5 100%);
  position: relative;
  overflow: hidden;
}

.intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.03) 0%, transparent 50%);
  z-index: 1;
  animation: gradientMove 15s ease infinite;
}

.intro::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 48%, #000 49%, #000 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, #000 49%, #000 51%, transparent 52%);
  background-size: 60px 60px;
  opacity: 0.03;
  z-index: 1;
  animation: patternMove 20s linear infinite;
}

@keyframes gradientMove {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes patternMove {
  0% { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

.intro .overlay {
  background: transparent;
  position: relative;
  z-index: 2;
}

.intro h1 {
  font-family: "Raleway", sans-serif;
  color: #000;
  font-size: 72px;
  font-weight: 800;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out;
}

.intro h1 span {
  font-weight: 800;
  color: #000;
  position: relative;
  display: inline-block;
}

.intro h1 span::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #000;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: lineWidth 1.5s ease-out forwards;
}

.intro p {
  color: #333;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 auto;
  margin-bottom: 40px;
  max-width: 800px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
  animation: fadeInUp 1s ease-out 0.3s both;
}

/* Apple iMac Style PC Screen */
.pc-screen {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 260px;
  background: #222;

  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  overflow: visible;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.5s both;
}

.pc-screen-inner {
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 18px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 32px 32px 16px 32px;
}

.pc-chin {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 17px;
  background: #fff;

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #000;
  letter-spacing: 1px;
}

.pc-chin::after {
  content: 'ERROR SOFTWARE';
  display: block;
  margin-top: 1px;
}

.pc-stand {
  position: absolute;
  left: 50%;
  bottom: -65px;
  transform: translateX(-50%);
  width: 200px;
  height: 12px;
  background: #fff;
  border-radius: 0 0 24px 24px;
  border: 1px solid #bbb;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  z-index: 4;
}

.pc-stand-neck {
  position: absolute;
  left: 50%;
  bottom: -65px;
  transform: translateX(-50%);
  width: 25px;
  height: 70px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #bbb;
  z-index: 4;
}

.screen-content {
  width: 100%;
  height: 100%;
  background: transparent;
  font-family: "Raleway", sans-serif;
  color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.code-line {
  height: 24px;
  background: transparent;
  margin: 6px 0;
  position: relative;
  display: flex;
  align-items: center;
}

/* .code-line::before {
  content: 'Error';
  color: #111;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 2px;
  animation: typing 2s infinite;
  display: inline-block;
} */

.code-line:nth-child(1) { width: 80%; }
.code-line:nth-child(2) { width: 80%; }
.code-line:nth-child(3) { width: 80%; }
.code-line:nth-child(4) { width: 80%; }
.code-line:nth-child(5) { width: 80%; }

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

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate(50px, -50%);
  }
  to {
    opacity: 1;
    transform: translate(0, -50%);
  }
}

@keyframes lineWidth {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes screenGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 0, 0.1); }
  50% { box-shadow: 0 0 30px rgba(255, 0, 0, 0.2); }
}

@keyframes typing {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

header .intro-text {
  padding-top: 300px;
  padding-bottom: 180px;
  text-align: left;
  position: relative;
  z-index: 2;
  max-width: 50%;
  margin-left: 10%;
}

/* @media (max-width: 1200px) {
  .pc-screen {
    width: 300px;
    height: 180px;
  }
  .pc-screen-inner {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 24px;
    padding: 16px 12px 8px 12px;
  }
  .pc-chin {
    height: 24px;
  }
  .pc-stand {
    width: 50px;
    height: 20px;
    bottom: -32px;
  }
  .pc-stand-neck {
    width: 10px;
    height: 32px;
    bottom: -18px;
  }
  .code-line::before {
    font-size: 13px;
  }
  header .intro-text {
    max-width: 60%;
  }
} */

@media (max-width: 768px) {
  .pc-screen {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 300px;
    height: 180px;
    margin: 100px auto 0;
  }
  
  .pc-stand {
    width: 150px;
    height: 5px;
    bottom: -32px;
  }
  
  .pc-stand-neck {
    width: 10px;
    height: 40px;
    bottom: -30px;
  }

  header .intro-text {
    max-width: 100%;
    margin-left: 0;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 120px;
  }

  .top-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .intro h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 15px;
    padding: 0 15px;
  }

  .intro p {
    font-size: 18px;
    padding: 0 20px;
    margin-bottom: 30px;
  }
}

@media (max-width: 500px) {
  .pc-screen {
    width: 260px;
    height: 160px;
    margin: 80px auto 0;
  }

  .code-line {
    font-size: 10px;
  }

  .pc-chin {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 17px;
    background: #fff;
  
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    font-size: 9px;
    color: #000;
    letter-spacing: 1px;
  }
  
  .pc-chin::after {
    content: 'ERROR SOFTWARE';
    display: block;
    margin-top: 1px;
  }

  .intro h1 {
    font-size: 36px;
    line-height: 1.3;
    padding: 0 10px;
  }

  .intro p {
    font-size: 16px;
    padding: 0 15px;
  }

  header .intro-text {
    padding-top: 150px;
    padding-bottom: 100px;
  }
}
/* Features Section */
#features {
  background: #fff;
  padding: 100px 0;
}

#features .section-title {
  margin-bottom: 60px;
}

#features .section-title h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 30px;
}

#features .section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #000;
  margin: 20px auto 0;
}

#features i {
  font-size: 48px;
  color: #000;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

#features h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

#features p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0;
}

#features .col-xs-6 {
  margin-bottom: 60px;
  padding: 0 30px;
}

#features .col-xs-6:hover i {
  transform: translateY(-5px);
}
/* About Section */
#about {
  padding: 100px 0;
  background: #f8f8f8;
}

#about .about-text {
  padding: 0 30px;
}

#about .about-text h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 30px;
}

#about .about-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #000;
  margin: 20px 0;
}

#about .about-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 30px 0 20px;
  color: #000;
}

#about .about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

#about .list-style {
  margin-top: 30px;
}

#about .list-style ul {
  padding-left: 0;
}

#about .list-style ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
}

#about .list-style ul li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #000;
  transform: rotate(45deg);
}

#about img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
/* Services Section */
#services {
  padding: 100px 0;
  background: #fff;
}

#services .section-title {
  margin-bottom: 60px;
}

#services .section-title h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 30px;
}

#services .section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #000;
  margin: 20px auto 0;
}

#services i {
  font-size: 48px;
  color: #000;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

#services .service-desc {
  padding: 0 20px;
}

#services h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

#services p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0;
}

#services .col-md-4 {
  margin-bottom: 60px;
}

#services .col-md-4:hover i {
  transform: translateY(-5px);
}
/* Portfolio Section */
/*
#portfolio {
  padding: 100px 0;
}
.portfolio-item {
  margin: 1px -15px 0 -14px;
  padding: 0;
}
.portfolio-item .hover-bg {
  overflow: hidden;
  position: relative;
  margin: 0;
}
.hover-bg .hover-text {
  position: absolute;
  text-align: center;
  margin: 0 auto;
  color: #fff;
  background: linear-gradient(
    to right,
    rgba(99, 114, 255, 0.8) 0%,
    rgba(92, 169, 251, 0.8) 100%
  );
  padding: 30% 0 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: all 0.5s;
}
.hover-bg .hover-text > h4 {
  opacity: 0;
  color: #fff;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  transition: all 0.3s;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  text-transform: uppercase;
}
.hover-bg:hover .hover-text > h4 {
  opacity: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.hover-bg:hover .hover-text {
  opacity: 1;
}
*/
/* Testimonials Section */
#testimonials {
  padding: 100px 0;
  background: #f8f8f8;
}

#testimonials .section-title {
  margin-bottom: 60px;
}

#testimonials .section-title h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 30px;
}

#testimonials .section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #000;
  margin: 20px auto 0;
}

#testimonials .testimonial {
  background: #fff;
  padding: 40px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

#testimonials .testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

#testimonials .testimonial-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #000;
}

#testimonials .testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

#testimonials .testimonial-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  font-style: italic;
  margin-bottom: 20px;
}

#testimonials .testimonial-meta {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
}
/* Team Section */
#team {
  padding: 100px 0;
}
#team h4 {
  margin: 5px 0;
}
#team .team-img {
  width: 240px;
}
#team .thumbnail {
  background: transparent;
  border: 0;
}
#team .thumbnail .caption {
  padding: 10px 0 0;
  color: #888;
}
/* Contact Section */
.contact-row {
  display: flex;
  justify-content: center;
}
#contact {
  padding: 100px 0;
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
  z-index: 1;
}

#contact .section-title {
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

#contact .section-title h2 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 30px;
  color: #fff;
}

#contact .section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #fff;
  margin: 20px auto 0;
}

#contact .section-title p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

#contact .contact-info {
  background: rgba(255, 255, 255, 0.03);
  padding: 40px;
  border-radius: 4px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

#contact .contact-info:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

#contact .contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

#contact .contact-info p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
}

#contact .contact-info .working-hours {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 20px 0;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#contact .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

#contact .contact-info .contact-item i {
  font-size: 20px;
  color: #fff;
  margin-right: 15px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

#contact .contact-info:hover .contact-item i {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

#contact .contact-info .contact-item p {
  margin: 0;
  font-size: 16px;
}

#contact form {
  padding-top: 20px;
  position: relative;
  z-index: 2;
}

#contact .form-control {
  display: block;
  width: 100%;
  padding: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

#contact .form-control:focus {
  border-color: #fff;
  outline: 0;
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.1);
}

#contact .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

#contact .btn-custom {
  margin: 30px 0;
  background: #fff;
  color: #000;
  border: 2px solid #fff;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 16px 36px;
  transition: all 0.3s ease;
}

#contact .btn-custom:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

#contact .social {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 50px;
  margin-top: 50px;
  text-align: center;
  position: relative;
  z-index: 2;
}

#contact .social ul li {
  display: inline-block;
  margin: 0 15px;
}

#contact .social i.fa {
  font-size: 20px;
  width: 45px;
  height: 45px;
  padding: 12px 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#contact .social i.fa:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  #contact .contact-info {
    margin-bottom: 30px;
  }
  
  #contact .section-title h2 {
    font-size: 36px;
  }
}
/* Footer Section*/
#footer {
  background: #f6f6f6;
  padding: 30px 0;
}
#footer p {
  color: #888;
  font-size: 14px;
}
#footer a {
  color: #608dfd;
}
#footer a:hover {
  border-bottom: 2px solid #608dfd;
}

@media (max-width: 768px) {
  #about img {
    margin: 50px 0;
  }
}
