/* Стилове за секцията "Диамантено пробиване" */
.section-diamentno-probivane {
    background-color: #f9f9f9;
    padding: 60px 0;
    overflow: hidden;
}

/* Контейнер за секцията */
.section-diamentno-probivane .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Заглавие */
.section-diamentno-probivane h2 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin: 0;
    text-align: center;
}

.section-diamentno-probivane h2 span.text-theme-colored {
    color: #00a33a; /* Използвай тематичния цвят за акцентиране */
}

/* Основно съдържание */
.section-diamentno-probivane .section-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

/* Стилизация на абзаца */
.section-diamentno-probivane p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Анимация за елементите */
.wow {
     visibility: hidden;
 }

.wow.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 50%, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Адаптивност на реда */
.section-diamentno-probivane .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-diamentno-probivane .col-md-7, .section-diamentno-probivane .col-md-5 {
    flex: 0 0 48%;
}

/* Мобилна оптимизация */
@media (max-width: 768px) {
    .section-diamentno-probivane .section-content {
        flex-direction: column;
        text-align: center;
    }

    .section-diamentno-probivane .col-md-7, .section-diamentno-probivane .col-md-5 {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .section-diamentno-probivane h2 {
        font-size: 2rem;
    }

    .section-diamentno-probivane p {
        font-size: 1rem;
    }

    .section-diamentno-probivane .img-fluid {
        max-height: 250px;
    }
}

/* Допълнителни стилове за привлекателност */
.highlight-text {
    color: #333;
    font-weight: 500;
    line-height: 1.8;
}

.highlight-text span {
    color: #00a33a; /* Тематичен цвят */
    font-weight: bold;
}

.benefits-list {
    margin: 20px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.benefits-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Увеличаване на картинката */
.col-md-5 img {
    width: 120%;
    height: auto;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Декоративни линии отляво и отдясно */
.decorative-left, .decorative-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 100px;
    background-color: #00a33a;
    border-radius: 10px;
    z-index: -1;
}

.decorative-left {
    left: -20px;
}

.decorative-right {
    right: -20px;
}

/* Анимация за декоративните елементи */
.decorative-left, .decorative-right {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Декоративни капки вода отляво и отдясно */
.water-drops-left, .water-drops-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-image: url('path/to/your-droplet-image.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0;
    animation: fadeInDrops 2s ease-in-out forwards;
}

.water-drops-left {
    left: -40px;
}

.water-drops-right {
    right: -40px;
}

/* Анимация за капките */
@keyframes fadeInDrops {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

/* Стилове за секцията "Поливни Системи" */
.section-polivni-sistemi {
    background-color: #f9f9f9;
    padding: 60px 0;
    overflow: hidden;
}

/* Контейнер за секцията */
.section-polivni-sistemi .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Заглавие */
.section-polivni-sistemi h2 {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    margin: 0;
    text-align: center;
}

.section-polivni-sistemi h2 span.text-theme-colored {
    color: #007bff; /* Използвай тематичния цвят за акцентиране */
}

/* Основно съдържание */
.section-polivni-sistemi .section-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

/* Стилизация на абзаца */
.section-polivni-sistemi p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Стилизация на изображението */


/* Анимация за елементите */
.wow {
    visibility: hidden;
}

.wow.fadeInUp {
    animation-name: fadeInUp;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 50%, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Адаптивност на реда */
.section-polivni-sistemi .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.section-polivni-sistemi .col-md-7, .section-polivni-sistemi .col-md-5 {
    flex: 0 0 48%;
}

/* Мобилна оптимизация */
@media (max-width: 768px) {
    .section-polivni-sistemi .section-content {
        flex-direction: column;
        text-align: center;
    }

    .section-polivni-sistemi .col-md-7, .section-polivni-sistemi .col-md-5 {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }

    .section-polivni-sistemi h2 {
        font-size: 2rem;
    }

    .section-polivni-sistemi p {
        font-size: 1rem;
    }

    .section-polivni-sistemi .img-fluid {
        max-height: 250px;
    }
}

/* Допълнителни стилове за привлекателност */
.highlight-text {
    color: #333;
    font-weight: 500;
    line-height: 1.8;
}

.highlight-text span {
    color: #007bff; /* Тематичен цвят */
    font-weight: bold;
}

.benefits-list {
    margin: 20px 0;
    padding-left: 20px;
    list-style-type: disc;
}

.benefits-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

/* Увеличаване на картинката */
.col-md-5 img {
    width: 120%;
    height: auto;
    margin-top: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Декоративни линии отляво и отдясно */
.decorative-left, .decorative-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 100px;
    background-color: #007bff;
    border-radius: 10px;
    z-index: -1;
}

.decorative-left {
    left: -20px;
}

.decorative-right {
    right: -20px;
}

/* Анимация за декоративните елементи */
.decorative-left, .decorative-right {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Декоративни капки вода отляво и отдясно */
.water-drops-left, .water-drops-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-image: url('path/to/your-droplet-image.svg');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0;
    animation: fadeInDrops 2s ease-in-out forwards;
}

.water-drops-left {
    left: -40px;
}

.water-drops-right {
    right: -40px;
}

/* Анимация за капките */
@keyframes fadeInDrops {
    0% {
        opacity: 0;
        transform: translateY(-50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}
