/* Base Styles */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --dark-color: #343a40;
    --light-color: #f8f9fa;
    --transition-speed: 0.3s;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    font-weight: 400;
    background: #fff;
    color: rgba(0, 0, 0, 0.7);
  }
  
  h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: #000;
  }
  
  a {
    transition: all var(--transition-speed) ease;
    color: var(--primary-color);
  }
  
  a:hover, a:focus {
    text-decoration: none;
    color: var(--primary-color);
    outline: none;
  }
  
  /* Navbar */
  .ftco-navbar-light {
    background: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 30px 0;
  }
  
  .ftco-navbar-light .navbar-brand {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 3px;
  }
  
  .ftco-navbar-light .navbar-brand:hover, .ftco-navbar-light .navbar-brand:focus {
    color: #fff;
  }
  
  .ftco-navbar-light .navbar-nav > .nav-item > .nav-link {
    font-size: 14px;
    padding: 1.5rem 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
  }
  
  .ftco-navbar-light .navbar-nav > .nav-item > .nav-link:hover {
    color: #fff;
  }
  
  .ftco-navbar-light .navbar-nav > .nav-item.active > a {
    color: var(--primary-color);
  }
  
  .ftco-navbar-light.scrolled {
    position: fixed;
    background: #fff !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }
  
  .ftco-navbar-light.scrolled .navbar-brand {
    color: var(--dark-color);
  }
  
  .ftco-navbar-light.scrolled .nav-link {
    color: rgba(0, 0, 0, 0.7) !important;
  }
  
  .ftco-navbar-light.scrolled .nav-link:hover {
    color: var(--primary-color) !important;
  }
  
  .ftco-navbar-light.scrolled .nav-item.active .nav-link {
    color: var(--primary-color) !important;
  }
  
  /* Home Slider */
  .home-slider {
    height: 100vh;
    min-height: 750px;
    background: linear-gradient(135deg, #1c1c1c 0%, #2d2d2d 100%);
    position: relative;
    z-index: 0;
  }
  
  .slider-item {
    height: 100vh;
    min-height: 750px;
    position: relative;
  }
  
  .slider-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }
  
  .slider-text {
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .slider-text h1 {
    font-size: 60px;
    color: #fff;
    line-height: 1.2;
    font-weight: 200;
  }
  
  .slider-text p.subtitle {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
  }
  
  .typewrite > .wrap {
    border-right: 0.08em solid #fff;
  }
  
  /* Main Sections */
  .ftco-section {
    padding: 7em 0;
  }
  
  .ftco-section-parallax {
    position: relative;
    overflow: hidden;
    background: #060c21;
    padding: 7em 0;
  }
  
  .parallax-img {
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/bg-abstract.jpg);
    height: 100%;
    min-height: 500px;
  }
  
  .heading-section-white h2 {
    color: #fff;
    font-size: 40px;
  }
  
  .heading-section-white p {
    color: rgba(255, 255, 255, 0.9);
  }
  
  .lead {
    font-size: 24px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2em;
  }
  
  .connect-details {
    margin-top: 30px;
  }
  
  .connect-details p {
    font-size: 18px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
  }
  
  .connect-details p i {
    margin-right: 10px;
    color: var(--primary-color);
  }
  
  /* Abstract Design Elements */
  .abstract-element {
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--primary-color), transparent);
    margin: 0 auto 40px;
    border-radius: 50%;
    opacity: 0.7;
  }
  
  .abstract-element-2 {
    width: 150px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 40px auto 0;
  }
  
  /* Footer */
  .ftco-footer {
    padding: 3em 0;
    background: #1c1c1c;
  }
  
  .ftco-footer p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Loader */
  #ftco-loader {
    position: fixed;
    width: 96px;
    height: 96px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.24);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease-out, visibility 0s linear .2s;
    z-index: 1000;
  }
  
  #ftco-loader.show {
    transition: opacity .4s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
  }
  
  #ftco-loader .circular {
    animation: loader-rotate 2s linear infinite;
    position: absolute;
    left: calc(50% - 24px);
    top: calc(50% - 24px);
    display: block;
    transform: rotate(0deg);
  }
  
  #ftco-loader .path {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    animation: loader-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
  }
  
  @keyframes loader-rotate {
    100% {
      transform: rotate(360deg);
    }
  }
  
  @keyframes loader-dash {
    0% {
      stroke-dasharray: 1, 200;
      stroke-dashoffset: 0;
    }
    50% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -35px;
    }
    100% {
      stroke-dasharray: 89, 200;
      stroke-dashoffset: -124px;
    }
  }
  
  /* Media Queries */
  @media (max-width: 991.98px) {
    .ftco-navbar-light {
      background: #000 !important;
      position: relative;
      top: 0;
      padding: 10px 0;
    }
    
    .slider-text h1 {
      font-size: 40px;
    }
    
    .home-slider, .slider-item {
      height: 750px;
      min-height: 750px;
    }
  }
  
  @media (max-width: 767.98px) {
    .home-slider, .slider-item {
      height: 650px;
      min-height: 650px;
    }
    
    .slider-text h1 {
      font-size: 30px;
    }
    
    .slider-text p.subtitle {
      font-size: 18px;
    }
    
    .lead {
      font-size: 18px;
    }
  }