/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
}

/* Colors */
:root {
  --color-default: #364d59;
  --color-primary: #feb900;
  --color-secondary: #52565e;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f5f6f7;
}

.section-header {
  text-align: center;
  padding-bottom: 70px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
  color: #2e3135;
}

.section-header h2:before,
.section-header h2:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--color-primary);
  display: inline-block;
}

.section-header h2:before {
  margin: 0 15px 10px 0;
}

.section-header h2:after {
  margin: 0 0 10px 15px;
}

.section-header p {
  margin: 0 auto 0 auto;
}

@media (min-width: 1199px) {
  .section-header p {
    max-width: 60%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs:before {
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #fff;
  content: "/";
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background: #ffc732;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary) 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;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  position: absolute;
  padding: 30px 0;
  top: 0;
  left: 0;
  right: 0;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# 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;
    padding: 0 3px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .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: #fff;
  }

  .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: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

  .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) {
  .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: rgba(0, 0, 0, 0.8);
    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;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    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 .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-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-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
  padding: 30px 0;
}


.get-started .content h3 {
  font-size: 36px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-started .content h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.get-started .content p {
  font-size: 14px;
}

.get-started .php-email-form {
  background: #fff;
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-started .php-email-form {
    padding: 20px;
  }
}

.get-started .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-started .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-started .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.get-started .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.get-started .php-email-form input,
.get-started .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.get-started .php-email-form input:focus,
.get-started .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.get-started .php-email-form input {
  padding: 12px 15px;
}

.get-started .php-email-form textarea {
  padding: 12px 15px;
}

.get-started .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-started .php-email-form button[type=submit]:hover {
  background: rgba(254, 185, 0, 0.8);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.constructions .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 40px;
  background: #fff;
  height: 100%;
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item .icon:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: #f0f1f2;
  border-radius: 50px;
  z-index: 1;
  top: 10px;
  right: -15px;
  transition: 0.3s;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 700;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  border-bottom: 4px solid #ebebed;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

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

.features .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Projects Section
--------------------------------------------------------------*/
.projects .portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.projects .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.projects .portfolio-flters li:first-child {
  margin-left: 0;
}

.projects .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .projects .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 0 15px 30px 0;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(82, 86, 94, 0.1);
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d5d7da;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: #000;
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--color-primary);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about h2 {
  font-size: 48px;
  font-weight: 700;
  font-family: var(--font-secondary);
  margin: 30px 0;
}

@media (min-width: 991px) {
  .about h2 {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: #ffffff;
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #838893;
}

.about .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
}

.about .watch-video i {
  font-size: 32px;
  transition: 0.3s;
  color: var(--color-primary);
}

.about .watch-video a {
  font-weight: 600;
  color: var(--color-secondary);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--color-primary);
}

.about .about-img {
  min-height: 600px;
  background-size: cover;
  background-position: center;
  margin-top: -3rem;
  margin-bottom: 2rem;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 6.5rem;
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter .stats-item {
  background: #fff;
  box-shadow: 0px 0 30px rgba(82, 86, 94, 0.05);
  padding: 30px;
}

.stats-counter .stats-item i {
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
  color: var(--color-primary);
}

.stats-counter .stats-item span {
  font-size: 36px;
  display: block;
  font-weight: 600;
  color: var(--color-secondary);
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Our Team Section
--------------------------------------------------------------*/
.team .member {
  position: relative;
}

.team .member .member-img {
  margin: 0 80px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

@media (max-width: 1024px) {
  .team .member .member-img {
    margin: 0 60px;
  }
}

.team .member .member-img img {
  position: relative;
  z-index: 1;
}

.team .member .member-img .social {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  padding-bottom: 20px;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
}

.team .member .member-img .social a {
  transition: 0.3s;
  color: #fff;
  font-size: 20px;
  margin: 0 8px;
}

.team .member .member-img .social a:hover {
  color: var(--color-primary);
}

.team .member .member-info {
  margin-top: 30px;
}

.team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 18px;
  color: var(--color-secondary);
}

.team .member .member-info span {
  font-style: italic;
  display: block;
  font-size: 15px;
  color: #838893;
  margin-bottom: 10px;
}

.team .member .member-info p {
  margin-bottom: 0;
  font-size: 14px;
}

.team .member:hover .member-img .social {
  padding-bottom: 0;
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Servie Cards Section
--------------------------------------------------------------*/
.services-cards h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.services-cards p {
  font-size: 15px;
}

.services-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
}

.services-cards ul li i {
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Projet Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.project-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {

  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.project-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #838893;
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: #ffc019;
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.project-details .portfolio-description p {
  padding: 0;
}

.project-details .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: #f5f6f7;
  height: 100%;
  margin-bottom: 50px;
}

.project-details .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid #fff;
  float: left;
  margin: 0 10px 0 0;
}

.project-details .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
}

.project-details .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left,
.project-details .portfolio-description .testimonial-item .quote-icon-right {
  color: #ffd565;
  font-size: 26px;
  line-height: 0;
}

.project-details .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.project-details .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.project-details .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d5d7da;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #d9e3e8;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0 30px 0;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px dotted #ffd565;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type=submit]:hover {
  background: rgba(254, 185, 0, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  overflow-x: hidden;
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: 100vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}

.hero .carousel-item::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  inset: 0;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero .info {
    padding: 0 10px;
  }
}

.hero .info h2 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hero .info .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
  background: var(--color-primary);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #838893;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: var(--color-secondary);
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-primary);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: var(--color-white);
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.blog .posts-list .post-img img {
  transition: 0.5s;
}

.blog .posts-list .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.blog .posts-list .post-content {
  padding: 30px;
}

.blog .posts-list .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.blog .posts-list .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.blog .posts-list .meta span {
  font-size: 15px;
  color: #838893;
}

.blog .posts-list p {
  margin-top: 20px;
}

.blog .posts-list hr {
  color: #888;
  margin-bottom: 20px;
}

.blog .posts-list .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.blog .posts-list .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.blog .posts-list .post-item:hover .post-title,
.blog .posts-list .post-item:hover .readmore {
  color: var(--color-primary);
}

.blog .posts-list .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.blog .blog-details .post-img {
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .blog-details .title {
  font-size: 28px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-secondary);
}

.blog .blog-details .content {
  margin-top: 20px;
}

.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(82, 86, 94, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-primary);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
  transition: 0.3s;
}

