/*------------------------------------------------------------
    File: home.css
    Purpose: Styles for the HOME page (EN: / and PL: /pl/).
             Contains ALL shared global styles PLUS home-specific
             sections (hero, particles canvas).
             Safety-first copy of styles.css — keep in sync when
             editing any common sections.
--------------------------------------------------------------*/

/*------------------------------------------------------------
    Template name    : Technoai - IT Solutions & Business Services Multipurpose Responsive Website Template
    Author           : ZRTHEMES
    Version          : 2.0
    File Description : Main css file of the template
--------------------------------------------------------------*/

/* ===== GLOBAL BASE (used by Home) ===== */

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* General Styling */


:root {
  --font-default:
  'Poppins', sans-serif;
  --font-primary:
  'Poppins', sans-serif;
  --font-secondary:
  'Poppins', sans-serif;
  scroll-behavior: smooth;
  --color-bg: #029b9b;
  --color-light: #ffffff;
  --color-dark: #222;
  --color-heading: #222;
  --hero-overlay-color: #000000;
  --menu-color: #ffffff;
  --theme-color: #029b9b;
  --border-color: #e2e2e2;
  --theme-color-dark: #f8f8f8;
  --text-color: #3a3a3a;
  --hero-text-color: #ffffff;
  --text-white-color: #ffffff;
  --text-grey-color: #3a3a3a;
  --text-theme-color: #029b9b;
  --light-color: #ffffff;
  --color-default: #3a3a3a;
  --color-primary-hover: #029b9b;
  --color-secondary-hover: #0c6de0;
  --color-primary: #3a3a3a;
  --color-secondary: #424242;
  --color-start: #3a3a3a;
  --color-end: #3a3a3a;
  --hero-card-bg: rgb(228 227 223 / 17%);
  --box-shadow-color: rgb(82 90 101 / 10%);
}

:root.dark {
  --menu-color-bg: #565656;
  --color-bg: #000000;
  --color-light: #000000;
  --color-dark: #ffffff;
  --color-heading: #029b9b;
  --hero-overlay-color: #000000;
  --menu-color: #ffffff;
  --theme-color: #000000;
  --border-color: #14929a;
  --theme-color-dark: #2c2c2c;
  --text-color: #ffffff;
  --hero-text-color: #ffffff;
  --text-white-color: #ffffff;
  --text-grey-color: #565656;
  --text-theme-color: #14929a;
  --light-color: #000000;
  --color-primary-hover: #029b9b;
  --color-secondary-hover: #0c6de0;
  --color-default: #000000;
  --color-primary: #000000;
  --color-secondary: #000000;
  --color-start: #000000;
  --color-end: #000000;
  --hero-card-bg: rgb(0 0 0 / 83%);
  --box-shadow-color: rgb(20 146 154 / 49%);
}

body {
  font-family: var(--font-default);
  color: var(--text-color);
  background: var(--theme-color);
  transition: 0.5s background ease;
}

body.dark {
  --menu-color-bg: #ffffff;
  --color-bg: #000000;
  --color-light: #000000;
  --color-dark: #ffffff;
  --color-heading: #029b9b;
  --hero-overlay-color: #000000;
  --menu-color: #ffffff;
  --border-color: #029b9b;
  --theme-color-dark: #151515;
  --text-color: #ffffff;
  --text-white-color: #ffffff;
  --text-grey-color: #565656;
  --text-theme-color: #029b9b;
  --light-color: #000000;
  --color-primary-hover: #029b9b;
  --color-secondary-hover: #0c6de0;
  --color-default: #424242;
  --color-primary: #424242;
  --color-secondary: #424242;
  --color-start: #000000;
  --color-end: #000000;
  --hero-card-bg: rgb(0 0 0 / 83%);
  --box-shadow-color: rgb(94 94 94 / 69%);
}


#darkmode-button{
    border-radius: 4px 0 0 4px;
    border: none;
    outline: none;
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    margin-left: 10px;
    position: absolute;
    right: 0px;
    top: 101px;
    background: var(--color-light);
    color: var(--theme-color);
}

#darkmode-button .theme-icon {
    width: 15px;
    height: 15px;
    display: block;
    fill: currentColor;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--color-primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

.hide-on-mobile{
  display: block;
}

