﻿.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.hero-slide {
    display: none;
    width: 100%;
    min-height: 100vh;
    align-items: center;
    background: #f8fafc;
}

    .hero-slide.active {
        display: flex;
    }

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-subtitle {
    display: inline-block;
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 650px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    text-align: center;
}

    .hero-image img {
        width: 100%;
        max-width: 650px;
        animation: floatImage 5s ease-in-out infinite;
    }

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.active-dot {
    background: var(--primary-green);
}

.hero-bg-one {
    background: linear-gradient(135deg,#ffffff,#eef7ff);
}

.hero-bg-two {
    background: linear-gradient(135deg,#ffffff,#f2fff8);
}

.hero-bg-three {
    background: linear-gradient(135deg,#ffffff,#eef6ff);
}

@keyframes floatImage {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}
