@media screen and (min-width: 769px) and (max-width: 1024px) {
  main{
    overflow-x: hidden;
    background-color: hsl(240, 100%, 5%);
    color: white;
  }

  .hlt-ctn{
    width: 100%;
    height: 100px;
    background-color: rgb(19, 19, 94);
    display: flex;
    align-items: center;
    padding: 0 30px;
  }

  .hlt-ctn h1{
    font-size: 2vw;
  }

  .content-ctn{
    padding: 30px 50px 50px;
    color: rgb(180, 180, 255);
  }

  /****/

  :root {
    --primary: #2563eb;
    --secondary: #1e40af;
    --accent: #3b82f6;
    --light: #f8fafc;
    --dark: #1e293b;
    --gray: #64748b;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  body {
    line-height: 1.6;
    color: var(--dark);
    background-color: #f1f5f9;
    overflow-x: hidden;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Header Section */
  .services-header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
  }

  .services-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/assets/images/service-herobg.jpg') center/cover;
    opacity: 0.7;
    z-index: 0;
  }

  .services-header .container {
    position: relative;
    z-index: 0;
  }

  .services-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
  }

  .services-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
  }

  /* Services Grid */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 60px 0;
  }

  .service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 350px;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .service-image {
    height: 220px;
    overflow: hidden;
  }

  .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .service-card:hover .service-image img {
    transform: scale(1.1);
  }

  .service-content {
    padding: 30px;
  }

  .service-content h2 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
  }

  .service-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--accent);
  }

  .service-content p {
    color: var(--gray);
    margin-bottom: 20px;
  }

  .service-features {
    margin: 20px 0;
  }

  .service-features li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: var(--dark);
  }

  .service-features svg {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
  }

  .service-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
  }

  .service-link:hover {
    color: var(--secondary);
  }

  .service-link svg {
    margin-left: 5px;
    transition: transform 0.3s ease;
  }

  .service-link:hover svg {
    transform: translateX(5px);
  }

  /* CTA Section */
  .cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 80px 0;
    text-align: center;
    margin: 80px 0;
    border-radius: 10px;
  }

  .cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
  }

  .cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    opacity: 0.9;
  }

  .cta-button {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  }

  .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
}