.show-on-mobile {
  display: none;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/


section {
  padding: 60px 0; /* Padding pionowy dla wszystkich sekcji - zmniejsz dla mniejszych odstępów między sekcjami domyslnie bylo 100 */
  overflow: hidden;
}

.section{
  padding: 60px 0;
  overflow: hidden;
  background: var(--light-color);
}

.section-grey{
  padding: 90px 0;
  overflow: hidden;
  background: var(--theme-color-dark);
}

.sections-bg {
  background-color: var(--theme-color-dark);
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  position: relative;
  color: var(--theme-color);
}

.section-header p {
  margin-bottom: 0;
  color: #b8651d;
}

img {
  transition: 0.3s;
}

img:hover {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top .scroll-icon {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

.scroll-top:hover {
  background: rgb(16 16 16 / 80%);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #000000;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(48% - 3px);
  left: calc(48% - 3px);
  border: 2px solid #fff;
  border-color: var(--light-color) transparent var(--light-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
  .hide-on-mobile{
    display: none !important;
  }
}

/* ===== HEADER ===== */

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

/* Domyślnie header czarny */
.header {
  background: #000000;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
    position: relative;  /* ← DODAĆ — bez tego z-index nie działa */

}

/* Strona główna przed scrollowaniem – przezroczysty */
.header.home-transparent {
  background: transparent !important;
}

/* Strona główna PO scrollu – gdy JS doda stikcy-menu */
.header.home-transparent.stikcy-menu {
  background: var(--light-color) !important;
}

/* Po scrollu (sticky) zostaje jak było – jasne tło */
.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 90px;
  box-shadow: inset 0 -4px 8px rgba(0, 0, 0, 0.1); /* Inner shadow */
}

.header .logo {
  position: relative;
}

.header .logo-mark {
  position: relative;
  display: block;
  height: 40px;
  aspect-ratio: 362 / 84;
  margin-right: 6px;
  flex-shrink: 0;
}

.header .logo-mark .logo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.header .logo-mark .logo-default {
  opacity: 1;
}

.header .logo-mark .logo-sticky {
  opacity: 0;
}

.header.stikcy-menu .logo-mark .logo-default {
  opacity: 0;
}

.header.stikcy-menu .logo-mark .logo-sticky {
  opacity: 1;
}

/* Sticky menu – tu zostawiamy jasne tło jak było */
.header.stikcy-menu {
  background: var(--light-color);
}

.header.stikcy-menu .logo h1 {
  color: var(--color-primary);
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  letter-spacing: 0.8px;
  color: var(--color-primary);
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.sticked-header-offset {
  margin-top: 0;
}

section { background: var(--light-color);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: var(--menu-color);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .stikcy-menu .navbar a{
    color: var(--text-color);
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--text-theme-color);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--light-color);
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 12px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .show-on-mobile {
    display: block;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: rgb(255 255 255);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: var(--color-primary);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--theme-color);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-toggle .nav-icon {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 80%);
    z-index: 9996;
  }
}

/* ===== LAYOUT UTILITIES ===== */

@media (min-width: 1280px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1140px;
  }
}

/* List utilities used by single-page (Services) */
dl, ol, ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.single-page ul{
  list-style: none;
}
.single-page ul li{
  position: relative;
  color: var(--text-color);
  margin-bottom: 5px;
  border-radius: 8px;
}

/* ===== TEAM ===== */

/* Section Background Gradient */
.section-gradient {
  background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
  padding: 100px 0;
}
.section-gradient .section-header h2 {
  color: #ffffff;
}
/* Section Header */
.section-header h2 {
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.section-header p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
}

/* Team Member Card */
.team-member .member-card {
  background: var(--light-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.team-member .member-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 40px rgba(0, 0, 0, 0.3);
}

/* Team Member Image */
.team-member .member-image {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.team-member .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.team-member .member-card:hover .member-image img {
  transform: scale(1.2);
}

.team-member .member-image .overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-member .member-card:hover .member-image .overlay-gradient {
  opacity: 1;
}

/* Team Member Info */
.team-member .member-info {
  padding: 30px;
  text-align: center;
  position: relative;
}

.team-member .member-info h4 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--color-heading);
}

.team-member .member-info span {
  font-size: 1rem;
  color: #777777;
  margin-bottom: 20px;
  display: block;
}

.team-member .member-info .social-links {
  margin-top: 15px;
}

.team-member .member-info .social-links a {
  display: inline-block;
  margin: 0 10px;
  font-size: 1rem;
  color: #009688;
  transition: color 0.3s ease, transform 0.3s ease;
}

.team-member .member-info .social-links a:hover {
  color: #ff5858;
  transform: scale(1.2);
}

/* Decorative Elements */
.team-member .decorative-circle {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #ff7eb3;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.8;
  filter: blur(3px);
}

.team-member .decorative-circle.alt {
  top: auto;
  bottom: -20px;
  left: -20px;
  background: #ff758c;
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .team-member .member-image {
    height: auto;
    aspect-ratio: 3 / 4;
    background-position: 50% 12%;
    background-size: cover;
  }

  .team-member .member-image img {
    object-position: 50% 12%;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .team-member .member-image {
    aspect-ratio: 2 / 3;
    min-height: 380px;
  }
}

@media (max-width: 767.98px) {
  .team-member .member-image {
    aspect-ratio: 4 / 5;
    min-height: 320px;
    background-position: 50% 15%;
  }

  .team-member .member-image img {
    object-position: 50% 15%;
  }
}

@media (max-width: 768px) {
  .team-member .member-card {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .section-header p {
    font-size: 1rem;
  }
}

/* ===== HERO ===== */

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url('../images/hero-bg.webp'); /* Replace with your pattern image */
  background-size: cover;
  background-position: center top;
  overflow: hidden;
  color: #fff;
  text-align: left;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 120px 0;
  margin-top: -90px;  /* ← DODAĆ — hero wsuwa się pod header */

}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(20,20,20,0.8), rgba(50,50,50,0.5));
  z-index: 1;
}

