/* ======================================================
   TABLE OF CONTENTS
======================================================
1.  Font Face Declarations
2.  Root Variables
3.  General Style
    3.1 Headings
    3.2 Paragraphs
    3.3 Links
    3.4 Buttons
    3.5 Image
    3.6 Lists
4.  Utility Classes
    4.1 Color Utilities
    4.2 Background Utilities
    4.3 Sizing Utilities
    4.4 Other Utilities
5.  Navbar Styles
    5.1 Offcanvas
    5.1.1 Offcanvas Social Icon
    5.2 Dropdown
6.  Hero Styles
7.  About Styles
8.  Service Styles
9.  Process Styles
10. Pricing Styles
11. Client & Testimonials Styles
12. FAQs Styles
13. Blog Post Styles
14. Contact Styles
15. Banner Styles
16. Team Styles
17. Quotation Styles
18. Career Styles
19. 404 Error Styles
20. Single Post Styles
21. Maps Styles
22. Footer Styles
23. Animation
24. Media Queries
====================================================== */

/* ======================================================
   1. FONT FACE DECLARATIONS
   Define custom fonts used throughout the template.
====================================================== */
@font-face {
  font-family: "worksans";
  src: url(../font/worksans.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "urbanist";
  src: url(../font/urbanist.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}

/* ======================================================
   2. ROOT VARIABLES
   Global variables for colors, fonts, and reusable values.
====================================================== */
:root {
  --text-color: #5c5c5b;
  --color-main: #215343;
  --color-primary: #1e3029;
  --color-secondary: #cecece;
  --color-accent: #80c343;
  --color-bg-1: #fcf8ea;
  --color-bg-2: #ffffff;
  --color-border: #888888;
  --font-1: "worksans";
  --font-2: "urbanist";
}

html,
body {
  font-size: 16px;
  width: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

/* ======================================================
   3. GENERAL STYLE
   Base styles for HTML elements.
====================================================== */

/* ------------------------------------------------------
   3.1 HEADINGS
   Typography for all heading levels.
------------------------------------------------------ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-2);
  font-weight: 900;
  line-height: 1.3em;
  color: var(--color-primary);
  letter-spacing: 1.5px;
}

h1 {
  font-size: 55px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 38px;
}

h4 {
  font-size: 26px;
}

h5 {
  font-size: 21px;
}

h6 {
  font-size: 18px;
}

/* ------------------------------------------------------
   3.2 PARAGRAPHS
   Styles for paragraph text.
------------------------------------------------------ */
p {
  font-size: 16px;
  color: var(--text-color);
  font-weight: 400;
  font-family: var(--font-1);
  line-height: 1.8em;
}

.subtitle {
  font-size: 16px;
  font-weight: 600;
  word-spacing: 6px;
  letter-spacing: 1.5px;
  color: var(--color-accent);
}

/* span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
    font-family: var(--font-1);
} */

/* ------------------------------------------------------
   3.3 LINKS
   Anchor tag styles.
------------------------------------------------------ */
a {
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
  font-size: 16px;
  color: var(--color-primary);
  font-family: var(--font-1);
}

/* ------------------------------------------------------
   3.4 BUTTONS
   Button base styles.
------------------------------------------------------ */
button {
  font-family: var(--font-1);
  font-weight: 400;
  font-size: 16px;
  border: none;
  outline: none;
  box-shadow: none;
}

.btn-1 {
  background-color: var(--color-main);
  color: var(--color-bg-1);
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn-1:hover {
  background-color: var(--color-accent);
  color: black;
}

.btn-2 {
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn-2:hover {
  background-color: white;
}

.btn-3 {
  background-color: transparent;
  color: var(--color-accent);
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn-3:hover {
  color: white;
}

.btn-4 {
  background-color: white;
  color: var(--color-primary);
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn-4:hover {
  background-color: var(--color-accent);
}

.btn-5 {
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.btn-5:hover {
  background-color: var(--color-main);
  color: white;
}

/* ------------------------------------------------------
   3.5 IMAGE
   Image element styles.
------------------------------------------------------ */
img {
  object-fit: cover;
  object-position: center;
  width: 100%;
}

/* ------------------------------------------------------
   3.6 LISTS
   List element styles.
------------------------------------------------------ */
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul li {
  font-family: var(--font-1) !important;
  font-weight: 400;
  color: var(--text-color);
}

/* ------------------------------------------------------
   4.1 COLOR UTILITIES
   Utility classes for text colors.
------------------------------------------------------ */
.c-text {
  color: var(--text-color) !important;
}

.c-main {
  color: var(--color-main);
}

.c-primary {
  color: var(--color-primary);
}

.c-secondary {
  color: var(--color-secondary);
}

.c-accent {
  color: var(--color-accent);
}

.c-bg-1 {
  color: var(--color-bg-1);
}

.c-bg-2 {
  color: var(--color-bg-2);
}

.c-border {
  color: var(--color-border);
}

.c-white {
  color: white !important;
}

.c-black {
  color: black;
}

/* ------------------------------------------------------
   4.2 BACKGROUND UTILITIES
   Utility classes for background colors.
------------------------------------------------------ */
.bg-text {
  background-color: var(--text-color);
}

.bg-main {
  background-color: var(--color-main);
}

.bg-prime {
  background-color: var(--color-primary);
}

.bg-secondary {
  background-color: var(--color-secondary);
}

.bg-accent {
  background-color: var(--color-accent);
}

.bg-bg-1 {
  background-color: var(--color-bg-1);
}

.bg-bg-2 {
  background-color: var(--color-bg-2);
}

.bg-border {
  background-color: var(--color-border);
}

.bg-white {
  background-color: white;
}

.bg-black {
  background-color: black;
}

/* ------------------------------------------------------
   4.3 SIZING UTILITIES
   Utility classes for element sizing and spacing.
------------------------------------------------------ */
.navbar-size {
  width: 100%;
  padding: 20px;
}

.banner-size {
  min-height: 546px;
}

/* 32px gutters; max outer 1364px → up to ~1300px inner column on wide screens */
.page-size {
  box-sizing: border-box;
  width: 100%;
  max-width: 1364px;
  padding-top: 100px;
  padding-bottom: 100px;
  padding-left: 32px;
  padding-right: 32px;
  margin-left: auto;
  margin-right: auto;
}

/* ------------------------------------------------------
   4.4 OTHER UTILITIES
   Miscellaneous utility classes.
------------------------------------------------------ */
.divider {
  border: 1px solid var(--color-border);
}

.divider-2 {
  border: 1px solid var(--text-color);
  opacity: 0.2;
}

/* ======================================================
   5. NAVBAR STYLES
   Styles for navigation bar and navigation elements.
====================================================== */
.navbar-toggler {
  border: none;
}

.navbar-toggler .custom-toggler-icon {
  width: 30px;
  height: 25px;
  border: none;
  background: var(--color-main);
  box-shadow: none;
  outline: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: end;
  padding: 5px;
  color: white !important;
}

.navbar-toggler .bar {
  display: block;
  height: 2px;
  border-radius: 2px;
  width: 100%;
  background-color: white;
  border: none;
}

.navbar-toggler .bar-1 {
  width: 80%;
  align-self: flex-end;
}

.navbar-toggler .bar-2 {
  width: 100%;
}

.navbar-toggler .bar-3 {
  width: 60%;
  align-self: flex-end;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  box-shadow: none;
}

.nav-link {
  color: var(--color-secondary);
  font-size: 16px;
  font-family: var(--font-1);
  font-weight: 400;
  box-shadow: none;
}
.offcanvas-body .nav-link {

  color:#000 !important;
}

.desktop-toggler {
  display: block;
  background-color: transparent;
  border: none;
  border-radius: 4px;
}

.desktop-toggler .bar {
  display: block;
  height: 2px;
  border-radius: 2px;
  width: 100%;
  background-color: white;
  border: none;
}

.navbar-toggler-icon {
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28210, 210, 210, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-toggler-icon:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link.dropdown-toggle:hover {
  color: white;
  box-shadow: none;
}

.nav-link.dropdown-toggle:active {
  box-shadow: none;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link.active {
  color: var(--color-accent) !important;
  box-shadow: none;
}

.nav-link:focus,
.dropdown-item:focus {
  color: white;
  outline: none;
  box-shadow: none !important;
}

.dropdown-toggle {
  box-shadow: none !important;
}

.dropdown-menu {
  color: var(--text-color);
  min-width: 240px;
  border: none;
  box-shadow: none;
  border-radius: 0px;
}

.dropdown-menu a {
  padding-top: 4px;
  padding-bottom: 4px;
}

.dropdown-menu:hover a:hover {
  color: #fff;
  background-color: var(--color-main);
}

.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  color: var(--text-color);
  font-weight: 500 !important;
}

.dropdown-item.active {
  color: var(--color-main) !important;
  background-color: transparent !important;
}

.dropdown-item:hover {
  color: var(--color-main) !important;
  background-color: transparent !important;
}

.logo-wrapper {
  max-width: 250px;
  padding-right: 30px;
  border-right: 1px solid var(--color-border);
}

.nav-phone {
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 6px;
}

.nav-phone span {
  color: var(--color-secondary);
}

.nav-phone i {
  color: var(--color-accent);
}

/* Navbar: pełne menu od 1306px; ≤1305px — pasek mobilny + offcanvas */
@media (min-width: 1306px) {
  .nav-desktop-only {
    display: flex !important;
  }
  .nav-mobile-only {
    display: none !important;
  }
}
@media (max-width: 1305.98px) {
  .nav-desktop-only {
    display: none !important;
  }
  .nav-mobile-only {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }
}
@media (min-width: 768px) and (max-width: 1305.98px) {
  .nav-tablet-phone {
    display: flex !important;
  }
}
@media (max-width: 767.98px), (min-width: 1306px) {
  .nav-tablet-phone {
    display: none !important;
  }
}

.lang-switch {
  font-family: var(--font-1);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.lang-switch-link {
  color: var(--color-secondary);
  text-decoration: none;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.lang-switch-link:hover {
  color: var(--color-accent);
}
.lang-switch-link.active {
  color: var(--color-accent);
  pointer-events: none;
}
.lang-switch-sep {
  color: var(--color-border);
  user-select: none;
}
.offcanvas-body .lang-switch .lang-switch-link {
  color: var(--color-main) !important;
}
.offcanvas-body .lang-switch .lang-switch-link.active {
  color: var(--color-accent) !important;
}

/* Mobile menu: PL | EN — centered, no box frame (.divider + .border-bottom) */
.offcanvas-body > .lang-switch {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: none !important;
  box-shadow: none;
}

/* ------------------------------------------------------
   5.1 OFFCANVAS
   Styles for offcanvas navigation menu.
------------------------------------------------------ */
.offcanvas-header .btn-close-custom {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background-color: transparent;
  border: 1px solid var(--text-color);
  border-radius: 10px;
  font-size: 16px;
  padding: 5px 12px;
  cursor: pointer;
}

.btn-close {
  color: var(--color-main) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var(--color-main)'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
  opacity: 1 !important;
}

.btn-close:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='var(--color-main)'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

.offcanvas-icon {
  background-color: var(--color-accent);
  padding: 8px;
  border-radius: 4px;
}

.offcanvas {
  background-color: var(--color-bg-1) !important;
}

/* ------------------------------------------------------
   6. Hero
   Styles for hero section.
------------------------------------------------------ */
.hero-icon-circle {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 5px solid var(--color-primary);
}

.hero-icon-circle:nth-child(2),
.hero-icon-circle:nth-child(3),
.hero-icon-circle:nth-child(4),.hero-icon-circle:nth-child(5) {
  margin-left: -10px;
}

.hero-google-reviews {
  background-color: var(--color-main);
  padding: 8px;
  border-radius: 30px;
  width: max-content;
}

.hero-google-icon {
  background-color: var(--color-accent);
  color: var(--color-main);
  font-size: 16px;
  border-radius: 50%;
  padding: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.navbar-nav
{
	    align-items: center !important;
}
/* About */
.padding-bottom-8 {
  padding-bottom: 8rem;
}

.padding-top-8 {
  padding-top: 8rem;
}

.about-top {
  position: relative;
  margin-top: -460px;
  z-index: 2;
}

.about-img {
  object-fit: cover;
}

.about-video {
  object-fit: cover;
}

.about-card {
  background-color: var(--color-primary);
  padding: 16px;
  min-height: 260px;
}

/* Services */
.services-card {
  padding: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
}
.services-card .cert1
{
	display: flex;
    justify-content: space-between;
}
.cert
{
	max-height: 74px;
	width:auto;
}
.row-cols-1 > .col:nth-child(1) .services-card {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/services-1.jpg");
	background: #1e3029;
}

.row-cols-1 > .col:nth-child(2) .services-card {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/services-2.jpg");
	background: #1e3029;
}

.row-cols-1 > .col:nth-child(3) .services-card {
	background-image: linear-gradient(rgb(0 0 0 / 71%), rgba(0, 0, 0, 0.6)), url(../img/services-3.jpg);
		background: #1e3029;
}

.row-cols-1 > .col:nth-child(4) .services-card {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/services-2.jpg");
	background: #1e3029;
}

.row-cols-1 > .col:nth-child(5) .services-card {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/services-5.jpg");
}

.row-cols-1 > .col:nth-child(6) .services-card {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/services-6.jpg");
}

.row-cols-1 > .col:nth-child(7) .services-card {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/services-7.jpg");
}

.row-cols-1 > .col:nth-child(8) .services-card {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/services-8.jpg");
}

.row-cols-1 > .col:nth-child(9) .services-card {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/services-9.jpg");
}

.services-card-icon-circle {
  background-color: var(--color-main);
  border-radius: 50%;
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.services-card-icon-circle img
{
	border-radius:100%;
}

.services-icon-circle {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-detail-card {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/service-detail-card.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
}

.how-it-works-card {
  padding: 20px;
  background-color: var(--color-main);
}

.how-it-works-circle-number {
  background-color: var(--color-accent);
  color: var(--color-main);
  font-family: var(--font-2);
  font-size: 26px;
  border-radius: 50%;
  padding: 8px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bolder;
}

/* Featured Project*/
.project-navigation {
  width: 220px;
}

.project-navigation .btn-5,
.project-content .btn-5 {
  background-color: var(--color-main);
  padding: 12px 24px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.project-navigation .btn-5:hover,
.project-content .btn-5:hover,
.project-navigation .btn-5.active,
.project-content .btn-5.active {
  background-color: var(--color-accent);
}

.project-navigation .btn-5 a,
.project-content .btn-5 {
  color: white;
  text-decoration: none;
}

.project-navigation .btn-5:hover a,
.project-navigation .btn-5.active a,
.project-content .btn-5:hover,
.project-content .btn-5.active {
  color: black;
}

.project-content .btn-5 {
  max-width: fit-content;
  margin-top: 15px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease-in-out 0.2s;
}

.project-sections {
  position: relative;
  min-height: 500px;
}

.project-section {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.project-section.active {
  display: block;
  opacity: 1;
}

.featured-project-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 400px;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  cursor: pointer;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.5) 50%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
  pointer-events: none;
}

.project-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
  color: white !important;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  z-index: 2;
}

.project-content h5 {
  color: white;
  font-weight: 900 !important;
  margin-bottom: 20px;
  transform: translateY(20px);
  transition: transform 0.3s ease-in-out 0.1s;
  width: 100%;
}

.featured-project-card:hover {
  flex: 3;
}

.featured-project-card:hover .project-overlay {
  opacity: 1;
}

.featured-project-card:hover .project-content {
  transform: translateY(0);
  opacity: 1;
}

.featured-project-card:hover ~ .featured-project-card:not(:hover) {
  flex: 1;
}

.featured-project-card:first-child:hover ~ .featured-project-card {
  flex: 1;
}

.featured-project-card:hover .project-content h5,
.featured-project-card:hover .project-content .btn-5 {
  transform: translateY(0);
  opacity: 1;
}

.featured-project-card:hover .project-content .btn-5 {
  transition-delay: 0.1s;
}

#residential .featured-project-card:nth-child(1) {
  background-image: url("../img/residential-1.jpg");
}

#residential .featured-project-card:nth-child(2) {
  background-image: url("../img/residential-2.jpg");
}

#residential .featured-project-card:nth-child(3) {
  background-image: url("../img/residential-3.jpg");
}

#industrial .featured-project-card:nth-child(1) {
  background-image: url("../img/industrial-1.jpg");
}

#industrial .featured-project-card:nth-child(2) {
  background-image: url("../img/industrial-2.jpg");
}

#industrial .featured-project-card:nth-child(3) {
  background-image: url("../img/industrial-3.jpg");
}

#public .featured-project-card:nth-child(1) {
  background-image: url("../img/public-1.jpg");
}

#public .featured-project-card:nth-child(2) {
  background-image: url("../img/public-2.jpg");
}

#public .featured-project-card:nth-child(3) {
  background-image: url("../img/public-3.jpg");
}

.project-detail-banner-wrapper {
  min-height: 90vh;
  position: relative;
}

.project-detail-banner {
  min-height: 90vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
  background-image: url("../img/project-detail-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 24px;
}

.project-detail-banner-card {
  padding: 20px;
  position: relative;
  z-index: 1;
  background-color: white;
}

.project-detail-icon-circle {
  background-color: black;
  color: var(--color-accent);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ  */
.accordion,
.accordion-button,
.accordion-item,
.accordion-header,
.accordion-body {
  border: none !important;
  box-shadow: none !important;
}

.accordion-item {
  border-bottom: 1px solid var(--color-border) !important;
  border-radius: 0 !important;
  margin-bottom: 0.5rem !important;
}

.accordion-button:not(.collapsed)::after,
.accordion-button::after {
  display: none !important;
}

.accordion-header {
  background-color: var(--bg-bg-1) !important;
}

.accordion-button {
  position: relative;
  padding: 0.75rem 3rem 0.75rem 1rem !important;
  background-color: var(--color-bg-1) !important;
  min-height: auto;
  line-height: 1.4;
}

.accordion-button:not(.collapsed) {
  border-bottom: none !important;
}

.accordion-body {
  background-color: var(--color-bg-1) !important;
  padding: 0.75rem 1rem 1.25rem !important;
  font-size: 0.95rem;
  line-height: 1.5;
}

.accordion-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.2s ease-in-out;
  font-size: 0.9rem;
  color: var(--color-main);
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.accordion-button:not(.collapsed) .accordion-icon {
  transform: rotate(180deg);
}

.accordion-button:not(.collapsed) .accordion-icon::before {
  content: "\f068";
}

.accordion-button.collapsed .accordion-icon::before {
  content: "\2b";
}

/* Testimonials Banner */
.testimonials-bg {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../img/testimonials-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonials-icon {
  font-size: 72px;
  margin-bottom: 20px;
  color: var(--color-accent);
}

.testimonials-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

/* Testimonials */
.testimonials-card {
  background-color: white;
  padding: 32px;
}

.testimonials-icon-right {
  font-size: 56px;
  color: var(--color-main);
}

.testimonials-text {
  font-size: 14px;
  color: var(--text-color);
}

/* Blog Post */
.blog-card {
  padding: 20px;
}

.blog-img {
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.blog-img-wrapper {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.blog-img-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 10;
}

.blog-date {
  font-size: 14px;
  color: var(--color-main);
  font-weight: 700;
}

.blog-img-wrapper:hover .blog-img,
.blog-col-1:hover .blog-img,
.blog-col-2:hover .blog-img,
.blog-col-3:hover .blog-img,
.blog-col-4:hover .blog-img,
.blog-col-5:hover .blog-img,
.blog-col-6:hover .blog-img {
  transform: scale(1.05) rotate(2deg);
}

.blog-img-wrapper:hover::before {
  opacity: 1;
}

.recent-post-img {
  width: 100%;
  height: 80%;
  object-fit: cover;
}

.recent-post-card {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../img/recent-post.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 32px;
}

/* Why Choose Us */

#whyChooseUsAccordion .accordion-header {
  background-color: var(--color-primary) !important;
}

#whyChooseUsAccordion .accordion-button {
  background-color: var(--color-primary) !important;
  color: white !important;
}

#whyChooseUsAccordion .accordion-body {
  background-color: var(--color-primary) !important;
  color: var(--color-secondary) !important;
}

#whyChooseUsAccordion
  .accordion-button:not(.collapsed)
  .accordion-icon::before {
  color: var(--color-accent) !important;
}

#whyChooseUsAccordion .accordion-button.collapsed .accordion-icon::before {
  color: var(--color-accent) !important;
}

.img-why-choose-us {
  object-fit: cover;
}

/* Our Value */
.our-value-card {
  background-color: white;
  padding: 24px;
  min-height: 310px;
}

.our-value-icon {
  height: 48px;
  width: 48px;
  font-size: 24px;
  color: var(--color-primary);
  background-color: var(--color-accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Video */

.video-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
  pointer-events: none;
}

.hero-video {
  width: 100%;
  display: block;
  position: relative;
  z-index: 0;
}

.play-button {
  position: absolute;
  width: 96px;
  height: 96px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: var(--color-accent);
  opacity: 0.9;
  cursor: pointer;
  transition: opacity 0.3s;
  z-index: 2;
}

.play-button:hover {
  opacity: 1;
}

.play-button.hidden {
  display: none;
}

.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-modal video {
  width: 80%;
  max-width: 900px;
}

.video-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 32px;
  color: white;
  cursor: pointer;
}

/* Our Team */
.team-card {
  background-color: var(--color-bg-1);
}

.img-team-wrapper {
  position: relative;
  overflow: hidden;
}

.img-team {
  display: block;
  transition: transform 0.3s ease;
}

.img-team-wrapper .img-team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.img-team-wrapper .social-team {
  position: absolute;
  bottom: 40%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 11;
}

.img-team-wrapper:hover .img-team-overlay {
  opacity: 1;
}

.img-team-wrapper:hover .social-team {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.icon-social-team {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  color: var(--color-accent);
  background-color: var(--color-subtle);
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  cursor: pointer;
}

.icon-social-team:hover {
  color: white;
  background-color: var(--color-main);
}

.team-card-subtitle {
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
}

.team-card-subtitle p {
  color: var(--text-color);
}

/* Installation */
.installation-card {
  background-color: white;
  padding: 32px;
}

.radianz-input {
  background-color: var(--color-bg-1);
  padding: 14px 20px 10px;
  color: black;
  border: none;
  outline: none;
  box-shadow: none;
}

.radianz-input::placeholder {
  color: var(--text-color);
}

.radianz-input-label {
  font-size: 14px;
  font-family: var(--font-1);
  color: black;
}

/* Pricing */
.pricing-card {
  background-color: white;
  padding: 50px 32px;
}

.pricing-card-dark {
  background-color: var(--color-primary);
  padding: 50px 32px;
}

/* Career */
.career-card {
  padding: 32px;
  background-color: white;
}

.career-tag {
  background-color: var(--color-main);
  color: white;
  font-size: 14px;
  border-radius: 30px;
  padding: 6px 8px;
}

.join-us-number {
  border-radius: 50%;
}

/* 404 Page */
.title-404 {
  font-size: 120px;
  font-weight: 900;
  font-family: var(--font-1);
  color: var(--color-primary);
}

/* Single post */
.single-post-banner {
  background-color: var(--color-primary);
  padding: 32px;
}
.banner-icon {
  font-size: 48px;
  color: var(--color-accent);
}
.single-post-form {
  background-color: white;
  padding: 64px;
}
.comment-input {
  background-color: var(--color-bg-1);
  padding: 14px 20px 10px;
  border: none;
  outline: none;
  box-shadow: none;
}
.comment-input::placeholder {
  color: var(--text-color);
}
.comment-input-label {
  font-size: 14px;
  font-family: var(--font-1);
  color: black;
}

/* contact */
.contact-form {
  background-color: white;
  padding: 32px;
}
.contact-input {
  background-color: var(--color-bg-1);
  padding: 14px 20px 10px;
  border: none;
  outline: none;
  box-shadow: none;
}
.contact-input::placeholder {
  color: var(--text-color);
}
.contact-input-label {
  font-size: 14px;
  font-family: var(--font-1);
  color: black;
}

.contact-info {
  background-color: var(--color-primary);
  padding: 24px;
}
.maps-wrapper {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: 5px;
  overflow: hidden;
}

.maps-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 10;
  transition: background-color 0.3s ease;
}

.maps-overlay:hover {
  background-color: transparent;
}

.maps {
  position: relative;
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
  pointer-events: auto;
}

/* Footer */
footer.bg-prime > .page-size {
  display: flex;
  flex-direction: column;
}

.form-input {
  color: var(--color-secondary);
  background-color: transparent !important;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

.form-input::placeholder {
  color: var(--color-accent) !important;
}

.form-wrapper {
  display: flex;
  gap: 10px;
  border-bottom: 1px solid var(--color-border) !important;
  max-width: 600px;
  width: 100%;
}

.footer-link {
  color: var(--color-secondary);
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-border {
  border-bottom: 1px solid var(--color-border);
}

.social-icon-circle {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-accent);
  color: var(--color-main);
  border: none;
  font-size: 16px;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.social-icon-circle:hover {
  background-color: white;
}

.footer-logo {
  width: 250px;
}

/* ======================================================
   23. ANIMATION
   Animation keyframes and animation utility classes.
====================================================== */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
}

.fade-in {
  animation-name: fadeIn;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

.delay-5 {
  animation-delay: 0.5s;
}

.delay-6 {
  animation-delay: 0.6s;
}

.delay-7 {
  animation-delay: 0.7s;
}

.delay-8 {
  animation-delay: 0.8s;
}

.fade-in {
  animation-fill-mode: both;
}

.popup-message {
  display: none;
  background-color: white;
  color: var(--color-primary);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  margin-left: auto;
  margin-right: auto;
}

.contact-card .popup-message {
  max-width: 100%;
}

.popup-message-2 {
  display: none;
  background-color: var(--color-border);
  color: var(--color-primary);
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
}

/* ======================================================
   24. MEDIA QUERIES
   Responsive styles for different screen sizes.
====================================================== */
@media screen and (min-width: 760px) and (max-width: 991px) {
  .project-navigation {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 30px;
    padding: 0 15px;
  }

  .project-navigation li {
    margin: 0 !important;
    flex: 0 0 auto;
  }

  .project-navigation .btn-5 {
    min-width: 180px;
    margin: 0 !important;
  }

  /* Adjust column width for tablet */
  .col-lg-3 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .col-lg-9 {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}

@media screen and (max-width: 992px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    line-height: 1.1em;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  h3 {
    font-size: 27px;
  }

  h4 {
    font-size: 21px;
  }

  h5 {
    font-size: 19px;
  }

  h6 {
    font-size: 14px;
  }

  p {
    font-size: 14px;
  }

  button {
    font-size: 12px;
  }

  a {
    font-size: 12px;
  }

  .page-size {
    width: 100%;
    padding: 50px 32px;
  }

  .padding-bottom-8 {
    padding-bottom: 0;
  }

  .padding-top-8 {
    padding-top: 0;
  }

  .about-top {
    position: static;
    margin-top: 0;
  }

  .about-img-2 {
    max-height: 500px;
  }

  .nav-logo {
    max-height: 40px;
    padding-left: 20px;
  }

  .img-why-choose-us {
    max-height: 460px;
  }

  .title-404 {
    font-size: 86px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 25px;
  }

  h4 {
    font-size: 20px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 14px;
  }

  .page-size {
    padding: 50px 20px;
  }

  .navbar-size {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-logo {
    width: 100%;
    max-height: 30px;
    padding-left: 8px;
  }

  .nav-link {
    color: var(--color-primary);
  }

  .nav-link.active {
    color: var(--color-main) !important;
  }

  .nav-link:hover {
    color: var(--color-main) !important;
  }

  .nav-link:focus {
    color: var(--color-main) !important;
  }

  .project-navigation {
    display: flex !important;
    flex-direction: column;
    max-width: 300px;
    margin: 0 auto 30px;
    padding: 0 15px;
  }

  .project-navigation li {
    margin: 8px 0 !important;
    width: 100%;
  }

  .project-navigation .btn-5 {
    width: 100%;
    margin: 0 !important;
  }

  .project-section .d-flex {
    flex-direction: column !important;
  }

  .project-section .featured-project-card {
    width: 100% !important;
    flex: 0 0 auto !important;
    min-height: 300px;
    margin-bottom: 20px;
    margin-right: 0 !important;
  }

  .project-section .featured-project-card:hover {
    width: 100% !important;
    flex: 0 0 auto !important;
  }

  .about-img-2 {
    max-height: 300px;
  }

  .blog-card {
    padding: 0px;
  }

  .form-input {
    border-bottom: 1px solid var(--color-border) !important;
    padding-bottom: 10px;
  }

  .form-wrapper {
    border-bottom: none !important;
  }

  .img-why-choose-us {
    max-height: 320px;
  }

  .installation-card {
    padding: 12px;
  }

  .join-us-number {
    max-width: 44px;
  }

  .title-404 {
    font-size: 64px;
  }
}
/* --- Modern Timeline Pro (Efekt Komety) --- */

.process-timeline-wrapper {
    position: relative;
    width: 100%;
    /* Marginesy boczne wyliczone tak, aby linia zaczynała się na środku 1 kolumny i kończyła na środku 4 */
    /* Przy 4 kolumnach: środek pierwszej to 12.5%, środek ostatniej to 87.5%. Długość linii = 75% */
    margin: 0 auto 3rem auto;
    width: 76%; /* 100% - (12% marginesu z każdej strony) */
    height: 4px;
    z-index: 10;
}

/* 1. Tor (Tło) */
.timeline-track {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px; /* Cienka, elegancka linia */
    background: rgba(255, 255, 255, 0.15); /* Delikatna biel na ciemnym tle */
    border-radius: 2px;
}

/* 2. Ogon Komety (Gradient) */
/* 2. Ogon Komety (Gradient - Jasny Zielony) */
.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 2px;
    width: 100%;
    /* ZMIANA TUTAJ: Gradient przechodzi od przezroczystego -> przez Twój akcent -> do JASKRAWEJ ZIELENI na końcu */
    background: linear-gradient(90deg, transparent 0%, var(--c-accent) 50%, #76ff03 100%);
    border-radius: 2px;
    opacity: 0;
    
    /* Maska bez zmian */
    mask-image: linear-gradient(to right, black var(--progress), transparent var(--progress));
    -webkit-mask-image: linear-gradient(to right, black var(--progress), transparent var(--progress));
    
    /* Animacja bez zmian */
    animation: flowLine 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
/* 3. Kontener Kropki (Głowica) */
.timeline-head {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: moveHead 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

/* 4. Sama Kropka */
.timeline-dot {
    width: 12px;
    height: 12px;
    background-color: #80c343; /* Biały środek dla kontrastu */
    border: 2px solid var(--c-accent); /* Kolorowa obwódka */
    border-radius: 50%;
    box-shadow: 0 0 10px var(--c-accent); /* Świecenie */
    z-index: 2;
}

/* 5. Pulsowanie (Ring wokół kropki) */
.timeline-pulse {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 1px solid var(--c-accent);
    border-radius: 50%;
    opacity: 0;
    animation: pulseRing 1.5s ease-out infinite;
    z-index: 1;
}

/* --- Animacje --- */
.zrozwoj img
{
	max-width:50px;
}
.zrozwoj .c-main
{
	min-height: 67px !important;
}
.zrozwoj 
{
	background: #121a17 !important;
}
.zrozwoj h5, .zrozwoj p 
{
	color:#fff !important;
}
/* Przesuwanie kropki */
@keyframes moveHead {
    0% { left: 0%; opacity: 0; }
    5% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* Animacja linii (symulowana przez custom property w JS lub prościej przez width/mask) */
/* Tutaj prostsza wersja CSS-only dla szerokiej kompatybilności */
.timeline-progress {
    width: 0;
    opacity: 1;
    animation: growBar 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes growBar {
    0% { width: 0; opacity: 0; }
    5% { opacity: 1; }
    100% { width: 100%; opacity: 0; } /* Zanika na końcu */
}

@keyframes pulseRing {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Responsywność */
@media (max-width: 991px) {
    .process-timeline-wrapper {
        display: none !important; /* Ukrywamy na mobile/tablet, bo tam kafelki są pionowo */
    }
}
/* --- Custom Accordion Toggler --- */

/* 1. Ukrywamy domyślną strzałkę Bootstrapa */
.accordion-button.custom-toggler::after {
    display: none !important;
}

/* 2. Logika wyświetlania napisów Rozwiń/Zwiń */
/* Gdy jest zamknięty (ma klasę .collapsed) */
.accordion-button.custom-toggler.collapsed .text-show-closed {
    display: inline;
}
.accordion-button.custom-toggler.collapsed .text-show-open {
    display: none;
}

/* Gdy jest otwarty (nie ma klasy .collapsed) */
.accordion-button.custom-toggler:not(.collapsed) .text-show-closed {
    display: none;
}
.accordion-button.custom-toggler:not(.collapsed) .text-show-open {
    display: inline;
}

/* 3. Animacja obrotu strzałki */
.transition-icon {
    transition: transform 0.3s ease-in-out;
}

/* Obróć strzałkę o 180 stopni gdy otwarte */
.accordion-button.custom-toggler:not(.collapsed) .transition-icon {
    transform: rotate(180deg);
}

/* 4. Usunięcie niebieskiego cienia (focus box-shadow) dla estetyki */
.accordion-button.custom-toggler:focus {
    box-shadow: none;
    border-color: rgba(0,0,0,0.1);
}