body {
  overflow-x: clip;
}

/* Header Starts */

/* Burger Starts */

#burger-toggle {
  display: none;
}

/* иконка бургера */
.burger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
}

.burger span,
.burger::before,
.burger::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #fff;
  left: 0;
  transition: 0.3s;
}

.burger::before {
  top: 0;
}

.burger span {
  top: 50%;
  transform: translateY(-50%);
}

.burger::after {
  bottom: 0;
}

/* Burger Ends*/

header {
    background-color: #161616;
    border-bottom: 1px solid #3d3d3d;
}

.container-header {
    max-width: 1200px;
    padding: 2px clamp(16px, 6vw, 50px);
    margin: 0 auto;
}

.top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 5px;
}

.logo img {
    max-height: 90px;
}

.contact-header {
    display: flex;
    margin-left: 40px;
    font-size: 17px;
    text-align: right;
    flex: 1;
}

.phone-numbers a {
  color: #f5922e !important;
  text-decoration: none !important;
}

.whatsapp-button {
    position: fixed;
    right: -20px;
    bottom: 30px;
    transform: translate(-50%, -50%);
    background: #25D366;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    color: #fff;
    text-align: center;
    line-height: 80px;
    font-size: 50px;
    z-index: 9999;
}

.whatsapp-button a {
    color: #fff;
}

.whatsapp-button:before,
.whatsapp-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25D366; 
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    backface-visibility: hidden; 
}
 
.whatsapp-button:after{
    animation-delay: .5s;
}
 
.seo-hero-text {
  max-width: 500px;
  margin: 20px auto 0;
  padding: 16px 22px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
  border-radius: 12px;
  color: #f1f1f1;
  line-height: 1.6;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.map-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.map-section iframe {
  width: 100%;
  height: 460px;
  border: 0;
}

.seo-hero-text .lead {
  margin: 0;
  font-weight: 400;
  font-size: 15px;
}

@media (max-width: 576px) {
  .seo-hero-text {
    font-size: 0.9rem;
    padding: 14px 18px;
  }
}

@keyframes animate
{
    0%
    {
        transform: scale(0.5);
        opacity: 0;
    }
    50%
    {
        opacity: 1;
    }
    100%
    {
        transform: scale(1.2);
        opacity: 0;
    }
}

.phone-header {
    text-align: center;
    flex: 1;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 150%;
    overflow: hidden;
    min-width: 120px;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    color: #cacaca;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
}

.email-header {
    max-width: 150px;
    text-align: right;
    font-size: 14px;
    color: #cacaca;
}

.navbar-bottom {
    padding-top: 15px;
}

.header-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.header-bottom li {
    list-style: none;
    font-size: clamp(12px, 1.1vw, 14px);
    line-height: 150%;
    font-weight: 600;
}

.header-bottom li a {
    text-decoration: none;
    color: #929292;
}

.header-bottom li a:after {
    background-color: #CD5F3A;
    display: block;
    content: "";
    height: 2px;
    width: 0%;
    -webkit-transition: width .3s ease-in-out;
    -moz--transition: width .3s ease-in-out;
    transition: width .3s ease-in-out;
}

.header-bottom li a:hover:after,
.header-bottom li a:focus:after {
    width: 100%;
}

.header-bottom span a {
    color: #CD5F3A;
}

/* Header Ends */

/* Main Info Starts */

.main-nav {
  position: relative;
}

.header-bottom {
  display: flex;
  gap: 40px;
}

@media (max-width: 785px) {

  .burger {
    display: block;
  }

  .header-bottom {
    display: none;
    position: absolute;
    top: 100%;
    left: -150px;
    flex-direction: column;
    background-color: #161616;
    padding: 20px;
    z-index: 1000;
  }
}

@media (max-width: 785px) {

  .email-header {
    display: none;
  }

  .header-bottom {
    position: absolute;
    top: 100%;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    pointer-events: none;
    transition: 
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
      z-index: 1000;
  }

  #burger-toggle:checked ~ .header-bottom {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
  }

}
.burger {
  left: 10px;
}

.main-info {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  inset: 0;
  will-change: transform;
}

.main-text-left h1 {
    font-weight: 600;
    font-size: 80px;
    line-height: 100%;
    margin: 0;
    padding-top: 180px;
    color: white;
    padding-bottom: 40px;
    text-align: center;
}

.main-text-left h1 span {
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 10px;
}

.line {
    width: 100px;
    height: 1px;
    background-color: #DCDCDC;
    margin: 0 auto;
}

.main-text-left h2 {
    color: white;
    font-size: 25px;
    font-weight: 600;
    margin-top: 40px;
    text-align: center;
}

.main-text-left h2 span {
    font-weight: 600;
}

/* Mobile Version Starts */
@media (max-width: 992px) {
  .main-text-left h1 {
    font-size: 50px;
    padding-top: 100px;
    padding-bottom: 20px;
  }

  .main-text-left h2 {
    font-size: 18px;
    margin-top: 20px;
  }

  .btn-main {
    padding-bottom: 100px;
  }

  .line {
    width: 80px;
    margin: 0 auto;
  }

  .phone-header div {
    white-space: nowrap;
    overflow: hidden; 
    font-size: clamp(5px, 5vw, 17px);
  }
}