#hero .container {
  position: relative;
  z-index: 1;
}

#hero .caption h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #fff;
}

#hero .caption h2 span {
  color: var(--theme-color);
}

#hero .caption h2 .circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 8px;
  animation: fade-right 1s ease-in-out infinite alternate;
}

@keyframes fade-right {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}

#hero .caption p {
  font-size: 1.125rem;
  color: #ddd;
  margin-bottom: 2rem;
}

#hero .social {
  display: flex;
  gap: 15px;
  margin-bottom: 1.5rem;
}

#hero .social a {
  font-size: 1.5rem;
  color: #ddd;
  transition: color 0.3s ease;
}

#hero .social a:hover {
  color: #f0c420;
}


 /* Hero Banner Buttons */
 .btn-get-started {
  background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
  box-shadow: 0 6px 20px #029b9b70;
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.btn-get-started:hover {
  box-shadow: 0 6px 20px #029b9b70;
  color: #ffffff;
}

.btn-get-started:active {
  box-shadow: 0 6px 20px #029b9b70;
}

.btn-get-started::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s ease-in-out;
  z-index: 0;
}

.btn-get-started:hover::before {
  transform: scale(1);
}

.btn-get-started.mr-20 {
  margin-right: 1.25rem;
}


@media (max-width: 768px) {
  #hero .caption h2 {
    font-size: 2rem;
  }

  #hero .caption p {
    font-size: 1rem;
  }

  #hero .btn-get-started {
    font-size: 0.875rem;
    padding: 8px 20px;
  }
}


.hero {
  width: 100%;
  position: relative;
  background: url(../images/hero-bg.webp) center center;
  background-size: cover;
  padding: 60px 0 0 0;
  height: 90vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
  margin-top: 0;
  background: linear-gradient(360deg, #00000000, var(--hero-overlay-color));
}
.hero .circle{
  color: var(--color-primary);
}
@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.dark-bg{
  padding: 70px 30px; /*zmiana (podniesienie sloganu ha hero wyzej z 50phx na 70px)*/
  border-radius: 8px;
}
.social {
  margin-top: 15px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  /* justify-content: space-around; */
  gap: 10px;
}

.social a {
  color: var(--text-color);
  transition: 0.3s;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.social i {
  font-size: 14px;
  margin: 0 2px;
  color: var(--theme-color);
}
.mr-20{
  margin-right: 20px !important;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--hero-text-color);
  text-transform: capitalize;
  letter-spacing: 0.7px;
  font-weight: 600;
}
.hero span{
  color: var(--theme-color);
  font-weight: bold;
}

.hero p {
  color: var(--hero-text-color);
  font-weight: 400;
  margin-bottom: 30px;
}

/* Get Quotes Button */
.btn-get-started {
  transition: all 0.4s ease-in-out;
}

.btn-get-started:hover {
  transform: translateY(-2px);
}

.btn-get-started:active {
  transform: translateY(0);
}


.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: #fff;
}

