main {
    background-color: #000;
    color: #fff;
  
  }

  /* Hero Section */
  main .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  .hero-image{
    position: absolute;
    top:5%;
    width: 100%;
    height: 100%;
    object-fit: cover;
  padding:0 1rem;
    z-index: 1;
  }
  .hero-image img{
    width: 100%;
    height: 80%;
  }
.hero-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  background-color:black ;
  opacity: 0.7;
    filter: blur(8px);
    z-index: 1;
  }
  main .hero-content {
    z-index: 2;
    padding: 2rem;
    width: 75%;
    /* background: rgba(0, 0, 0, 0.5); */
    border-radius: 10px;
  }

  .hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    /* font-weight: bold; */
    color: #ccc;
    
  }

  .btn-primary {
    background-color: #1673ff;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
  }

  /* Clients Section */
  .clients {
    text-align: center;
    margin: 40px 0;
    border-top: 1px solid #444;
    padding-top: 20px;
  }

  .clients div{
    background: url(/assets/images/common/common-backround.png) no-repeat center center;
    padding: 10px;
  }
  .clients img {
    height: 35px;
    margin: 10px 20px;
    opacity: 0.8;
  }

  /* Services Section */
  .services {
    padding: 60px 20px;
  
  }

  .services .left-menu {
    /* background: #1967FB; */
    background:#1b388f;
    padding: 20px;
    border-radius: 10px 0 0 10px;
    color: #ccc;
    height: 100%;
  }

  .services .left-menu div {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s;
  }

  .services .left-menu div.active {
    color: #fff;
    font-weight: bold;
    background-color: #01234d;
  }

  .services .content-box {
    background: #000;
    border: 0.5px solid #1b388f;
    border-left: 2px solid #1b388f;
    padding: 20px;
    border-radius: 0 10px 10px 0;
    color: #aaa;
    min-height: 200px;
  }
  .tab{
    font-size: large;
  }
  #tab-content h5{
    font-size:x-large;
  }
  #tab-content p{
    font-size:small;
  }

  .services .content-box h5 {
    color: #fff;
    font-weight: 700;
  }


  .clients p{
    color: var(--text-white);
}

.contact-form input , .contact-form textarea {
    background-color: #000 !important;
    border:  none !important ;
    border-bottom: 0.5px solid white !important;
}


  @media (max-width: 768px) {

  
    main .hero {
      position: relative;
      max-height: 700px;
      display: flex;
      align-items: center;
      justify-content: end;
      /* text-align: center; */
      flex-direction: column;
    }
    main .hero-content{
      width: 100%;
      padding: 0 2rem;
    }
    .hero-image{
      position: absolute;
      
      object-fit: cover;
      z-index: 1;
    }
    .hero-image img{
      width: 100%;
      height: 50%;
    }
    .hero h1 {
      font-size: 2rem;
    }
    .hero p{
      font-size: 1rem;

    }
  
    .services .left-menu, .services .content-box {
      border-radius: 10px;
    }

  }
  
@media (max-width: 576px) {
  main .hero {
    position: relative;
    max-height: 450px;
    display: flex;
    align-items: center;
    justify-content: end;
    /* text-align: center; */
    flex-direction: column;
  }

  .hero-image{
    position: absolute;
    
    object-fit: cover;
    z-index: 1;
  }
  .hero-image img{
    width: 100%;
    height: 40%;
  }
  .hero h1 {
    font-size: 1rem;
  }
  .hero p{
    font-size: 0.6rem;

  }

}


  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

.bg-dark-custom {
    background-color: #000;
    color: #fff;
}

.header-section {
    padding: 60px 0;
}

.emerging-tech-section {
    padding: 80px 0;
    background-color: #000;
    color: #fff;
}

.tech-card {
    background-color: #111;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #333;
}

.tech-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tech-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #111 100%);
    color: #fff;
}

.contact-form {
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    border: 1px solid #444;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}



.industry-section {
    padding: 80px 0;
    background-color: #000;
    color: #fff;
}

.industry-card {
    background-color: #111;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 1px solid #333;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.industry-card .icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767.98px) {
    .tech-card, .industry-card {
        margin-bottom: 20px;
    }
}