.blog .blog-details .meta-top a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(82, 86, 94, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #838893;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(82, 86, 94, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-secondary);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(82, 86, 94, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-secondary);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(254, 185, 0, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  max-width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(54, 77, 89, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #838893;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(131, 136, 147, 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(131, 136, 147, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-secondary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(82, 86, 94, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(254, 185, 0, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 4px;
  padding: 10px 20px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  color: var(--color-secondary);
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: #fff;
  background: url("../img/footer-bg.jpg") top center no-repeat;
  background-size: cover;
  font-size: 14px;
  padding: 80px 0 60px 0;
  position: relative;
}

.footer:before {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  position: absolute;
  inset: 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: #fff;
}

.footer .footer-content .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 4px;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

.footer .footer-content .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li {
  padding: 8px 0;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-legal .copyright {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: #fff;
}

.footer .footer-legal .credits a {
  color: var(--color-primary);
}



/* ============================================== */
/* Стили для линии єВідновлення (ОКОНЧАТЕЛЬНАЯ ВЕРСИЯ С МАСШТАБИРОВАНИЕМ) */
/* ============================================== */

/* 1. Анимация непрерывного перелива градиента (постоянно активна) */
@keyframes moving-gradient {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: -200% 50%; /* Движение слева направо */
    }
}

/* 2. Анимация покачивания всего блока при наведении */
@keyframes bar-wobble {
    0%, 100% { transform: translateX(0); }
    15% { transform: translateX(-1px); } /* Небольшое смещение для всего блока */
    30% { transform: translateX(1px); }
    45% { transform: translateX(-1px); }
    60% { transform: translateX(1px); }
    75% { transform: translateX(-0.5px); }
}


/* ФИКС: Смещение основного навигационного блока */
#header {
    margin-top: 45px !important; 
}

/* Общий контейнер */
#topbar-vidnovlennya {
    z-index: 1000000 !important; /* Гарантия кликабельности */
    position: relative; 
    cursor: pointer;
    
    padding: 10px 0 !important;
    background: #f9f9f9; 
    border-bottom: 3px solid #feb900 !important; 
    transition: all 0.2s ease-in-out; 
    
    /* Тень по умолчанию */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) !important; 
}

/* Эффект при наведении (Hover) */
#topbar-vidnovlennya:hover {
    background-color: #f0f0f0 !important; 
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3) !important; 
    animation: bar-wobble 0.8s ease-in-out;
}

/* Эффект при нажатии (Active) */
#topbar-vidnovlennya:active {
    background-color: #e9e9e9 !important; 
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important; 
}

/* Разрешаем выделение текста принудительно */
#topbar-vidnovlennya * {
    user-select: text !important; 
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
}

/* Стили для ссылки (контейнер иконки и текста) */
#topbar-vidnovlennya a {
    color: #364d59; 
    text-decoration: none; 
    font-weight: 600; 
    font-size: 17px; 
    text-transform: none; 
    display: flex;
    align-items: center; 
    transition: transform 0.2s ease; /* Плавность для масштабирования всей ссылки */
}

/* НОВЫЙ ЭФФЕКТ: Масштабирование всей ссылки при наведении */
#topbar-vidnovlennya:hover a {
    transform: scale(1.01); /* Легкое масштабирование всей строки */
}

.vidnovlennya-gradient-text {
  /* Градиентные стили */
  background: linear-gradient(90deg, #0057B8 0%, #FFED00 25%, #0057B8 50%, #FFED00 75%, #0057B8 100%);
  background-size: 400% auto; 
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  display: inline-block; 
  /* Постоянный запуск анимации градиента */
  animation: moving-gradient 8s linear infinite; 
}

.vidnovlennya-icon {
    height: 26px; 
    width: auto;
    vertical-align: middle; 
    margin-right: 10px;
}

/* АДАПТИВНОСТЬ */
@media (max-width: 575.98px) {
    #topbar-vidnovlennya {
        padding: 5px 0 !important;
    }
    #topbar-vidnovlennya a {
        font-size: 14px !important;
    }
    .vidnovlennya-icon {
        height: 22px; 
        margin-right: 5px; 
    }
    #header {
        margin-top: 35px !important;
    }
}
/* ============================================== */







/* --- СТИЛИ ДЛЯ ВЫДЕЛЕННОГО ТЕЛЕФОНА (prominent-phone-link) --- */

.prominent-phone-link {
    color: #fff; /* ФИКС: Текст номера - БЕЛЫЙ */
    /* Стили рамки */
    padding: 6px 14px; 
    border: 1.5px solid var(--color-primary); 
    border-radius: 50px; 
    font-weight: 700;
    font-size: 16px;
    margin-left: 15px; 
    transition: all 0.3s;
    text-decoration: none; 
    white-space: nowrap; 
}

.prominent-phone-link i {
    font-size: 18px;
    color: var(--color-primary); /* Иконка в нормальном состоянии - ЖЕЛТАЯ */
}

/* Эффект наведения */
.prominent-phone-link:hover {
    background: var(--color-primary); /* Фон ЖЕЛТЫЙ */
    color: var(--color-default); /* Текст номера - ТЕМНЫЙ */
    border-color: var(--color-primary);
    text-decoration: none;
}
.prominent-phone-link:hover i {
    /* ФИКС: Иконка должна стать ТЕМНОЙ на желтом фоне, а не сереть/белеть */
    color: var(--color-default); 
}