.hero .btn-watch-video i {
  color: rgba(255, 255, 255, 0.5);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover i {
  color: #fff;
}

@media (max-width: 991px) {
  .hero {
    background: url(../images/hero-bg.webp) center center;
    min-height: 563px;
  }
  .hero h2 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .text-left.caption{
    text-align: center;
  }
  .caption .justify-content-start{
    justify-content: center !important;
  }
  .caption .social{
    justify-content: center;
  }
  .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}
@media (min-width: 768px) {
  .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

/* ===== HOME SECTIONS ===== */

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services {
  padding: 100px 0;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-heading);
}

.section-header p {
  font-size: 1.125rem;
  color: #777;
}

/* Service Cards */
.service-card {
  position: relative;
  padding: 2rem;
  background-color: var(--color-light);
  border-radius: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
  z-index: 1;
}

/* Rotated Cards */
.card-rotated {
  transform: rotate(-4deg);
}
.card-rotated-2 {
  transform: rotate(4deg);
}

.service-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  background-color: #ffffff;
  border-radius: 50%;
  margin-bottom: 1rem;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.service-icon img {
  width: 80px;
  height: 80px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1.5rem;
}

.service-description {
  font-size: 1rem;
  color: #777;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.btn {
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
  .service-card {
      padding: 1.5rem;
  }

  .service-title {
      font-size: 1.3rem;
  }

  .service-description {
      font-size: 0.9rem;
  }
}
#services {
  position: relative;
  overflow: hidden;
}

.tech-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/tech-pattern.webp') center left; /* Replace with your pattern image */
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 0; /* Ensures the pattern stays behind other content */
  opacity: 0.1; /* Adjust for a subtle effect */
}

/* ===== PARTICLES CANVAS ===== */

/*--------------------------------------------------------------
# Particles
--------------------------------------------------------------*/
canvas{
  display:block;
  vertical-align:bottom;
}

/* ===== FOOTER ===== */

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


.footer-section {
  background: url(../images/hero-bg.webp) center left;
  background-size: cover;
  padding: 60px 0;
  border-radius: 0px;
  position: relative;
  background-attachment: fixed;
}
@media (max-width: 991px) {
  .footer-section {
    padding: 30px 0;
  }
}
.footer-section:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 0;
  opacity: 0.8;
}

.copyright-text{
  margin-top: 30px;
}

.footer-content {
  position: relative;
  z-index: 2;
}
.footer-content .list{
  padding-left: 0;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  max-width: 200px;
}
.footer-widget ul li,
.footer-widget ul li a{
  font-size: 14px;
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-white-color);
  line-height: 28px;
}
.footer-text p svg.mr-15 {
  margin-right: 8px;
}

.footer-social-icon span {
  color: var(--theme-color);
  display: block;
  font-size: 20px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 20px;
}

.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
}

.footer-social-icon i {
  height: 40px;
  width: 40px;
  text-align: center;
  line-height: 41px;
  border-radius: 50%;
}

.footer-widget-heading h3 {
  color: var(--theme-color);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  position: relative;
}

.footer-widget ul li {
  display: inline-block;
  float: left;
  width: 100%;
  margin-bottom: 12px;
}

.footer-widget ul li a:hover {
  text-decoration: underline;
}

.footer-widget ul li a {
  color: var(--text-white-color);
  text-transform: capitalize;
}
/* Zmiana odległości pola newsletter od tekstu dla desktopow "Zostaw swój e-mail..." */

.subscribe-form {
  margin-top: 20px;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #e4e4e4;
  border: 1px solid #e4e4e4;
  color: #222222;
}

.subscribe-form button {
  position: absolute;
  right: -3px;
  background: transparent;
  border: 0;
  top: -8px;
}

.subscribe-form button i {
  color: #ffffff;
  font-size: 2rem;
  transform: rotate(-6deg);
}

.copyright-text p {
  margin: 0;
  font-size: 14px;
  color: #b9b9b9;
}

.copyright-text p a {
  color: var(--theme-color);
}

/* Footer Section Styling */


.footer-content {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  max-width: 180px;
}

.footer-text p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.8;
}
.footer-text p svg.mr-15 {
  margin-right: 8px;
}

.footer-social-icon {
  margin-top: 20px;
}

.footer-social-icon span {
  font-size: 16px;
  margin-right: 10px;
}

.footer-social-icon a {
  color: #fff;
  margin: 0 15px;
  font-size: 22px;
  transition: color 0.3s ease;
}

.footer-social-icon a:hover {
  color: #009688;
}

.footer-widget-heading h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #fff;
}

