/* General Layout and Header Styles */
  .top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1030;
    padding-top: 40px;
    background: transparent;
    transition: opacity 0.3s ease;
  }

  .top-bar.hidden {
    display: none;
  }

  .navbar-wrapper {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 1020;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  .navbar-wrapper.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .navbar-wrapper.scrolled .navbar-nav > li > a,
  .navbar-wrapper.scrolled .navbar-brand {
    color: #000 !important;
  }

  .logo {
    height: 50px;
  }

  .contact-info {
    text-align: right;
    font-size: 13px;
    color: #fff
  }

  .contact-info p {
    margin: 0;
  }

  .navbar-nav > li > a {
    color: #fff !important;
    font-weight: 600;
    font-size: 14px;
  }

  .navbar-brand {
    color: #fff !important;
    font-weight: bold;
  }

  .hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    color: #fff;
    z-index: 1;
    flex-direction: column;
    overflow:hidden;
  }

video{
    width: 120%;
}

.hero-content {
    position: absolute;
    left:0;
    z-index: 100000;
    width: 100%;
}

  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: cover;
  }

  .hero-content {
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 0px;
    margin-top: 100px;
  }

  .hero h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 34px;
    margin-top: 0px;
    font-weight: 100;
  }

  @media (max-width: 767px) {
    .hero h1 {
      font-size: 30px;
    }

    .hero h3 {
      font-size: 18px;
    }
  }

  .section-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
    font-size: 37px;
  }

  /* About Section Styles */
  #about {
    background: #f0efef;
    padding: 79px 20px;
    padding-bottom: 100px;
    background-image: url(bg1.png);
    background-repeat: repeat-y;
    background-position: 100%;
    background-size: 86px;
  }

  #about .text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    width:100%;
    font-size: 16px;
  }

  /* Services Section Styles */
  #services {
    background: #0e1d36;
    color: #fff;
    padding: 75px 20px;
  }

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

  .service-box {
    text-align: center;
    margin-bottom: 30px;
  }

  .service-box img {
    height: 60px;
    margin-bottom: 15px;
  }

  #services .row > div {
    border-right: 1px solid rgba(255, 255, 255, 1);
    padding-right: 30px;
    padding-left: 50px;
    text-align: left;
  }

  @media (max-width: 767px) {
    #services .row > div {
      border-right: 1px solid rgba(255, 255, 255, 0);
      border-bottom: 1px solid #fff;
      padding-bottom: 24px;
      margin-bottom: 45px;
      padding-left: 0px;
    }
  }

  #services .row > div:last-child {
    border-right: none;
  }

  #services p {
    font-size: 16px;
    margin-top:30px
  }

  /* Projects Section Styles */
  #projects {
    background: #fff;
    padding: 70px 0px;
  }
  #projects .section-title {
    margin-bottom: 0px;
  }

  #projects h4 {
    font-weight: 400;
    margin-bottom: 30px;
    font-size: 20px;
  }

  #projects .col-sm-4 {
    padding-right: 2px;
    padding-left: 2px;
    padding-bottom: 3px;
  }

  .project-item {
    position: relative;
    text-align: center;
    margin-bottom: 0px;
  }

  .project-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }

  .project-caption {
    position: absolute;
    color: #fff;
    padding: 0px;
    bottom: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    font-size: 21px;
    font-weight: 300;
    transform: translate(0px, 50%);
    z-index: 100;
  }

  .project-caption,
  .project-caption-layer {
    transition: opacity 0.3s ease;
    text-transform: uppercase;
  }

  .project-item:hover .project-caption,
  .project-item:hover .project-caption-layer {
    opacity: 0;
  }

  .portfolio-link {
    display: inline-block;
    margin-top: 43px;
    padding: 10px 20px;
    background-color: #fff;
    border: 1px solid #0e1d36;
    color:#0e1d36;
    transition: background-color 0.3s ease;
  }

  .portfolio-link:hover {
    background-color: #0e1d36;
    border: 1px solid #fff;
    color:#fff;
    text-decoration: none;
  }

  .project-caption-layer {
    position: absolute;
    z-index: 99;
    bottom: 0;
    left: 0;
    width:100%;
    height: 100%;
    background-color: rgba(14,29,54,0.8);
  }

  #projects .row {
    background-color: #000;
    margin: 0px;
    padding: 0px;
  }

  @media (max-width: 767px) {
    .project-item {
      margin-bottom: 10px;
    }
  }

  /* Contact Section Styles */
  #contact {
    background: #f5f5f5;
    padding: 120px 20px;
    padding-bottom: 75px;
    margin-bottom: 0px;
  }

  .footer-bottom {
    background: #0e1d36;
    color: #fff;
    text-align: center;
    padding: 19px 10px;
    font-size: 13px;
  }

  .navbar-default {
    background-color: transparent;
    border-color: transparent;
    padding-top: 66px;
  }

  .row1 {
    border-bottom: 1px solid #fff;
    padding-bottom: 23px;
  }

  .navbar-center {
    float: none !important;
    display: table;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .navbar-nav > li > a {
      padding-right: 46px;
      padding-left: 46px;
    }
  }

  .navbar-nav > li > a {
    font-weight: 400;
  }

  .scrolled .navbar-default {
    padding-top: 0px;
  }

  .scrolled {
    top: 0px;
  }

  .scrolled .navbar-default {
    margin-bottom: 0px;
  }

  .navbar-wrapper.scrolled {
    background-color: rgba(12, 29, 52, 0.9);
  }

  .navbar-wrapper.scrolled .navbar-nav > li > a, .navbar-wrapper.scrolled .navbar-brand {
    color: #fff !important;
  }

  @media (max-width: 767px) {
    .top-bar {
      display: none !important;
    }

    .navbar-wrapper {
      top: 0 !important;
      background-color: rgba(12, 29, 52, 0.9);
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .navbar-wrapper .navbar-nav > li > a,
    .navbar-wrapper .navbar-brand {
      color: #fff !important;
    }

    .navbar-default {
      padding-top: 0 !important;
      margin-bottom: 0 !important;
    }

    .navbar-brand.visible-xs {
      display: block !important;
    }
  }

  .footer-logo {
    height: 50px;
    margin-bottom: 40px;
  }

  .footer-icon {
    margin-right: 15px;
  }

  #contact {
    font-size: 16px;
  }
  
  
  
  
  @media (max-width: 767px) {
      
      .hero {

    height: 68vh;
    
      }
      
      .hero-video {

    height: 200px;

}


  }