/* --- СТИЛИ ДЛЯ ПЕРЕКЛЮЧАТЕЛЯ ЯЗЫКА (language-switcher) --- */
.language-switcher {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.language-switcher .active {
    color: var(--color-primary); /* Активный язык (RU) - ЖЕЛТЫЙ */
    font-weight: 700 !important;
}

.language-switcher a {
    color: #fff; /* ФИКС: Неактивный язык (UA) - БЕЛЫЙ */
    text-decoration: none;
    transition: color 0.3s;
}

.language-switcher a:hover {
    color: var(--color-primary); 
}

/* ФИКС: Стиль для белого разделителя */
.language-switcher .separator-white {
    color: #fff; /* Разделитель - БЕЛЫЙ */
}


/* --- АДАПТАЦИЯ ДЛЯ МОБИЛЬНЫХ (< 1200px) --- */
@media (max-width: 1200px) {
    /* ФИКС: Телефон на мобильных должен быть слева от бургер-меню */
    
    /* Убеждаемся, что header-tools и бургер-иконка находятся в правильном порядке */
    
    /* 1. Позиционируем телефонный блок */
    .header-tools {
        display: flex !important; /* Убеждаемся, что блок виден */
        order: 1; /* Размещаем телефон вначале правой части контейнера */
    }
    
    /* 2. Отделяем телефон от бургер-меню */
    .prominent-phone-link {
        padding: 5px 10px;
        font-size: 14px;
        margin-left: 0;
        margin-right: 15px; /* Зазор между телефоном и бургер-иконкой */
    }
    
    /* 3. Убеждаемся, что бургер-иконки находятся после телефона */
    .mobile-nav-toggle {
        order: 2; /* Бургер идет после телефона */
        margin-right: 0 !important; /* Удаляем стандартные отступы, чтобы не конфликтовать */
        margin-left: 0 !important;
    }
    

    
    /* ФИКС: Убираем d-none d-md-inline из HTML для мобильной версии, 
       чтобы было видно только "+38 (098)" */
    .prominent-phone-link .d-none.d-md-inline {
        display: none !important;
    }
    .prominent-phone-link .d-md-none {
        display: inline !important;
    }
}









/* --------------------------------------------------------------
# Адаптация для мобильных: Увеличение размера "єВідновлення"
-------------------------------------------------------------- */

/* Применяем стили только для экранов шириной до 768px (мобильные и маленькие планшеты) */
@media (max-width: 768px) {
    
    /* 1. Увеличение высоты полосы */
    #topbar-vidnovlennya {
        /* Увеличиваем вертикальный отступ, чтобы сделать линию толще */
        padding: 12px 0; /* Делаем отступ 12px сверху и снизу */
    }

    /* 2. Увеличение текста и центрирование (если текст переносится) */
    .vidnovlennya-link {
        font-size: 18px !important; /* Увеличиваем базовый размер текста */
        font-weight: 600 !important; /* Делаем основной текст жирнее */
        
        /* Важно: если текст переносится, нужно его центрировать */
        text-align: center;
        /* Убираем flex для ссылки, чтобы она могла переносить контент */
        display: block; 
        
        /* Убедимся, что градиентный текст тоже крупнее */
    }
    
    /* Дополнительно: Увеличиваем градиентный текст */
    .vidnovlennya-gradient-text {
        font-size: 20px !important; /* Делаем градиентный текст еще крупнее */
        font-weight: 800 !important;
        margin-left: 5px; /* Сохраняем отступ */
        display: inline; /* Возвращаем inline для градиента */
    }
    
    /* Дополнительно: Убедимся, что иконка не слишком большая */
    .vidnovlennya-icon {
        max-height: 24px; /* Ограничиваем высоту иконки, если она слишком большая */
        margin-right: 5px; /* Небольшой отступ от текста */
    }
}



/* ==========================================================
// ФИКС: Улучшение видимости кнопки закрытия меню (X) на мобильных
// ========================================================== */

/* Целевой элемент: иконка X, которая появляется, когда меню открыто */
.mobile-nav-hide {
    /* 1. Увеличение контрастности и размера */
    color: #fff !important; /* Чистый белый для максимального контраста с темным оверлеем */
    font-size: 32px !important; /* Значительное увеличение размера иконки */
    
    /* 2. Увеличение кликабельной области */
    width: 44px !important; /* Увеличение ширины контейнера */
    height: 44px !important; /* Увеличение высоты контейнера */
    line-height: 44px !important; /* Центрирование иконки по вертикали */
    text-align: center;
    padding: 0 !important; /* Убираем лишний padding, если он был */

}

/* 4. Эффект при нажатии/наведении (улучшение UX) */
.mobile-nav-hide:hover {
    color: var(--color-default) !important; /* Темный текст */
    background-color: #fff !important; /* Белый фон при наведении */
    border-color: #fff !important;
}

/* Если у вас есть медиа-запрос для мобильных, этот код должен быть в нем, но 
   если он стоит в конце main.css, он уже будет иметь высокий приоритет. 
   Если кнопка все еще плохо видна, возможно, она находится под другим элементом.
   В этом случае добавьте:
   z-index: 99999 !important;
*/



/* -------------------------------------------------------------- */
    /* III. ФИКС ПОЗИЦИИ КНОПКИ ЗАКРЫТИЯ (X) */
    /* -------------------------------------------------------------- */
    .mobile-nav-hide {
        /* Опускаем кнопку "X" ниже увеличенной полосы єВідновлення (55px) + небольшой отступ */
        top: 60px !important; 
        right: 15px !important; /* Убедимся, что она справа */
    }




    /**
* Template Name: UpConstruction - v1.3.0
* Template URL: https://bootstrapmade.com/upconstruction-bootstrap-construction-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Work Sans", sans-serif;
}

/* Colors */
:root {
  --color-default: #364d59;
  --color-primary: #feb900;
  --color-secondary: #52565e;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: #ffc732;
}





/* --------------------------------------------------------------
* V. CUSTOM STYLES ADDED FOR UWS (ФИНАЛЬНАЯ ВЕРСИЯ)
* -------------------------------------------------------------- */

/* 1. Header and Footer Logo Styling */

.logo img {
    max-height: 40px;
    margin-right: 8px;
}

.footer-info img.footer-logo {
    max-height: 60px; /* Увеличение логотипа в футере вдвое */
}


/* 2. Call Button (Dropdown) Styling */

.dropdown-phone-btn {
    /* Базовый стиль: белый текст, желтая рамка, скругленная форма (Pill shape) */
    padding: 8px 15px;
    border-radius: 50px; /* Скругление как у кнопки "Вызвать мастера" */
    color: white; /* Белый текст */
    background: transparent;
    border: 2px solid var(--color-primary); /* Желтая округленная рамка */
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    font-weight: 600; 
}

/* Интерактивность (При наведении/открытии) */
.dropdown-phone-btn:hover,
.dropdown-phone-btn:focus,
.dropdown-phone-btn.show {
    background: var(--color-primary); /* Сплошная желтая заливка */
    border-color: var(--color-primary);
    color: var(--color-default); /* Темный текст на желтом фоне для лучшего контраста */
}

/* Стилизация выпадающего меню */
.dropdown-menu {
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--color-primary); /* Желтая рамка для меню */
    padding: 0;
}

