body {
    font-family: 'Golos Text', Arial, sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.gradient-container {
    position: relative;
    overflow: hidden;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to bottom right, rgba(0, 0, 0, 0) 0%, rgb(255, 102, 0, 0.2) 50%, rgb(0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.navbar, .hero-section, .clients-section, .advantages-section, .contact-section, .faq-section {
    position: relative;
    z-index: 2;
}

.navbar {
    background-color: transparent; /* Ensure navbar remains transparent for the gradient */
    padding: 0.5rem 1rem;
}

.navbar-brand img {
    max-height: 60px;
}

.nav-link:hover, .nav-link:focus {
    color: #ff6600 !important;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-icons i {
    font-size: 24px;
    color: #fff;
}

.btn-outline-orange {
    color: #ff6600;
    border-color: #ff6600;
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

.btn-outline-orange:hover {
    background-color: #ff6600;
    color: #fff;
}

.phone-number {
    color: #ff6600;
    font-weight: bold;
    margin-left: 10px;
    font-size: 1.25rem;
}

.hero-section {
    padding: 3rem 0;
    color: #fff;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
}

.hero-detail {
    color: #fff;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero-detail span {
    color: #ff6600;
    font-weight: bold;
}

.btn-primary-custom {
    background-color: #ff6600;
    border-color: #ff6600;
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    font-weight: bold;
}

.btn-primary-custom:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

.clients-section {
    background-color: transparent;
    padding: 5rem 0;
}

.clients-title {
    color: #ff6600;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    font-weight: bold;
}

/* Responsive carousel control icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    background-size: 100% 100%;
}

.carousel-control-prev-icon {
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23ff6600" viewBox="0 0 16 16"%3E%3Cpath d="M11.354 1.646a.5.5 0 0 1 0 .708L6.707 7.001l4.647 4.647a.5.5 0 0 1-.708.708l-5-5a.5.5 0 0 1 0-.708l5-5a.5.5 0 0 1 .708 0z"/%3E%3C/svg%3E');
}

.carousel-control-next-icon {
    background-image: url('data:image/svg+xml;charset=UTF-8,%3Csvg xmlns="http://www.w3.org/2000/svg" fill="%23ff6600" viewBox="0 0 16 16"%3E%3Cpath d="M4.646 1.646a.5.5 0 0 0 0 .708L9.293 7.001 4.646 11.648a.5.5 0 0 0 .708.708l5-5a.5.5 0 0 0 0-.708l-5-5a.5.5 0 0 0-.708 0z"/%3E%3C/svg%3E');
}

/* Control icon sizes for different screen sizes */
@media (max-width: 576px) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        height: 40px;
        width: 40px;
    }
}

@media (min-width: 577px) and (max-width: 768px) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        height: 60px;
        width: 60px;
    }
}

@media (min-width: 769px) {
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        height: 80px;
        width: 80px;
    }
}

/* Client logo styles */
.client-logo {
    max-height: 150px;
    width: auto;
    margin: 0 20px;
}
.advantages-section {
    background-color: transparent;
    padding: 4rem 0;
}

.advantages-title {
    color: #ff6600;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: bold;
}

.advantage-box {
    background: linear-gradient(to right, rgb(0 0 0 / 0%), rgba(0, 0, 0, 0.5));
    border: 1px solid #ff6600;
    padding: 1.5rem;
    border-radius: 10px;
    color: #fff;
    text-align: center;
    transition: transform 0.3s ease;
}

.advantage-box:hover {
    transform: scale(1.05);
}

.advantage-highlight {
    color: #ff6600;
    font-weight: bold;
    margin-bottom: 1rem;
}

.advantage-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.advantage-description {
    font-size: 1rem;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .advantage-box {
        margin-bottom: 1rem;
    }
}
.text-orange {
    color: #ff6600;
}

.bg-orange {
    background-color: #ff6600;
    color: #fff;
}

.bg-dark {
    background-color: #121212;
    color: #fff;
}

.warranty-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    max-width: 45%;
}

.shield {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
}

.shield span {
    font-size: 2.5rem;
}

.warranty-box p {
    margin: 0;
}

.warranty-box .mb-0 {
    margin-bottom: 0;
}
.warranty-svg {
    width: 100px;  /* Adjust the width to make the SVG smaller */
    height: auto;  /* Maintain the aspect ratio */
}
.badge {
    border: 1px solid #ff6600;
}
.contact-section {
    background-color: transparent;
    padding: 4rem 0;
}

.form-control-lg {
    background-color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    padding: 1rem;
}

.btn-orange {
    background-color: #ff6600;
    border-color: #ff6600;
}

.btn-orange:hover {
    background-color: #e65c00;
    border-color: #e65c00;
}

.contact-info i {
    font-size: 1.25rem;
}

.social-icons i {
    font-size: 1.5rem;
}

.social-icons a {
    color: #fff;
}

.contact-info p {
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
}

.faq-section {
    background-color: transparent;
    padding: 4rem 0;
}

.accordion-button {
    background-color: transparent !important;
    color: #fff !important;
}

.accordion-button.collapsed, .accordion-item, .accordion-header  {
    background-color: transparent;
}

.accordion-button:not(.collapsed) {
    font-weight: 600;
    font-size: 18px;
}

.accordion-button::after {
    filter: invert(1);  /* Invert the color of the chevron icon */
}

.accordion-body {
    background-color: transparent;
    color: #fff;  /* White text for the content */
}
.accordion-button:focus {
    border-bottom: 1px solid #fff;
    box-shadow: none;
}
.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100; /* Ensure it appears above other elements */
    border: 1px solid #ff6600;
    color: white; /* White text */
    background: transparent;
    border-radius: 50%; /* Rounded button */
    padding: 10px 15px;
    font-size: 20px; /* Size of the arrow */
    cursor: pointer;
    display: none; /* Hidden by default */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for depth */
}

.scroll-to-top:hover {
    background-color: #e65c00; /* Darker orange on hover */
}

.modal-content {
    background-color: #121212;
    border-radius: 10px;
}

.btn-close-white {
    filter: invert(1);
}

.switcher-container {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #333;
    padding: 10px;
    border-radius: 20px;
    border: 2px solid #ff6600;
}

.switcher-container button {
    background-color: #222;
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.switcher-container button.active {
    background-color: #ff6600;
    color: #000;
}

@media (max-width: 1600px) {
    .hero-section {
        padding-top: 120px;
    }
    .switcher-container {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: row;
        justify-content: center;
        width: auto;
        margin-top: 30px;
    }

    .switcher-container button {
        padding: 5px 15px;
        width: auto;
    }
}

video {
    max-width: 300px;
    border-radius: 15px;
}