/* BUTTON */
    .infra-btn-primary {
      background: linear-gradient(135deg, #0593ff, #0077cc);
      border: none;
      padding: 10px 22px;
      border-radius: 30px;
      font-weight: 500;
      color: #fff;
    }

    /* HERO */
    .infra-hero {
      position: relative;
      background: url('https://ubt.school/wp-content/uploads/2026/04/Edukimi-per-gjeneraten-SMART-1.jpg');
      background-size: cover;
      background-position: center;
      padding: 160px 0;
      color: white;
      overflow: hidden;
    }

    .infra-hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 60%;
      height: 100%;
      background: linear-gradient(90deg, rgba(0,25,60,0.95) 0%, rgba(0,25,60,0.8) 60%, rgba(0,0,0,0) 100%);
      z-index: 1;
    }

    .infra-hero-content {
      position: relative;
      z-index: 2;
      max-width: 350px;
    }

    .infra-hero h1 {
      font-size: 56px;
      font-weight: 700;
      line-height: 1.2;
      color: white;
    }

    .infra-hero p {
      margin: 20px 0;
      opacity: 0.85;
    }

    /* TITLES */
    .infra-section-title {
      font-weight: 700;
      font-size: 32px;
    }

    .infra-text-primary {
      color: #0593ff;
    }

    /* MINI FEATURES */
    .infra-mini-feature {
      text-align: center;
      font-size: 14px;
      color: #666;
    }

    /* CARDS */
    .infra-card {
      border: none;
      border-radius: 20px;
      overflow: hidden;
      transition: 0.3s;
    }

    .infra-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .infra-card img {
      height: 200px;
      object-fit: cover;
      width: 100%;
    }

    /* FEATURES */
    .infra-features {
      background: linear-gradient(90deg, #001f4d, #0593ff);
      color: white;
    }

    .infra-features h6 {
      font-weight: 600;
    }

    /* CTA */
    .infra-cta {
      background: linear-gradient(135deg, #f8fbff, #eaf4ff);
      padding: 50px;
      border-radius: 20px;
    }

    .infra-cta h4 {
      font-weight: 700;
    }

    /* RESPONSIVE */
    @media (max-width: 991px) {
      .infra-hero {
        padding: 120px 0;
      }

      .infra-hero h1 {
        font-size: 42px;
      }
    }

    @media (max-width: 767px) {
      .infra-hero::before {
        width: 100%;
        background: rgba(0,25,60,0.85);
      }

      .infra-hero-content {
        max-width: 100%;
        text-align: center;
      }

      .infra-hero h1 {
        font-size: 32px;
      }

      .infra-section-title {
        font-size: 26px;
      }

      .infra-card img {
        height: 180px;
      }
    }
    .infra-quote-section {
      position: relative;
      background: url('/mnt/data/938defc3-c953-4457-92a0-fce90b70057e.png');
      background-size: cover;
      background-position: center;
      padding: 120px 0;
      color: #fff;
    }

    .infra-quote-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, rgba(0,31,77,0.85), rgba(0,31,77,0.4));
    }

    .infra-quote-text {
      position: relative;
      z-index: 2;
      font-size: 32px;
      font-weight: 600;
    }

    .infra-quote-line {
      width: 80px;
      height: 4px;
      background: #0593ff;
      margin: 20px auto 0;
      position: relative;
      z-index: 2;
      border-radius: 2px;
    }

    @media (max-width: 768px) {
      .infra-quote-text {
        font-size: 22px;
        line-height: 1.4;
      }

      .infra-quote-section {
        padding: 80px 0;
      }
    }