.footer-widget .list li {
  list-style: none;
  margin-bottom: 15px;
}

.footer-widget .list li a {
  color: #ccc;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-widget .list li a:hover {
  color: #009688;
}

.subscribe-form input[type="text"] {
  padding: 15px;
  width: 100%;
  border-radius: 30px;
  border: 1px solid #555;
  background-color: transparent;
  color: #fff;
  font-size: 14px;
  overflow: hidden;
  outline: none;
}

.subscribe-form button {
  background: linear-gradient(45deg, #029b9b, #029b9b, #035e5e);
  border: none;
  padding: 18px 30px;
  /* border-radius: 30px; */
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.subscribe-form button:hover {
  background-color: #e48720;
}

.copyright-text {
  font-size: 14px;
  color: #b3b3b3;
}

.copyright-text a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.copyright-text a:hover {
  color: #009688;
}

/* Floating Icons Animation */
.footer-social-icon a {
  animation: floatIcon 5s ease-in-out infinite;
}

.footer-social-icon a:nth-child(1) {
  animation-delay: 0s;
}

.footer-social-icon a:nth-child(2) {
  animation-delay: 1s;
}

.footer-social-icon a:nth-child(3) {
  animation-delay: 2s;
}

.footer-social-icon a:nth-child(4) {
  animation-delay: 3s;
}

@keyframes floatIcon {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Footer Widget Columns - Responsive Design */
@media (max-width: 991px) {
  .footer-widget {
    margin-bottom: 30px;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  /* Zmiana odległości pola newsletter od tekstu dla mobilnych "Zostaw swój e-mail..." */
.subscribe-form {
    margin-top: 25px;
    margin-bottom: 15px;
}
}
/* Custom tech-style bullets for content lists */
.single-page .container ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
}

.single-page .container ul li {
  position: relative;
  padding-left: 35px;
	margin-top: 15px;
  margin-bottom: 15px;
  line-height: 1.5;
  color: var(--text-color);
}

.single-page .container ul li:before {
  content: "▸";
  position: absolute;
  left: 0;
  top: 45%;  /* ← ZMIENIONE - wyśrodkowanie pionowe */
  transform: translateY(-50%);  /* ← DODANE - przesuwa do środka */
  color: #029b9b;
  font-size: 20px;
  font-weight: bold;
}

/* Hover effect - subtle */
.single-page .container ul li:hover:before {
  transform: translateY(-50%) translateX(3px);  /* ← ZMIENIONE - zachowujemy wyśrodkowanie */
  transition: transform 0.2s ease;
}

/* ====================================
   UNIWERSALNE KLASY TŁA - REAGUJĄ NA TRYB DZIEŃ/NOC
   ==================================== */

/* Podstawowe tło alternatywne */
.tlo {
  background-color: #f8f9fa; /* jasny kolor */
}

/* ZMIANA: body.dark zamiast :root.dark */
body.dark .tlo {
  background-color: var(--theme-color-dark); /* ciemny kolor */
}

/* Dodatkowe warianty */
.tlo-jasne {
  background-color: #ffffff;
}

body.dark .tlo-jasne {
  background-color: #1a1a1a;
}

.tlo-szare {
  background-color: #e9ecef;
}

body.dark .tlo-szare {
  background-color: #2c2c2c;
}

.tlo-accent {
  background-color: #e8f4f8;
}

body.dark .tlo-accent {
  background-color: #1a2830;
}




/* ========================================
   LANGUAGE SWITCHER
   ======================================== */

.language-switcher {
  display: flex;
  gap: 5px;
  margin: 0 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  align-items: center;
}

.lang-btn {
  padding: 6px 15px;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.lang-btn:hover {
  background: rgba(2, 155, 155, 0.2);
  color: #029b9b;
  border-color: rgba(2, 155, 155, 0.3);
}

.lang-btn.active {
  background: linear-gradient(135deg, #029b9b 0%, #035e5e 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(2, 155, 155, 0.4);
}

/* Dla sticky menu */
.header.stikcy-menu .language-switcher {
  background: rgba(0, 0, 0, 0.05);
}

.header.stikcy-menu .lang-btn {
  color: var(--text-color);
}

.header.stikcy-menu .lang-btn.active {
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .language-switcher {
    position: static;
    transform: none;
    margin: 0 12px 0 auto;
    z-index: 1;
  }

  .lang-btn {
    padding: 5px 12px;
    font-size: 12px;
  }
}
