
body { font-family: 'Inter', sans-serif; margin:0; color:#333; }
/* Navbar */
.navbar { background: rgba(255,255,255,0.95); backdrop-filter: blur(6px); box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.navbar-brand { font-weight: 700; color: #0d6efd !important; }
/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('../assets/img/bg-showcase-1.jpg') center/cover no-repeat;
  color:#e6f7e6; 
  text-align:center; 
  padding:8rem 1rem;
}
.hero h1 { font-size:3rem; font-weight:700; margin-bottom:1rem; }
.hero p { font-size:1.2rem; margin-bottom:2rem; }
/* Services */
.services { 
  padding:5rem 0;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  color: #212529;
  position: relative;
  height: auto; 
  background-image: url("../assets/img/back_service.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* optional parallax */
  overflow: hidden;
}

.services::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.4) 50%,
    transparent 100%
  );

  transform: skewX(-25deg);

  /* position animated using a CSS variable */
  left: var(--shine-position, -150%);
}
.end_txt{
  color: #262625;
  background: #f1f1f1;
  padding: 18px 22px;
  border-radius: 10px;
  margin-top: 30px;
  text-align: center;
}
.service-card { background:#fff; border-radius:1rem; padding:2rem; box-shadow:0 6px 20px rgba(0,0,0,0.05); transition:0.3s; }
.service-card:hover { transform:translateY(-5px); box-shadow:0 8px 25px rgba(0,0,0,0.1); }
.service-card i { font-size:2.5rem; color:#0d6efd; margin-bottom:1rem; }
/* Portfolio */
.portfolio{
  color: #262625;
  position: relative;
  height: auto; 
  background-image: url("../assets/img/back_port.png");
  background-size: cover;
  background-position: center;
  background-attachment: parallax; /* optional parallax */
  overflow: hidden;

}
.portfolio img { width:100%; border-radius:0.5rem; transition: transform 0.3s ease; }
.portfolio img:hover { transform: scale(1.05); }
/* Testimonials */
.testimonials { 
  padding:5rem 0; 
  text-align:center; 
  position: relative;
  height: auto; 
  background-image: url("../assets/img/back_comment.png");
  background-size: cover;
  background-position: center;
  background-attachment: parallax; /* optional parallax */
  overflow: hidden;
}

.testimonials::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.4) 50%,
    transparent 100%
  );

  transform: skewX(-25deg);

  /* position animated using a CSS variable */
  left: var(--shine-position, -150%);
}
.testimonial-card { background:#fff; 
  border-radius:1rem; 
  padding:2rem; 
  margin-bottom:1.5rem; 
  margin-top: 1rem;
  box-shadow:0 4px 15px rgba(0,0,0,0.05); 
  transition:0.3s;
  }
.testimonial-card:hover { transform:translateY(-5px); box-shadow:0 8px 25px rgba(0,0,0,0.1); }
.testimonial-card img { width:80px; height:80px; object-fit:cover; border-radius:50%; margin-bottom:1rem; }
/* Contact */
.contact {
  color: #fff;
  padding: 5rem 1rem;
  text-align: center;
  position: relative;
  height: auto; 
  background-image: url("../assets/img/back_contact.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* optional parallax */
  overflow: hidden;
}
.contact i { margin-right:0.1rem; }
.contact a { color:#fff; margin:0 0.1rem; transition:0.3s; }
.contact a:hover { color:#ffc107; }
/* Footer */
footer { background:#f8f9fa; padding:2rem 1rem; text-align:center; }
footer a { color:#0d6efd; text-decoration:none; }
footer a:hover { text-decoration:underline; }
/* Button */
.btn-primary { border-radius:50px; padding:0.6rem 1.5rem; font-weight:600; transition:all 0.3s; }  .btn-primary:hover { transform:translateY(-2px); box-shadow:0 6px 15px rgba(0,0,0,0.15); }
.service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }



.contact-heading {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
}

.contact-subtext {
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

/* Card */
.contact-card-modern {
  max-width: 500px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 1.5rem;
  transition: all 0.4s ease;
}

.contact-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Contact Info */
.contact-item {
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding-left: 3.5rem;
  padding-top: 1.5rem;
}

.contact-link {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  word-break: break-word;
}

.contact-link:hover {
  color: #ffd60a;
}

.contact-social {
  font-size: 0.9rem;
  opacity: 0.8;
  text-decoration: none;
}

.contact-social:hover {
  color: #ffd60a;
  opacity: 1;
}

/* Icons */
.icon-circle {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.contact-item:hover .icon-circle {
  box-shadow: 0 0 12px #ffd60a;
  transform: scale(1.1);
}

/* Socials */
.contact-icon {
  color: #fff;
  transition: all 0.3s ease;
}

.contact-icon:hover {
  color: #ffd60a;
  transform: scale(1.15);
}

/* Button */
.contact-btn {
  transition: all 0.3s ease;
  border-radius: 50px;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 214, 10, 0.4);
}

.footer_{
  background: linear-gradient(135deg, #001219, #004b23); 
  color: #fff; 
  padding: 3rem 1rem 1.5rem; 
  position: relative; 
  overflow: hidden;
  padding:3rem 0; 
  text-align:center; 
  position: relative;
  height: auto; 
  background-image: url("../assets/img/back_foot.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* optional parallax */
  overflow: hidden;

}
footer .footer-icon {
      color: #fff;
      transition: all 0.3s ease;
    }
    footer .footer-icon:hover {
      color: #ffd60a;
      transform: translateY(-3px);
    }
    footer a.text-light:hover {
      color: #ffd60a !important;
    }

cennik { font-family: 'Inter', sans-serif; margin:0; color:#333; }

    table {
      width: 100%;
      border-collapse: collapse;
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    th, td {
      padding: 14px 20px;
      text-align: left;
    }

    th {
      background-color: #0077cc;
      color: white;
      text-transform: uppercase;
      font-size: 14px;
      letter-spacing: 0.05em;
    }

    tr:nth-child(even) {
      background-color: #f2f6fa;
    }

    tr:hover {
      background-color: #eaf4ff;
      transition: background 0.3s ease;
    }

    td:first-child {
      font-weight: 500;
    }

    caption {
      caption-side: bottom;
      text-align: right;
      padding: 10px;
      font-size: 12px;
      color: #666;
    }
/* Modern Modal Styling */
.modal-content {
  border-radius: 20px;
  border: none;
  padding: 10px 5px;
  background: #ffffff;
  box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.2);
  animation: modalSlideUp .35s ease;
}

.modal-header {
  border-bottom: none;
  padding: 25px 30px 10px;
}

.modal-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1b4332;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-body {
  padding: 10px 30px 30px;
  font-size: 1.05rem;
  color: #343a40;
  line-height: 1.6;
}

.modal-body ul {
  padding-left: 20px;
}

.modal-body ul li {
  margin-bottom: 6px;
}

/* Slight glass-like backdrop */
.modal-backdrop.show {
  backdrop-filter: blur(4px);
  opacity: 0.5;
}

/* Animation */
@keyframes modalSlideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 576px) {
  .contact-card-modern {
    padding: 0.1rem;
  }

  .icon-circle {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .contact-link {
    font-size: 0.95rem;
  }
  th, td {
        padding: 10px;
        font-size: 14px;
      }

  .contact-item{
    margin: center;
    padding-left: 3.2rem
  }
  .testimonial-card{
    margin-top: 3.5rem;
  }
}
    