:root {
  --main-bg: rgb(255, 255, 255);
  --main-text: rgb(0, 0, 0);
  --accent-color: rgb(3, 129, 18);
}

body {
  font-family: Arial, sans-serif;
  background-color: var(--main-bg);
  color: var(--main-text);
}

.navbar-nav .nav-link:hover {
  color: #038112 !important;
  transition: color 0.3s ease;
}
.logo {
width: auto;
height: 80px;
object-fit: cover;
}

#ceo-img{
  width: auto;
  height: 500px;
}

.baner-action {
  background-color: #038112;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
}
.baner-action a, .baner-action a:hover {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: medium;
}

.hero-section {
  position: relative;
  width: 100%;
  height: 500px;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/office.avif') no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
  z-index: -2;
}

.hero-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
  z-index: -1;
}

/* Текстова стилистика и анимация */
.hero-section h1 {
  font-size: clamp(2rem, 6vw, 80px);
  color: #ffffff;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s ease-out forwards;
}

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

.choose-section h2 {
  color: #038112;
}

.choose-section h4 {
  color: #038112;
}

.choose-section p {
  line-height: 2;
}

.choose-section .bordered-sides {
  border-left: 1px solid #038112;
  border-right: 1px solid #038112;
}

#textCarousel {
  background-color: #038112;
  padding: 10px 20px;
  border-radius: 5px;
  margin-bottom: 20px;
  margin-top: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  min-height: 14em;
}

.carousel-inner h3 {
  font-size: 1.8rem;
  color: white;
  text-align: center;
  transition: opacity 0.5s ease;
}

.carousel-inner h4 {
  font-size: 1.2rem;
  color: white;
  text-align: center;
  transition: opacity 0.5s ease;
}

.carousel-indicators [data-bs-target] {
  background-color: #fff;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.services {
  padding: 60px 0;
}


.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-section {
  background-color: #038112;
}

.contact-section a:hover {
  text-decoration: underline;
  opacity: 0.85;
}

#gc-book-footer + button {
  background: transparent !important;
  border: none !important;
  color: white !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 1rem !important;
  font-weight: normal !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  vertical-align: baseline !important;
}
#gc-book-footer + button:hover {
  text-decoration: underline !important;
  opacity: 0.85 !important;
}

.form-control:focus {
  border-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.btn-light:hover {
  background-color: #f1f1f1;
  color: #038112;
}

.footer {
  background-color: #343a40;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  transition: all 0.3s ease-in-out;
}

.font_1 {
  letter-spacing: 0em;
  font-size: 80px;
}

.font_2 {
  font-size: 60px;
  color: rgb(3, 129, 18);
  letter-spacing: 0em;
}