.dropdown-item {
    padding: 10px 15px;
    white-space: nowrap; 
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.dropdown-item:hover {
    background-color: var(--color-primary);
    color: var(--color-default); /* Темный текст на желтом фоне при наведении */
}

/* Стилизация операторов (Бейдж) */
.operator-label {
    font-size: 0.65em; /* Базовый размер для шапки */
    padding: 2px 8px; /* Базовый padding для шапки */
    border-radius: 50px; /* Полное скругление (Pill shape) */
    font-weight: 700;
    margin-left: 10px;
    display: inline-block; 
}

/* ИЗМЕНЕНИЕ: Увеличение размера шрифта в футере при сохранении минимальной высоты */
.footer-info .operator-label {
    font-size: 0.8em; /* ИЗМЕНЕНИЕ: Увеличенный размер шрифта */
    padding: 0px 8px; /* Сохраняем минимальный вертикальный padding */
}

/* Цвета операторов */
.vodafone-color {
    background-color: #e60000; /* Красный */
    color: white;
}

.kyivstar-color {
    background-color: #1188D4; /* Синий Киевстар */
    color: white; 
}

.lifecell-color {
    background-color: var(--color-primary); /* Желтый сайта #feb900 */
    color: var(--color-default); /* Темный текст для контраста */
}



/* Унификация выпадающих списков */
.navbar .dropdown ul, 
.dropdown-menu {
  border-radius: 15px !important; /* Скругление */
  overflow: hidden;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0,0,0,0.05) !important;
  padding: 10px 0 !important;
}

.navbar .dropdown ul a,
.dropdown-item {
  transition: 0.2s ease-in-out;
}

.navbar .dropdown ul a:hover,
.dropdown-item:hover {
  background-color: var(--color-primary) !important;
  color: #fff !important;
}

/* --- Кнопка языка (Общие стили) --- */
.navbar .lang-btn-style {
  border: 1px solid var(--color-default); /* Цвет как у текста */
  border-radius: 20px;
  padding: 4px 12px !important;
  margin-left: 15px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}

.navbar .lang-btn-style i {
  font-size: 16px;
  margin-right: 5px;
}

.navbar .lang-btn-style:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* --- КОМПАКТНОСТЬ В МОБИЛЬНОЙ ВЕРСИИ (Бургер-меню) --- */
@media (max-width: 1279px) {
  .navbar .lang-selector {
    display: inline-block; /* Позволяет кнопке не растягиваться на всю ширину */
    margin: 10px 0 10px 20px; /* Отступы в меню */
  }

  .navbar .lang-btn-style {
    margin-left: 0;
    padding: 3px 10px !important; /* Еще более компактные поля */
    font-size: 13px; /* Уменьшаем шрифт для мобилок */
    border-color: rgba(54, 77, 89, 0.5); /* Делаем рамку чуть мягче */
  }
  
  /* Убираем лишние отступы у выпадающего списка в мобилке */
  .navbar .lang-selector ul {
    position: static;
    display: none;
    margin: 5px 0;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  
  .navbar .lang-selector.dropdown-active ul {
    display: block;
  }
}

/* --- ОБЩИЕ СКРУГЛЕНИЯ (Пункт 4 вашего запроса) --- */
.navbar .dropdown ul, 
.dropdown-menu {
  border-radius: 12px !important; /* Красивое современное скругление */
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1) !important;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}



/* Стили для главной кнопки на страницах услуг */
.btn-service-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: #364d59 !important; /* Темный текст для контраста */
  font-size: 1.1rem;
  font-weight: 700;
  padding: 18px 35px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(254, 185, 0, 0.3);
  border: none;
  text-decoration: none;
}

.btn-service-main:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(254, 185, 0, 0.5);
  background-color: #ffc732;
  color: #000 !important;
}

.btn-service-main:active {
  transform: translateY(0) scale(0.98);
}

/* Адаптация под мобильные устройства */
@media (max-width: 768px) {
  .btn-service-main {
    font-size: 0.9rem;
    padding: 15px 20px;
    width: 100%; /* На весь экран в мобилках */
  }
}







.portfolio-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.portfolio-content {
  transition: all 0.3s ease;
}

.portfolio-link:hover .portfolio-content {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.portfolio-link:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  padding: 20px 15px 15px;
  color: #fff;
  transition: transform 0.3s ease;
}

.portfolio-link:hover .portfolio-info {
  transform: translateY(-10px);
}



/* Контейнер для видео */
.about-video-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 600px; /* Обязательно, чтобы блок не был нулевой высоты */
  overflow: hidden;
  border-radius: 15px; /* Красивое скругление как у фото */
}

/* Само видео */
.about-video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Растягивает видео на весь блок без черных полос */
}

@media (max-width: 992px) {
  .about-video-wrapper {
    min-height: 300px;
    margin-bottom: 20px;
  }
}





  .faq-nav-list .list-group-item {
    transition: all 0.3s ease;
  }
  
  .faq-nav-list .list-group-item:hover {
    background-color: #fff9e6 !important; /* Дуже світлий жовтий фон */
    padding-left: 1.5rem !important;
  }

  .faq-nav-list .list-group-item:hover span {
    color: #000 !important; /* Текст стає чорним при наведенні */
  }
  
  /* Колір жовтої іконки (warning) */
  .text-warning {
    color: #feb900 !important;
  }





  /* Стиль контейнера іконки */
  .alt-services .icon-circle {
    width: 50px;
    height: 50px;
    background: #f8f9fa; /* Світло-сірий фон за замовчуванням */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(254, 185, 0, 0.2);
  }

  /* Стиль заголовків */
  .alt-services .icon-box h4 a {
    color: #2a3d47;
    transition: 0.3s;
  }

  /* Ефект при наведенні на весь блок */
  .alt-services .icon-box:hover .icon-circle {
    background-color: #feb900; /* Жовтий фон */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(254, 185, 0, 0.3);
  }

  /* Головний секрет: при наведенні іконка міняє колір на темно-синій, щоб її було видно на жовтому */
  .alt-services .icon-box:hover i {
    color: #1a252b !important; 
  }

  .alt-services .icon-box:hover h4 a {
    color: #feb900;
  }

  /* Компактні відступи для мобільних */
  @media (max-width: 768px) {
    .alt-services .img-bg {
      min-height: 300px;
      margin-bottom: 20px;
    }
  }




/* Стилізація вкладок */
.features .nav-tabs .nav-link {
  border: 1px solid #eee;
  border-radius: 12px;
  margin: 5px;
  background: #fff;
  transition: 0.3s;
  color: #2a3d47;
}

