html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  background-color: #2c2c2c;
  color: #ddd;
  padding-top: 70px;
}

a {
  text-decoration: none;
}

.navbar {
  border-bottom: 2px solid #f39c12;
  transition: background-color 0.3s ease;
}

.navbar-brand {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}

.navbar-nav .nav-link {
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #f39c12;
}

.jumbotron {
  background-color: #343a40;
  margin-bottom: 0;
  padding: 4rem 2rem;
  animation: fadeIn 1s ease-in-out;
}

.jumbotron h1,
.jumbotron p {
  color: #fff;
}

.btn-primary {
  background-color: #f39c12;
  border-color: #f39c12;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
  background-color: #e08e0b;
  border-color: #d67e09;
  transform: scale(1.05);
}

.card {
  background-color: #3a3a3a;
  border: 1px solid #555;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
}

form .form-control {
  background-color: #4a4a4a;
  border: 1px solid #666;
  color: #fff;
  transition: border-color 0.3s ease;
}

form .form-control:focus {
  border-color: #f39c12;
}

form .form-control::placeholder {
  color: #bbb;
}

footer {
  border-top: 2px solid #f39c12;
}

.accordion .card-header {
  background-color: #3a3a3a;
  border-bottom: 1px solid #555;
}

.accordion .btn-link {
  color: #f39c12;
  font-weight: bold;
  transition: color 0.3s ease;
}

.accordion .btn-link:hover {
  color: #e08e0b;
}

#back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #f39c12;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

#header {
  position: relative;
  background: url('../images/header-bg.jpg') no-repeat center center;
  background-size: cover;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  z-index: 1;
}

#header .container {
  position: relative;
  z-index: 2;
}

#header h1 {
  font-size: 6.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
}

.lead {
  font-size: 2rem;
}

#header .btn-lg {
  font-size: 1.6rem;
}

#services .card-title {
  font-size: 1.75rem;
}

#services .btn {
  font-size: 1.25rem;
}

#about {
  background-color: #f8f9fa;
  color: #333;
}

#about h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

#about h4 {
  font-size: 1.75rem;
  margin-top: 1rem;
  color: #333;
}
.custom-about-img {
  border: 3px solid #f39c12;
  border-radius: 10px;
}

#about p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #333;
}
#features {
  color: #fff;
  padding: 5rem 0;
}
#features h4 {
  font-size: 1.75rem;
  margin-top: 1rem;
}
#features p {
  font-size: 1rem;
  line-height: 1.6;
}
#features i {
  color: #fff;
}
.custom-features {
  position: relative;
  overflow: hidden;
}

.custom-features::before {
  content: "";
  background: url('../images/features-bg.jpg') no-repeat center center;
  background-size: cover;
  filter: blur(8px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.feature-block {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 2rem;
  margin: 1rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.feature-block i {
  font-size: 3rem;
}

.feature-block h4 {
  margin-top: 1rem;
  font-size: 1.75rem;
}

.feature-block p {
  font-size: 1rem;
  line-height: 1.6;
}
.icon-innovation {
  color: #F39C12 !important;
}

.icon-security {
  color: #27AE60 !important;
}

.icon-teamwork {
  color: #3498DB !important;
}
.custom-contact-img {
  border: 3px solid #f39c12;
  border-radius: 10px;
}

#contact h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

#contact form label {
  color: #aaa;
}

#contact form .form-control {
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  color: #aaa;
}

#contact form .form-control::placeholder {
  color: #ccc;
}
#testimonials {
  position: relative;
  width: 100%;
  overflow: hidden;
}

#testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/testimonials-bg.jpg') no-repeat center center;
  background-size: cover;
  filter: blur(8px);
  z-index: -1;
}


#testimonials h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.swiper-container {
  padding: 2rem 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

#testimonials .card {
  background-color: #fff;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

#testimonials .card:hover {
  transform: translateY(-5px);
}

.testimonial-photo {
  margin-bottom: 1rem;
}

.testimonial-photo img {
  border: 3px solid #f39c12;
  border-radius: 50%;
}

#testimonials .card-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
}

#testimonials .card-subtitle {
  font-size: 1rem;
  color: #777;
}
#team {
  background-color: #f8f9fa; /* светло-серый фон */
  color: #333;
  padding: 5rem 0;
}

#team h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #333;
}

.team-member {
  margin-bottom: 2rem;
}

.team-member img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #f39c12;
  border-radius: 50%;
}

.team-member h4 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.team-member p {
  font-size: 1rem;
  color: #666;
}
.card-header button {
  font-size: 18px;
}
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(51, 51, 51, 0.95);
  color: #fff;
  padding: 1rem 0;
  z-index: 10000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-consent p {
  font-size: 0.9rem;
  margin: 0;
}

.cookie-consent a {
  color: #f39c12;
  text-decoration: underline;
}
/* Custom Styles for Contact Modal Form */
.modal-content {
  border-radius: 10px;
}

.modal-header {
  background-color: #f39c12;
  color: #fff;
  border-bottom: none;
}

.modal-title {
  font-size: 1.75rem;
  font-weight: bold;
}

.modal-body {
  background-color: #f8f9fa;
  color: #333;
  padding: 2rem;
}

.modal-body .form-group label {
  color: #333;
  font-weight: bold;
}

.modal-body .form-control {
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #fff;
  color: #333;
}

.modal-body .form-control:focus {
  border-color: #f39c12;
  box-shadow: none;
}

.modal-body .btn-primary {
  background-color: #f39c12;
  border-color: #f39c12;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.modal-body .btn-primary:hover {
  background-color: #e08e0b;
  border-color: #d67e09;
}
.navbar-container {
  display: flex;
  flex-direction: column;
}

.top-menu {
  font-size: 0.9rem;
}

.top-menu i {
  margin-right: 5px;
}

.bottom-menu {
  margin-top: 5px;
  width: 100%;
}
body {
  background-color: #2c2c2c;
  color: #ddd;
  font-family: 'Roboto', sans-serif;
  padding-top: 70px;
  margin: 0;
}

.thankyou-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.thankyou-container h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}

.thankyou-container p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #ccc;
}

.btn-home {
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
  background-color: #f39c12;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  color: #fff;
  text-decoration: none;
}

.btn-home:hover {
  background-color: #e08e0b;
  transform: scale(1.05);
}
@media screen and (max-width: 768px) {
  #header h1 {
    font-size: 3.5rem;
  }
  .lead {
    font-size: 1.5rem;
  }
  .navbar-brand {
    font-size: 15px;
  }
}