.split-slider {
    max-width: 820px;
    min-height: 270px;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 36px rgba(46,54,80,0.16);
    overflow: hidden;
    position: relative;
}
.split-slider .slides {
    height: 270px;
}
.split-slider .slide {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    padding: 0;
    background: none;
}
.split-slider .slide-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2.2rem 2.2rem 2.2rem 2.5rem;
    background: linear-gradient(120deg, #e6fbe9 60%, #b6f5d8 100%);
    min-width: 0;
}
.split-slider .slide-content h2 {
    font-size: 1.6rem;
    color: #1eae60;
    margin: 0 0 0.7rem 0;
    font-weight: 700;
    letter-spacing: 1px;
}
.split-slider .slide-content p {
    font-size: 1.08rem;
    color: #444;
    margin: 0;
    opacity: 0.92;
}
.split-slider .slide-image {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6fbe9;
    min-width: 0;
    padding: 0;
}
.split-slider .slide-image img {
    width: 220px;
    height: 180px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(46,54,80,0.13);
    margin: 0 2rem 0 0;
    background: #fff;
}
.split-slider .slider-controls {
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
}
.split-slider .slider-controls span {
    background: rgba(30,174,96,0.85);
    color: #fff;
    font-size: 2.1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    box-shadow: 0 2px 8px rgba(30,174,96,0.13);
    user-select: none;
    pointer-events: auto;
    transition: background 0.2s, transform 0.2s;
}
.split-slider .slider-controls span:hover {
    background: #43ea7a;
    transform: scale(1.08);
}
.split-slider .slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 0.7rem;
    z-index: 4;
}
.split-slider .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #b6f5d8;
    opacity: 0.6;
    transition: background 0.3s, opacity 0.3s, transform 0.3s;
    cursor: pointer;
}
.split-slider .dot.active {
    background: linear-gradient(90deg, #43ea7a 0%, #1eae60 100%);
    opacity: 1;
    transform: scale(1.18);
}
@media (max-width: 700px) {
    .split-slider .slide {
        flex-direction: column;
        align-items: center;
    }
    .split-slider .slide-content {
        padding: 1.5rem 1.2rem 0.5rem 1.2rem;
        align-items: center;
        text-align: center;
    }
    .split-slider .slide-image img {
        margin: 1rem 0 0 0;
        width: 90vw;
        max-width: 320px;
        height: 150px;
    }
}
/* Slider Styles */
.slider {
    position: relative;
    width: 100%;
    max-width: 650px;
    margin: 2.5rem auto 0 auto;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 32px rgba(46,54,80,0.13);
    background: #fff;
}
.slides {
    position: relative;
    width: 100%;
    height: 270px;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.slide.active {
    opacity: 1;
    z-index: 2;
}
.slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 2px 12px rgba(46,54,80,0.10);
}
.caption {
    margin-top: 1.1rem;
    font-size: 1.15rem;
    color: #2b5876;
    font-weight: 600;
    background: rgba(255,255,255,0.85);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 1px 6px rgba(46,54,80,0.07);
    display: inline-block;
}
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 3;
    pointer-events: none;
}
.slider-controls span {
    background: rgba(43,88,118,0.85);
    color: #fff;
    font-size: 2.1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 10px;
    box-shadow: 0 2px 8px rgba(46,54,80,0.13);
    user-select: none;
    pointer-events: auto;
    transition: background 0.2s, transform 0.2s;
}
.slider-controls span:hover {
    background: #4e4376;
    transform: scale(1.08);
}
/* Ripple effect for button */
.button {
    position: relative;
    overflow: hidden;
}
.ripple {
    position: absolute;
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    background: rgba(255,255,255,0.5);
    pointer-events: none;
    width: 100px;
    height: 100px;
    left: 50%;
    top: 50%;
    opacity: 0.7;
    z-index: 2;
}
@keyframes ripple {
    to {
        transform: scale(2.5);
        opacity: 0;
    }
}
/* General Styles */

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ef 100%);
    color: #222;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
    animation: fadeIn 1.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}


header {
    background: linear-gradient(90deg, #43ea7a 0%, #1eae60 100%);
    color: #fff;
    padding: 3rem 0 2rem 0;
    text-align: center;
    box-shadow: 0 4px 24px rgba(46, 54, 80, 0.08);
    position: relative;
    overflow: hidden;
}
header::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #b6f5d8 0%, transparent 70%);
    transform: translateX(-50%);
    z-index: 0;
    animation: pulse 4s infinite alternate;
}
@keyframes pulse {
    from { opacity: 0.7; }
    to { opacity: 1; }
}
header .container {
    position: relative;
    z-index: 1;
}


header h1 {
    margin: 0;
    font-size: 3.2rem;
    letter-spacing: 2px;
    font-weight: 700;
    animation: slideDown 1s cubic-bezier(.77,0,.18,1) 0.2s both;
}
@keyframes slideDown {
    from { opacity: 0; transform: translateY(-60px); }
    to { opacity: 1; transform: translateY(0); }
}


header p {
    margin: 1rem 0 0;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 1px;
    opacity: 0.85;
    animation: fadeIn 1.5s 0.5s both;
}


section {
    padding: 3rem 0 2.5rem 0;
    position: relative;
    z-index: 1;
}


.about, .services, .contact {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s, transform 0.8s;
}
.about.visible, .services.visible, .contact.visible {
    opacity: 1;
    transform: translateY(0);
}


.services ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}


.services li {
    margin: 0.5rem 0;
    background: #fff;
    color: #1eae60;
    padding: 1.2rem 2.2rem;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(30, 174, 96, 0.07);
    font-size: 1.15rem;
    font-weight: 500;
    min-width: 180px;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}
.services li:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px rgba(30, 174, 96, 0.13);
}


.contact .button {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.7rem 2.2rem;
    background: linear-gradient(90deg, #43ea7a 0%, #1eae60 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 12px rgba(30, 174, 96, 0.10);
    transition: background 0.3s, transform 0.2s;
}
.contact .button:hover {
    background: linear-gradient(90deg, #1eae60 0%, #43ea7a 100%);
    transform: scale(1.05);
}


footer {
    background: #1eae60cc;
    color: #fff;
    text-align: center;
    padding: 1.2rem 0;
    margin-top: 2rem;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: 0 -2px 16px rgba(30, 174, 96, 0.07);
}