/* General Styles */
:root {
  --primary-color: #2B70FA;
  --secondary-color: #1D2547;
  --text-color: #6B6B6B;
  --heading-color: #1D2547;
  --white: #ffffff;
  --black: #000000;
  --gray: #f5f5f5;
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
}

/* Header Styles */
.header-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header__top {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.header__info ul {
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

  .header__info ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
  }

.header__social ul {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

  .header__social ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
  }

.header__bottom {
  padding: 20px 0;
}

.logo img {
  max-height: 50px;
}

.main-menu ul {
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

  .main-menu ul li a {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }

    .main-menu ul li a:hover {
      color: var(--primary-color);
    }

/* Slider Styles */
.slider-area {
  margin-top: 120px;
}

.single-slider {
  height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slider__content {
  padding: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
}

.slider__title-pre {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}

.slider__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.slider__text {
  font-size: 16px;
  margin-bottom: 30px;
}

.slider__btn {
  display: flex;
  gap: 20px;
}

.tp-btn {
  display: inline-block;
  padding: 15px 30px;
  background: var(--primary-color);
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

  .tp-btn:hover {
    background: var(--secondary-color);
  }

.tp-btn-border {
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

  .tp-btn-border:hover {
    background: var(--primary-color);
    color: var(--white);
  }

/* Service Styles */
.service-area {
  background: var(--gray);
}

.section__title-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.section__title-pre {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}

.section__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.service__item {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

  .service__item:hover {
    transform: translateY(-10px);
  }

.service__icon {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

  .service__title a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }

    .service__title a:hover {
      color: var(--primary-color);
    }

/* Service Link Styles */
.service__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

  .service__link i {
    transition: transform 0.3s ease;
  }

  .service__link:hover {
    color: var(--secondary-color);
  }

    .service__link:hover i {
      transform: translateX(5px);
    }

/* About Styles */
.about__thumb img {
  width: 100%;
  border-radius: 10px;
}

.about__list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

  .about__list ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }

    .about__list ul li i {
      color: var(--primary-color);
    }

/* Back to Top Button */
.back-to-top-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

  .back-to-top-wrapper.show {
    opacity: 1;
    visibility: visible;
  }

.back-to-top-btn {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

  .back-to-top-btn:hover {
    background: var(--secondary-color);
  }

/* Mobile Menu */
.hamburger-area {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  transition: right 0.3s ease;
  padding: 20px;
}

  .hamburger-area.show {
    right: 0;
  }

.hamburger-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

  .hamburger-btn span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--heading-color);
    margin: 5px 0;
    transition: all 0.3s ease;
  }

/* Breadcrumb Styles */
.breadcrumb-area {
  background: var(--gray);
  padding: 100px 0;
  margin-top: 120px;
}

.breadcrumb__content {
  text-align: center;
}

.breadcrumb__title {
  font-size: 48px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.breadcrumb__list {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

  .breadcrumb__list li {
    color: var(--text-color);
  }

    .breadcrumb__list li a {
      color: var(--primary-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }

      .breadcrumb__list li a:hover {
        color: var(--secondary-color);
      }

/* Counter Styles */
.counter-area {
  background: var(--primary-color);
  color: var(--white);
}

.counter__item {
  padding: 30px;
}

.counter__icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.counter__number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.counter__content p {
  font-size: 18px;
  margin: 0;
}

/* Team Styles */
.team__item {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

  .team__item:hover {
    transform: translateY(-10px);
  }

.team__thumb img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team__content {
  padding: 20px;
  text-align: center;
}

.team__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 5px;
}

  .team__title a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.3s ease;
  }

    .team__title a:hover {
      color: var(--primary-color);
    }

.team__position {
  color: var(--text-color);
  font-size: 16px;
}

/* CTA Styles */
.cta-area {
  background: var(--gray);
}

.cta__wrapper {
  padding: 50px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.cta__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.cta__wrapper p {
  font-size: 18px;
  margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .slider__title {
    font-size: 36px;
  }

  .main-menu {
    display: none;
  }

  .breadcrumb__title {
    font-size: 36px;
  }

  .counter__number {
    font-size: 36px;
  }

  .cta__title {
    font-size: 28px;
  }
}

@media (max-width: 767px) {
  .slider__title {
    font-size: 28px;
  }

  .slider__content {
    padding: 30px;
  }

  .service__item {
    margin-bottom: 30px;
  }

  .breadcrumb__title {
    font-size: 28px;
  }

  .counter__item {
    margin-bottom: 30px;
  }

  .team__thumb img {
    height: 250px;
  }

  .cta__wrapper {
    padding: 30px;
  }

  .cta__title {
    font-size: 24px;
  }
}

/* Портфолио Стилове */
.portfolio__filter {
  text-align: center;
  margin-bottom: 30px;
}

  .portfolio__filter .btn {
    margin: 0 5px;
    padding: 8px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
  }

    .portfolio__filter .btn.active {
      background-color: #007bff;
      color: white;
    }

.portfolio__item {
  margin-bottom: 30px;
}

.portfolio__thumbnail {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

  .portfolio__thumbnail img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

.portfolio__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}

.portfolio__thumbnail:hover .portfolio__overlay {
  opacity: 1;
}

.portfolio__thumbnail:hover img {
  transform: scale(1.1);
}

.portfolio__overlay h3 {
  color: white;
  margin-bottom: 10px;
}

.portfolio__overlay p {
  color: #ccc;
  margin-bottom: 15px;
}

.portfolio__overlay .btn {
  background-color: white;
  color: #333;
  padding: 8px 20px;
  border-radius: 20px;
  transition: all 0.3s ease;
}

  .portfolio__overlay .btn:hover {
    background-color: #007bff;
    color: white;
  }

/* Hero Area Styles */
.tj-hero-area {
  position: relative;
  overflow: hidden;
}

.tj-hero-height {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.tj-hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.tj-hero-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.tj-hero-content {
  position: relative;
  z-index: 1;
  padding: 50px 0;
  text-align: center;
  margin-top: 20%;
}

.tj-hero-title-box {
  margin-bottom: 30px;
  text-align: center;
}

.tj-hero-sub-title {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;
}

.tj-hero-title {
  color: var(--white);
  font-size: 64px;
  line-height: 1.2;
  margin-bottom: 30px;
  text-align: center;
}

  .tj-hero-title span {
    color: var(--primary-color);
  }

.tj-hero-paragraph {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.tj-hero-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

  .tj-hero-shape img {
    position: absolute;
  }

.tj-hero-shape-1 {
  top: 20%;
  left: 5%;
  animation: float 3s ease-in-out infinite;
}

.tj-hero-shape-2 {
  top: 40%;
  right: 10%;
  animation: float 4s ease-in-out infinite;
}

.tj-hero-shape-3 {
  bottom: 20%;
  left: 15%;
  animation: float 5s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .tj-hero-title {
    font-size: 48px;
  }

  .tj-hero-sub-title {
    font-size: 20px;
  }

  .tj-hero-paragraph {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .tj-hero-title {
    font-size: 36px;
  }

  .tj-hero-height {
    min-height: 80vh;
  }
}

.tj-hero-btn-box {
  text-align: center;
}