@media (max-width: 576px) {
  .main-text-left h1 {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .main-text-left h2 {
    font-size: 22px;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .btn-three span {
    font-size: 14px;
  }

  .line {
    width: 60px;
  }

  .main-info {
    background-size: cover;
    background-position: center;
    padding-bottom: 100px;
  }
}

@media (max-width: 768px) {
  .main-info {
    background-size: cover;
    background-position: center;
    padding-bottom: 100px;
  }
}

@media (max-width: 480px) {
  .main-info {
    background-size: cover;
    background-position: center;
    padding-bottom: 100px;
  }
}

/* Mobile Version Ends */

/* Main Info Ends */

/* About Us Section Starts */

.about-us-information h2 {
    text-align: center;
    font-weight: 700;
    font-size: 48px;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #CD5F3A;
}

.card-link {
    color: var(--bs-card-color);
}
.about-us-information p {
    text-align: center;
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 50px;
    text-align: justify;
}

.about-us {
    background-color: #f4f4f4;
    padding: 60px 0;
}

.container {
    width: 90%;
    margin: 0 auto;
}

.about-us-information {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-us-information {
    animation: fadeInUp 1s ease-in-out;
}

/* About Us Section Ends */

/* Our Services Starts */

.service-title h2 {
    text-align: center;
    font-weight: 700;
    font-size: 48px;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #3d3d3d;
}

.service-card .btn-outline-secondary:hover,
.service-card .btn-outline-secondary:focus {
  background-color: transparent !important;
  color: #0d6efd !important;
  border-color: #0d6efd !important;
  box-shadow: none;
}

.card-img-container {
  overflow: hidden;
  max-height: 220px;
}

.card-img-container img {
  transition: transform 0.4s ease;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.service-card:hover .card-img-container img {
  transform: scale(1.05);
}

.card-title {
    color: #e25d32 !important;
}

.service-card:hover .card-title {
  color: #0d6efd;
}

.service-card {
  transition: box-shadow 0.3s ease;
  border-radius: 0.5rem;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.service-card:hover {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.service-card .btn {
  transition: all 0.3s ease;
}

.service-card:hover .btn {
  border-color: #0d6efd;
  color: #0d6efd;
}

@media (max-width: 576px) {
  .card-img-container {
    max-height: 180px;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .card-text {
    font-size: 0.95rem;
  }
}

/* Our Services Ends */

/* Count Starts */

.stats-section {
  background-color: #CD5F3A;
}

.stat-box {
  font-family: inherit;
}

.stat-number {
  font-size: 75px;
  font-weight: 600;
  color: #ffffff;
  transition: all 0.3s ease;
}

.stat-label {
  font-size: 24px;
  margin-top: 0.5rem;
  color: #ffffff;
}

.stats-section .col-md-3:not(:last-child) {
    border-right: 1px solid #cccccc60;
}

@media (min-width: 768px) {
    .stats-section .col-md-3:not(:last-child) {
      border-right: 1px solid #ccc;
    }
  }
  
@media (max-width: 767.98px) {
    .stats-section .col-12 {
      border: none !important;
    }
}

/* Count Ends */

/* Why Choose Us? Start */

.why-choose-us-section {
  background-color: rgba(0, 0, 0, 0.8);
  background-image: url('/mnt/data/59fdc4b0-b03e-4f39-90fc-5c24bfc5a71a.png');
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.why-choose-us-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.section-subtitle {
  font-size: 1rem;
}

.section-title {
  font-size: 2.5rem;
  line-height: 1.2;
}

.reason-item {
  padding: 1rem;
  border-left: 3px solid #ff4d30;
}

.reason-item .icon i {
  font-size: 2rem;
  color: #ff4d30;
}

/* Why Choose Us? Ends */

/* FAQ Starts */

.faq-section .accordion-button::after {
  filter: brightness(0) invert(1); 
  transition: transform 0.3s ease, filter 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
  filter: brightness(0);
}

.faq-section .accordion-button:focus {
  box-shadow: none;
  outline: none;
}

.faq-section .accordion-button {
  font-weight: 600;
  color: #000;
  background-color: #f8f9fa;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-section .accordion-item:not(.bg-dark) .accordion-button:not(.collapsed) {
  background-color: #212529;
  color: #fff;
}

.faq-section .accordion-item.bg-dark .accordion-button {
  color: #fff;
  background-color: #212529;
}

.faq-section .accordion-item.bg-dark .accordion-button:not(.collapsed) {
  background-color: #212529;
  color: #fff;
}

.faq-section .accordion-body {
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

.faq-section .accordion-item.bg-dark .accordion-body {
  background-color: #212529;
  color: #fff;
}

/* FAQ Ends */

/* FAQ Ends */

.service-card {
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  background-color: #ffe6ce;
  transform: translateY(-5px);
}

.service-card .hover-icon {
  transition: all 0.3s ease;
  color: #d6336c;
}

.service-card:hover .hover-icon {
  opacity: 1;
  transform: translateY(-5px);
}

.service-link {
  color: #000; 
  transition: color 0.3s ease;
}

.service-link:hover {
  color: #c82333; 
}

/* FAQ Ends */

/* Footer Starts */

  .floating-icons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
  }

  .floating-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }

  .icon-phone {
    background-color: #d6562b;
  }

  .icon-whatsapp {
    background-color: #25D366;
  }

  .floating-icons a:hover {
    transform: scale(1.1);
  }

/* Footer Ends */

.hero-section .overlay {
  background-color: rgba(0, 0, 0, 0.6);
}

.main-info {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

input[type="file"] {
  position: relative !important;
  z-index: 1 !important;
  width: 100% !important;
  height: auto !important;
  opacity: 1 !important;
}