.features .nav-tabs .nav-link.active {
  border-color: #feb900;
  background: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.features .nav-tabs .nav-link.active i {
  color: #feb900 !important;
}

.features .nav-tabs .nav-link h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.features .tab-pane img {
  max-height: 400px;
  object-fit: cover;
  width: 100%;
}




/* Стилі для плаваючої іконки над фото */
.service-card { transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important; }

.service-icon-floating {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #feb900;
    color: #1a252b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 5px solid #fff;
    box-shadow: 0 5px 15px rgba(254, 185, 0, 0.3);
    z-index: 2;
}

.service-card:hover .service-icon-floating {
    background: #1a252b;
    color: #feb900;
    transition: 0.3s;
}


  .service-card { transition: all 0.3s ease; border: none; }
  .service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important; }
  .service-icon-floating { 
    position: absolute; bottom: -25px; left: 50%; transform: translateX(-50%); 
    width: 60px; height: 60px; background: #feb900; color: #1a252b; 
    border-radius: 50%; display: flex; align-items: center; justify-content: center; 
    font-size: 22px; border: 5px solid #fff; box-shadow: 0 5px 15px rgba(254, 185, 0, 0.2); z-index: 2; 
  }
  .service-card:hover .service-icon-floating { background: #1a252b; color: #feb900; }
  
  .cta-service-box { border-left: 10px solid #1a252b; }
  .icon-circle { flex-shrink: 0; }
  
  @media (max-width: 991px) {
    .cta-service-box { text-align: center; flex-direction: column; }
    .cta-service-box .d-flex { flex-direction: column; }
    .cta-service-box .icon-circle { margin-right: 0 !important; margin-bottom: 1rem; }
  }



  .transition-all {
    transition: all 0.3s ease;
  }
  .btn-warning:hover {
    transform: scale(1.05);
    background-color: #ffc107;
    box-shadow: 0 10px 20px rgba(254, 185, 0, 0.3) !important;
  }
  .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
  }




  .services-cards {
    padding: 60px 0;
  }
  .info-card {
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent !important;
  }
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border-color: #feb900 !important;
  }
  .info-card .icon-box i {
    display: inline-block;
    padding: 10px;
    background: rgba(254, 185, 0, 0.1);
    border-radius: 10px;
    line-height: 1;
  }
  .info-card h4 {
    font-size: 1.15rem;
    color: #1a252b;
  }
  .info-card ul li i {
    font-size: 1rem;
    line-height: 1.4;
  }




  .contact-link { color: #444; font-weight: 600; text-decoration: none; transition: 0.3s; font-size: 1.1rem; }
  .contact-link:hover { color: #feb900; }
  
  .operator-tag { font-size: 0.65rem; padding: 2px 8px; border-radius: 4px; color: #fff; vertical-align: middle; margin-left: 5px; font-weight: 700; text-transform: uppercase; }
  .vodafone-bg { background: #e60000; }
  .kyivstar-bg { background: #00a1ff; }
  .lifecell-bg { background: #ffcc00; color: #000; }

  /* Месенджери */
  .btn-viber { background: #7360f2; color: #fff; border: none; }
  .btn-viber:hover { background: #5a49d1; color: #fff; transform: translateY(-2px); }
  .btn-telegram { background: #0088cc; color: #fff; border: none; }
  .btn-telegram:hover { background: #0071a9; color: #fff; transform: translateY(-2px); }
  .btn-whatsapp { background: #25d366; color: #fff; border: none; }
  .btn-whatsapp:hover { background: #1ebd5b; color: #fff; transform: translateY(-2px); }

  /* Форма */
  .form-control:focus { border-color: #feb900; box-shadow: 0 0 0 0.25rem rgba(254, 185, 0, 0.1); }
  .btn-warning:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(254, 185, 0, 0.3); }
  
  /* Корекція повідомлення успіху у стилях шаблону */
  .php-email-form .sent-message {
    background-color: #d4edda !important;
    color: #155724 !important;
    padding: 15px !important;
    font-weight: 600 !important;
    text-align: center;
    border-radius: 8px;
  }



@media (max-width: 768px) {
  .section-header h2:before,
  .section-header h2:after {
    display: none; /* Прибираємо бокові лінії */
  }

  .section-header h2 {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  /* Створюємо одну лінію знизу по центру */
  .section-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-primary);
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    margin: 0; /* Скидаємо стандартні маргінали */
  }

}





@media (max-width: 576px) {
  /* 1. Форма та контакти на всю ширину */
  .mobile-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .info-container, .form-wrapper {
    padding: 25px 15px !important; /* Внутрішні відступи для тексту */
    border-radius: 0 !important; /* Прибираємо заокруглення, щоб блок прилягав до країв */
    box-shadow: none !important; /* Прибираємо тінь для чистого вигляду */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
  }

  /* 2. Номери телефонів як великі кнопки */
  .contact-info-item .flex-column {
    width: 100%;
    margin-top: 10px;
  }

  .contact-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    padding: 12px 15px !important;
    border-radius: 10px;
    margin-bottom: 8px;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    color: #1a252b !important;
  }

  .contact-link:active {
    background: #feb900;
    border-color: #feb900;
  }

  /* 3. Ущільнення форми */
  .php-email-form .form-label {
    margin-bottom: 2px !important; /* Відстань від назви до поля */
    font-size: 0.85rem !important;
    color: #555;
  }

  .form-group {
    margin-bottom: 12px !important; /* Відстань між самими полями */
  }

  /* 4. Месенджери на всю ширину */
  .contact-info-item .flex-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px !important;
  }

  .btn-viber, .btn-telegram, .btn-whatsapp {
    width: 100% !important;
    margin: 0 !important;
    padding: 12px !important;
    font-size: 1rem !important;
    justify-content: center;
  }
}


/* Новий клас для стилізації підказок */
.muted-placeholder::placeholder {
  color: #a0a7ad !important; /* Світло-сірий колір Bootstrap */
  font-weight: 400;          /* Тонший шрифт, щоб не зливався з жирним label */
}

/* Для підтримки в старих браузерах */
.muted-placeholder:-ms-input-placeholder { color: #adb5bd !important; }
.muted-placeholder::-ms-input-placeholder { color: #adb5bd !important; }





  /* Спільні стилі для кнопок */
  .messenger-btn {
    border-radius: 10px;
    transition: 0.3s;
    font-size: 0.95rem;
    font-weight: 600;
    min-width: 160px; /* Однакова фіксована ширина для всіх пристроїв */
  }

  .viber-bg { background-color: #7360f2; }
  .telegram-bg { background-color: #0088cc; }
  .whatsapp-bg { background-color: #25d366; }

/* Виправлений блок для кнопок месенджерів */
.messenger-btn:hover {
  transform: translateY(-2px);
  opacity: 0.85; /* Робимо кнопку трохи прозорішою замість зміни кольору */
  color: white !important; /* Примусово залишаємо текст білим */
}

/* Додаємо специфічні кольори фону при наведенні, щоб вони не ставали білими */
.viber-bg:hover { background-color: #6554d4 !important; }
.telegram-bg:hover { background-color: #0077b3 !important; }
.whatsapp-bg:hover { background-color: #21bd5c !important; }

  /* Мобільна адаптація */
  @media (max-width: 576px) {
    .messenger-buttons-group {
      flex-direction: column; /* Кожна кнопка в окремому рядку */
      align-items: center;    /* Центрування кнопок по горизонталі */
    }
    
    .messenger-btn {
      width: 100%;           /* На мобільних розтягуємо на всю ширину для зручності */
      max-width: 280px;      /* Але обмежуємо максимальну ширину, щоб не були занадто довгими */
      padding: 12px 0;       /* Робимо їх трохи вищими для пальців */
    }
  }


  #contact {
  /* Налаштуйте цифру під висоту вашої шапки сайту */
  scroll-margin-top: 100px; 
}

/* Для мобільних можна зробити відступ меншим */
@media (max-width: 768px) {
  #contact {
    scroll-margin-top: 70px;
  }
}



/* Ефекти при наведенні */
.btn-animate:hover {
  background: #ffcc00 !important; /* Трохи світліший жовтий */
  transform: translateY(-3px) scale(1.02); /* Піднімається вгору і збільшується */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important; /* Посилюємо тінь */
  color: #000 !important;
}

/* Ефект при натисканні */
.btn-animate:active {
  transform: translateY(-1px) scale(0.98); /* Наче втискається */
}

/* Анімація появи (інтерактивність при відображенні) */
.btn-animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Опціонально: постійне легке пульсування, щоб привернути увагу */
@keyframes pulse-yellow {
  0% { box-shadow: 0 0 0 0 rgba(254, 185, 0, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(254, 185, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(254, 185, 0, 0); }
}

/* Додайте цей клас до кнопки, якщо хочете, щоб вона постійно пульсувала */
.btn-pulse {
  animation: pulse-yellow 2s infinite;
}




.floating-contact-btn {
  position: fixed;
  left: 30px;
  bottom: 30px;
  background: #feb900;
  color: #1a252b;
  border: none;
  border-radius: 50px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 999;
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-contact-btn:hover {
  transform: translateY(-5px);
  background: #e5a700;
}

.floating-contact-btn i {
  font-size: 1.4rem;
}

/* На мобільних показуємо тільки іконку для економії місця */
@media (max-width: 576px) {
  .floating-contact-btn span {
    display: none;
  }
  .floating-contact-btn {
    padding: 15px;
    padding-left: 20px;
    padding-right: 20px;
    left: 20px;
    bottom: 20px;
  }
}

.border-dashed {
  border-style: dashed !important;
}





/* Фікс вигляду логотипу без h1 */
.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  font-family: var(--font-primary);
  display: inline-block;
}

.logo-text span {
  color: var(--color-primary);
}

/* Покращення читабельності H1 та H2 у hero */
#hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

#hero h2 {
  font-size: 32px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  #hero h1 { font-size: 48px; }
  #hero h2 { font-size: 28px; }
}

@media (max-width: 576px) {
  #hero h1 { font-size: 42px; }
  #hero h2 { font-size: 24px; }
}


/* ==============================================
   ALT-SERVICES — МАКСИМАЛЬНО СТИСНУТА ПО ВИСОТІ
   ============================================== */

.alt-services {
  padding: 40px 0 20px;               /* мінімум padding секції */
  background: #fff;
}

.alt-services .img-bg {
  min-height: 280px;                   /* найменша комфортна висота фото */
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.alt-services .col-lg-5 {
  padding-left: 25px;                  /* мінімальний боковий відступ */
}

/* Заголовок — компактний */
.alt-services h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1a252b;
  margin-bottom: 0.8rem;
  line-height: 1.1;
}

/* Підзаголовок — щільний */
.alt-services p.text-muted {
  font-size: 0.92rem;
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* Пункт переваги — супер-стиснутий */
.alt-services .icon-box {
  margin-bottom: 0.8rem;               /* дуже мала відстань між пунктами */
  transition: transform 0.2s ease;
}

.alt-services .icon-box:hover {
  transform: translateY(-2px);
}

/* Іконка — мінімальна */
.alt-services .icon-box i {
  width: 44px;
  height: 44px;
  font-size: 1.35rem;
  color: #feb900;
  background: rgba(254, 185, 0, 0.12);
  border-radius: 10px;
  flex-shrink: 0;
  margin-right: 0.9rem;
}

/* Текст — щільний */
.alt-services .icon-box strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a252b;
  display: block;
  margin-bottom: 0.15rem;
}

.alt-services .icon-box strong a {
  color: inherit;
  text-decoration: none;
}

.alt-services .icon-box strong a:hover {
  color: #feb900;
}

.alt-services .icon-box p {
  font-size: 0.88rem;
  color: #52565e;
  margin: 0;
  line-height: 1.4;
}

/* Мобільна — ультра-компактна */
@media (max-width: 991px) {
  .alt-services {
    padding: 30px 0 15px;
  }

  .alt-services .img-bg {
    min-height: 340px;
    margin-bottom: 0.8rem;
  }

  .alt-services .col-lg-5 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .alt-services h2 {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .alt-services h2 {
    font-size: 24px;
    margin-bottom: 0.6rem;
  }

  .alt-services .icon-box i {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
    margin-right: 0.8rem;
  }

  .alt-services .icon-box strong {
    font-size: 1rem;
  }

  .alt-services .icon-box p {
    font-size: 0.85rem;
  }

  .alt-services .icon-box {
    margin-bottom: 0.6rem;
  }
}



/* ==============================================
   СЕКЦІЯ ПРОЄКТИ — ГАРНІ ТА КОМПАКТНІ СТИЛІ
   ============================================== */

.projects {
  padding: 80px 0 60px;
  background-color: #f9fafa;
}

.projects .section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a252b;
  margin-bottom: 1rem;
}

.projects .section-header p {
  font-size: 1.1rem;
  color: #52565e;
  max-width: 800px;
  margin: 0 auto;
}

/* Фільтри — сучасні кнопки */
.projects .portfolio-flters {
  margin-bottom: 2.5rem;
}

.projects .portfolio-flters li {
  display: inline-block;
  padding: 10px 24px;
  margin: 0 8px 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #52565e;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  background: #feb900;
  color: #1a252b;
  border-color: #feb900;
  box-shadow: 0 6px 15px rgba(254,185,0,0.3);
  transform: translateY(-2px);
}

/* Картки проєктів — гарний hover */
.projects .portfolio-item {
  margin-bottom: 30px;
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  background: #fff;
}

.projects .portfolio-content:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.projects .portfolio-content img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.projects .portfolio-content:hover img {
  transform: scale(1.08);
}

/* Оверлей при наведенні */
.projects .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.projects .portfolio-content:hover .portfolio-overlay {
  opacity: 1;
}

.projects .portfolio-overlay i {
  font-size: 48px;
  color: #fff;
  background: rgba(254,185,0,0.9);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.projects .portfolio-content:hover .portfolio-overlay i {
  transform: scale(1.1);
}

/* Інформація під фото */
.projects .portfolio-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,0.95);
  padding: 16px 20px;
  border-radius: 12px;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.projects .portfolio-content:hover .portfolio-info {
  transform: translateY(0);
  opacity: 1;
}

.projects .portfolio-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a252b;
  margin-bottom: 8px;
}

.projects .portfolio-info p {
  font-size: 15px;
  color: #52565e;
  margin: 0;
  line-height: 1.4;
}

/* Адаптивність */
@media (max-width: 991px) {
  .projects .portfolio-content img {
    height: 240px;
  }

  .projects .portfolio-info h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .projects .portfolio-flters li {
    padding: 8px 18px;
    font-size: 15px;
    margin: 0 6px 10px 0;
  }

  .projects .portfolio-content img {
    height: 220px;
  }

  .projects .portfolio-info {
    padding: 12px 16px;
  }

  .projects .portfolio-info h3 {
    font-size: 17px;
  }
}

/* Компактні фільтри для секції #projects */
.portfolio-flters {
  padding: 0;
  margin-bottom: 1.5rem !important;
  text-align: center;
}

.portfolio-flters li {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 6px 10px 0;
  font-size: 15px;
  font-weight: 600;
  color: #52565e;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.portfolio-flters li:hover,
.portfolio-flters li.filter-active {
  background: #feb900;
  color: #1a252b;
  border-color: #feb900;
  box-shadow: 0 4px 12px rgba(254,185,0,0.25);
  transform: translateY(-2px);
}

/* На мобільних — ще компактніше */
@media (max-width: 768px) {
  .portfolio-flters li {
    padding: 6px 14px;
    font-size: 14px;
    margin: 0 4px 8px 0;
  }
}



/* ==============================================
   FINAL CTA — ГАРНІ ТА СУЧАСНІ СТИЛІ (2026)
   ============================================== */

#final-cta {
  padding: 80px 0 100px;
  background: linear-gradient(to bottom, #f8f9fa 0%, #e9ecef 100%);
}

#final-cta .cta-container {
  background: linear-gradient(135deg, #2a3d47 0%, #1a252b 100%);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(26,37,43,0.35);
  border: 1px solid rgba(254,185,0,0.25);
}

/* Фоновий градієнт + легка текстура */
.cta-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(254,185,0,0.12) 0%, transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}

/* Внутрішній контент */
.cta-inner {
  position: relative;
  z-index: 2;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
}

.cta-icon {
  font-size: 4.5rem;
  color: #feb900;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 8px 16px rgba(254,185,0,0.4));
  animation: pulse 3s infinite ease-in-out;
}

.cta-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg, #feb900, #ffc732, #feb900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shine 6s linear infinite;
}

.cta-description {
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.cta-description strong {
  color: #feb900;
  font-weight: 700;
}

/* Кнопки CTA */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.cta-btn {
  padding: 16px 40px;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.25);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.cta-btn-primary {
  background: #feb900;
  color: #1a252b;
  border: 2px solid #feb900;
}

.cta-btn-primary:hover {
  background: #ffc732;
  color: #1a252b;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(254,185,0,0.5);
}

.cta-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}

.cta-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #feb900;
  color: #feb900;
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(254,185,0,0.3);
}

/* Переваги внизу */
.cta-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.cta-feature {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  gap: 10px;
}

.cta-feature i {
  font-size: 1.6rem;
  color: #feb900;
}

/* Анімації */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes shine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Адаптивність */
@media (max-width: 992px) {
  .cta-inner {
    padding: 50px 30px;
  }

  .cta-title {
    font-size: 2.2rem;
  }

  .cta-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 1.9rem;
  }

  .cta-description {
    font-size: 1rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
  }

  .cta-features {
    flex-direction: column;
    gap: 1rem;
  }
}


/* ==============================================
   FOOTER — MODERN & INTERACTIVE (2026 EDITION)
   ============================================== */

.footer {
  background: linear-gradient(180deg, #0f171c 0%, #050505 100%);
  color: #fff;
  padding: 80px 0 30px; /* Трохи більше простору зверху */
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

/* Декоративний елемент фону для глибини */
.footer::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(254, 185, 0, 0.05) 0%, rgba(254, 185, 0, 0) 70%);
  bottom: -100px;
  right: -50px;
  pointer-events: none;
}

/* Тонка преміальна верхня лінія */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, #feb900, #ffc732, #feb900, transparent);
  box-shadow: 0 2px 15px rgba(254,185,0,0.4);
}

.footer h3,
.footer h4 {
  color: #feb900;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  text-transform: uppercase; /* Для більш сучасного вигляду заголовків */
}

/* Контейнер логотипу та тексту */
.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 20px; /* Сучасний спосіб відступів */
}

.footer-logo {
  max-height: 75px;
  filter: drop-shadow(0 0 8px rgba(254,185,0,0.2));
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-logo:hover {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 0 15px rgba(254,185,0,0.5));
}

.footer-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
}

/* Посилання в футері */
.footer-links li {
  margin-bottom: 0.8rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

/* Ефект при наведенні на посилання */
.footer-links a:hover {
  color: #feb900;
  transform: translateX(8px);
}

.footer-links a::before {
  content: "→";
  opacity: 0;
  margin-right: -15px;
  transition: all 0.3s ease;
  color: #feb900;
}

.footer-links a:hover::before {
  opacity: 1;
  margin-right: 8px;
}

/* Контактні кнопки (Glassmorphism стиль) */
.footer-contact-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px border transparent;
  padding: 10px 15px;
  border-radius: 12px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
}

.footer-contact-item:hover {
  background: rgba(254, 185, 0, 0.08);
  border-color: rgba(254, 185, 0, 0.3);
  transform: translateY(-3px);
}

/* Оператори */
.operator-label {
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  margin-left: auto; /* Притискає лейбл до правого краю */
  text-transform: uppercase;
}

.vodafone-color { background: #e60000; color: white; }
.kyivstar-color { background: #1188D4; color: white; }
.lifecell-color { background: #feb900; color: #1a252b; }

/* Нижня частина */
.footer-legal {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.footer-legal a {
  color: #feb900;
  font-weight: 600;
  transition: 0.3s;
}

.footer-legal a:hover {
  text-shadow: 0 0 10px rgba(254,185,0,0.5);
}

/* Адаптивність */
@media (max-width: 991px) {
  .footer { text-align: center; }
  .footer-logo-wrapper { 
    flex-direction: column; 
    text-align: center;
    gap: 10px;
  }
  .footer-links a:hover { transform: translateY(-3px); }
  .footer-links a:hover::before { display: none; }
}

@media (max-width: 768px) {
  .footer-contact-item {
    justify-content: center;
  }
  .operator-label {
    margin-left: 10px;
    position: static;
  }
}


/* ==============================================
   ОНОВЛЕНІ СТИЛІ ФУТЕРА
   ============================================== */

.footer {
  background: linear-gradient(180deg, #0f171c 0%, #050505 100%);
  color: #fff;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
}

/* Залишаємо тільки саму верхню жовту лінію сайту */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, #feb900, #ffc732, #feb900, transparent);
  box-shadow: 0 2px 15px rgba(254,185,0,0.4);
}

/* Колонки заголовків */
.footer h4 {
  color: #feb900;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Контакти у вигляді карток */
.footer-contact-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 10px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.05);
  color: #fff;
  text-decoration: none;
}

.footer-contact-item:hover {
  background: rgba(254, 185, 0, 0.1);
  border-color: rgba(254, 185, 0, 0.4);
  transform: translateX(5px);
  color: #feb900;
}



.footer-legal strong {
  color: #fff;
}

/* Адаптивність для відступів */
@media (max-width: 991px) {
  .ps-lg-5 {
    padding-left: var(--bs-gutter-x, 0.75rem) !important; /* Скидаємо відступ на мобільних */
  }
  .footer-contact-item:hover {
    transform: translateY(-3px); /* На мобільних краще вгору, ніж вбік */
  }
}

.footer {
  /* Повертаємо фон-картинку з затемненням */
  background: linear-gradient(rgba(15, 23, 28, 0.95), rgba(0, 0, 0, 0.98)), 
              url('../img/footer-bg.jpg') center center no-repeat;
  background-size: cover;
  color: #fff;
  padding: 80px 0 40px;
  position: relative;
}

/* Прибираємо лінію над копірайтом */
.footer-legal {
  border-top: none !important; /* Force remove */
  margin-top: 2rem;
  padding-top: 0;
}

/* Налаштування пошти, щоб виглядала як телефонні посилання */
.footer-email-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 15px;
  border-radius: 10px;
  display: inline-block;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.footer-email-link:hover {
  background: rgba(254, 185, 0, 0.1);
  color: #feb900;
  border-color: #feb900;
}

/* Коригування відступів для колонок на десктопі */
@media (min-width: 992px) {
  .ps-lg-5 {
    padding-left: 3rem !important;
  }
}

/* Адаптація для мобільних — прибираємо зміщення (offset) */
@media (max-width: 991px) {
  .offset-lg-1 {
    margin-left: 0;
  }
  .footer {
    text-align: center;
  }
}

.footer {
  /* Затемнення зменшено з 0.95/0.98 до 0.8/0.85 */
  background: linear-gradient(rgba(15, 23, 28, 0.8), rgba(0, 0, 0, 0.85)), 
              url('../img/footer-bg.jpg') center center no-repeat;
  background-size: cover;
  background-attachment: fixed; /* Додає ефект паралаксу, виглядає дуже сучасно */
  color: #fff;
  padding: 60px 0 30px; /* Зменшено загальний вертикальний падінг */
  position: relative;
}

/* Прибираємо верхню жовту лінію, якщо вона не потрібна, або робимо її тоншою */
.footer::before {
  height: 3px;
  background: linear-gradient(to right, transparent, #feb900, transparent);
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.1); /* Дуже тонка напівпрозора лінія */
  margin-top: 2rem !important; /* Фіксований відступ зверху */
  padding-top: 1.5rem !important;
}

/* Налаштування списків послуг, щоб довгі назви не ламали верстку */
.footer-links a {
  font-size: 0.9rem;
  line-height: 1.2;
  margin-bottom: 5px;
}

/* Стиль для пошти під телефонами */
.footer-email-link {
  font-size: 0.9rem;
  color: rgba(254, 185, 0, 0.9);
  text-decoration: underline;
  transition: 0.3s;
}

.footer-email-link:hover {
  color: #fff;
  text-decoration: none;
}

/* Адаптивність для блоків, що посунуті праворуч */
@media (max-width: 991px) {
  .offset-lg-1 {
    margin-left: 0 !important;
  }
  .footer-legal {
    margin-top: 1.5rem !important;
  }
}



/* Компактний банер для внутрішніх сторінок */
.page-header-mini {
  padding: 50px 0 55px 0; /* Відступи, щоб хидер мав простір */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  min-height: 50px; /* Обмежена висота */
  display: flex;
  align-items: flex-end; /* Текст буде знизу, якщо захочете додати */
}

/* Затемнення фону, щоб біле меню завжди зчитувалося */
.page-header-mini::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* Темний шар поверх фото */
}

/* Виправлення відступу для main на внутрішніх сторінках */
.main-page-content {
  margin-top: -30px; /* Легке наїдання контенту на банер для стилю */
  position: relative;
  z-index: 2;
}

/* Адаптивність компактний банер для внутрішніх сторінок */
@media (max-width: 767px) {
  .page-header-mini {
  padding: 50px 0 40px 0; /* Відступи, щоб хидер мав простір */
}
}

/* Адаптивність компактний банер для внутрішніх сторінок */
@media (max-width: 413px) {
  .page-header-mini {
  padding: 50px 0 15px 0; /* Відступи, щоб хидер мав простір */
}
}






/* Скрываем стрелки карусели на мобильных (по желанию) */
@media (max-width: 767.98px) {
  #hero-carousel .carousel-control-prev,
  #hero-carousel .carousel-control-next {
    display: none !important;
  }
}





/* Ещё меньше для самых маленьких экранов (xs, <576px) — опционально */
@media (max-width: 576px) {
  #hero h1 {
    padding: 60px 0 0 0;
    font-size: 2rem !important;
  }

  #hero h2 {
    font-size: 1.4rem !important;
  }

  #hero p {
    font-size: 1.2rem !important;
  }
}