/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 50vh; /* Changed from 100vh to 50vh */
    background: linear-gradient(45deg, rgba(102, 102, 102, 0.8), rgba(255, 153, 0, 0.8)), url("../img/generative.jpg") center center no-repeat;
    background-size: cover;
  }
  
  #hero .container {
    padding-top: 72px;
  }
  
  #hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: #fff;
  }
  
  #hero h2 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-size: 24px;
  }
  
  #hero .btn-get-started {
    font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 28px 11px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px 0 0 0;
    color: #fff;
    background: #ff9900;
  }
  
  #hero .btn-get-started:hover {
    background: #e68a00;
  }
  
  #hero .animated {
    animation: up-down 2s ease-in-out infinite alternate-reverse both;
  }
  
  @media (max-width: 991px) {
    #hero {
      height: 100vh; /* Changed back to 100vh for mobile devices */
      text-align: center;
    }
  
    #hero .animated {
      -webkit-animation: none;
      animation: none;
    }
  
    #hero .hero-img {
      text-align: center;
    }
  
    #hero .hero-img img {
      width: 50%;
    }
  }
  
  @media (max-width: 768px) {
    #hero h1 {
      font-size: 28px;
      line-height: 36px;
    }
  
    #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  
    #hero .hero-img img {
      width: 70%;
    }
  }
  
  @media (max-width: 575px) {
    #hero .hero-img img {
      width: 80%;
    }
  
    #hero .btn-get-started {
      font-size: 16px;
      padding: 10px 24px 11px 24px;
    }
  }
  
  @-webkit-keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  
  @keyframes up-down {
    0% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(-10px);
    }
  }
  /*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
    padding: 60px 0;
  }
  
  .services .section-title {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .services .section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
  }
  
  .services .section-title p {
    font-size: 18px;
    color: #666;
  }
  
  .services .icon-box {
    text-align: center;
    padding: 40px;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
  }
  
  .services .icon-box:hover {
    transform: translateY(-5px);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
  }
  
  .services .icon-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #ff9900;
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .services .icon-box:hover::before {
    transform: scaleX(1);
  }
  
  .services .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: #666;
    color: #fff;
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 32px;
    transition: all 0.3s ease;
  }
  
  .services .icon-box:hover .icon {
    background-color: #ff9900;
    color: #fff;
  }
  
  .services .title {
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #333;
  }
  
  .services .description {
    margin-bottom: 0;
    font-size: 16px;
    color: #666;
  }
  
  @media (max-width: 991px) {
    .services .icon-box {
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 767px) {
    .services .section-title h2 {
      font-size: 28px;
    }
  
    .services .section-title p {
      font-size: 16px;
    }
  
    .services .icon-box {
      padding: 30px;
    }
  
    .services .icon {
      width: 60px;
      height: 60px;
      font-size: 28px;
    }
  
    .services .title {
      font-size: 18px;
    }
  
    .services .description {
      font-size: 14px;
    }
  }