body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    color: #333;
}

header {
    background: #1e88e5;
    color: #fff;

    width: 100%;
    top: 0;
    z-index: 1000;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 10px 50px;
    background: #1565c0;
    font-size: 14px;
}

.top-social a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
}

.logo img {
    height: 50px;
}

.nav-wavy {
    position: relative;
}

#nav-toggle {
    display: none;
}

.burger {
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    display: none;
}

.nav-items {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;

}

.nav-items li {
    margin-left: 30px;
}

.nav-items li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    padding: 5px 15px;
    background: #42a5f5;
    border-radius: 20px;
    transition: background 0.3s, transform 0.3s;
}

.nav-items li a:hover {
    background: #ffca28;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }

    .nav-items {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #1e88e5;
        padding: 10px;
        border-radius: 5px;
        transform: none;
    }

    .nav-items.active {
        display: block;
    }

    .nav-items li {
        margin: 10px 0;
    }

    #nav-toggle:checked~.nav-items {
        display: block;
    }
}

.hyro {
    position: relative;
    min-height: 600px;
    overflow: hidden;
    margin-top: 0px;
}

.slider {
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hyro-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.hyro-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn {
    padding: 10px 20px;
    margin: auto;
    display: block;
    width: fit-content;
    border: none;
    text-decoration: none;
    cursor: pointer;
    border-radius: 25px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-yellow {
    background: #ffca28;
    color: #ffffff;
    font-weight: 700;
}

.btn-blue {
    background: #1e88e5;
    color: #fff;
}

.btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.hyro-features {
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.feature-item {

    padding: 5px;
    border-radius: 0px;
    text-align: center;
    max-width: 300px;
    flex: 1;
}

.feature-item img {
    height: 50px;
}

.about1 {
    padding: 50px 20px;
    background: #bbdefb;
}

.about1-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.about1-block {
    /* max-width: 300px; */
    text-align: center;
    flex: 1;
    position: relative;
}

.about1-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s;
}

.about1-block img:hover {
    transform: scale(1.05);
}

.about1-block h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #1e88e5;
}

.service1 {
    padding: 50px 20px;
    background: #90caf9;
}

.service1.sdf .service1__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    width: 50%;
}

.service1__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 50%;
}

.service1-content {
    padding: 0 15px 20px;
}

.service1-content span {
    font-weight: 700;
    font-size: 36px;
    color: #ffca28;
}

.service1 h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    color: #1e88e5;
}

.service1-slider {
    display: flex;

    gap: 20px;
    padding: 20px 0;
}

.service1-item.van {
    width: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service1-item {
    min-width: 200px;
    text-align: center;

    padding: 0px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service1-item.van .service1-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

.service1-item.van .service1-content h3 {
    font-size: 42px;
}

.service1-item.van .service1-content p {
    font-weight: 700;
    font-size: 20px;
}

.service1-item.van img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.service1-item:hover {
    transform: translateY(-10px);
}

.service1-item img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.appointment {
    padding: 50px 20px;
    background: #ffca28;
    text-align: center;
}

.appointment ul {
    list-style: none;
}

.appointment ul li {
    text-align: start;
    display: flex;
    align-items: center;
    gap: 20px;
}

.appointment__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
}

.allin__container {
    display: flex;
    gap: 50px;
}

.appointment__wrapper img {
    width: 50%;
    flex: 1;
}

.appointment__content {
    width: 50%;
    flex: 1;
}

.appointment h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #333;
}

.appointment form {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.appointment input {
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.why-us {
    padding: 0px 0px 0 20px;
    background: #bbdefb;
}

.why-us-container {
    display: flex;
    gap: 20px;
    justify-content: center;

}

.why-us-text {
    flex: 1;
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50%;
}

.why-us-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #1e88e5;
}

.why-us-text ul {
    list-style: none;
    padding: 0;
}

.why-us-text ul li {
    margin: 10px 0;
}

.why-us-image {
    width: 50%;
    border-radius: 0px;
    flex: 1;
}

.why-us-image img {
    width: 100%;
    border-radius: 0px;
    flex: 1;
}

.team1 {
    padding: 50px 20px;

    flex: 1;
}

.team1 h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    color: #1e88e5;
}

.team1-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(550px, 1fr));
    gap: 20px;
}

.team1-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team1-item {
    text-align: center;
    background: #bbd6ed;
    padding: 20px;
    display: flex;
    gap: 20px;
    align-items: center;
    border-radius: 10px;
}

.team1-item p {
    text-align: start;
    margin: 0;
}

.team1-item h3 {
    text-align: start;
    margin: 0;
    color: #1e88e5;
    font-weight: 700;
}

.team1-item img {
    border-radius: 100%;
    min-width: 150px;
    max-width: 150px;
    min-height: 150px;
    object-fit: cover;
    max-height: 150px;
    border: 3px solid #1e88e5;
    ;
}

.testimonials {
    padding: 50px 20px;
    background: #bbdefb;
    flex: 1;
}

.testimonials-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonials h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    color: #1e88e5;
}

.testimonial-item {
    max-width: 600px;
    margin: 0 auto;
    background: #bbd6ed;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.testimonial-wrap {
    display: flex;
    gap: 20px;
    align-items: center;
}

.testimonial-wrap img {
    border-radius: 100%;
    min-width: 60px;
    max-width: 60px;
    min-height: 60px;
    object-fit: cover;
    max-height: 60px;
}

.contaccs {
    display: flex;
}

.contacct {
    padding: 50px 20px;
    background: #90caf9;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
}

.contacct {
    padding: 50px 20px;
    background: #90caf9;
    text-align: center;
}

.contacct h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    color: #1e88e5;
}

.contacct p {
    font-size: 18px;
    color: #333;
}

.contacct-info p {
    font-size: 16px;
    color: #333;
}

.accordion {
    padding: 50px 20px;
    background: #42a5f5;
}

.accordion h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    color: #fff;
}

.accordion-item {
    margin: 20px 0;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-item input {
    display: none;
}

.accordion-item label {
    display: block;
    padding: 15px;
    font-size: 18px;
    cursor: pointer;
    background: #1e88e5;
    color: #fff;
}

.accordion-item .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    padding: 0 15px;
}

.accordion-item input:checked~.content {
    max-height: 200px;
}

.eveen {
    padding: 50px 20px;
    flex: 1;
    background: #2196f3;
}

.eveen h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    text-align: center;
    color: #fff;
}

.event-grid {
    display: grid;
    max-height: 500px;
    overflow: auto;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.event-item {
    background: #fff;
    padding: 12px;
    border-radius: 10px;
    text-align: center;
}

.event-item h3 {
    font-size: 24px;
    color: #1e88e5;
}

footer {
    background: #1565c0;
    padding: 50px 20px;
    color: #fff;
}

.foooter-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.foooter-logo img {
    height: 50px;
}

.foooter-info p {
    margin: 5px 0;
}

.foooter-links ul {
    list-style: none;
    padding: 0;
}

.foooter-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.foooter-links ul li a:hover {
    color: #ffca28;
}

.contaccs.fsd {
    width: 100%;
}

.contaccs.fsd .contacct {
    max-width: 1000px;
    margin: 0 auto;
    background: transparent;
}

.foooter-newsletter input {
    padding: 10px;
    margin-right: 10px;
    border: none;
    border-radius: 5px;
}

.copyright {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
}

.cvb {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #222;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 16px;
}

.cvb button {
    background-color: #00c853;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 5px;
    cursor: pointer;
}

.cvb button:hover {
    background-color: #00b342;
}

html,
body {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.hyro-features {
    position: relative;
    bottom: 20px;
    display: flex;
    margin-top: 50px;
    justify-content: center;
    gap: 20px;
    width: 100%;
}
@media screen and (max-width:768px) {
    .top-bar {
        display: flex;
        justify-content: space-between;
        padding: 10px 10px;
        background: #1565c0;
        font-size: 14px;
    }

    .top-social {
        display: flex;
    }

    #nav-toggle:checked~.nav-items {
        display: block;
        /* width: 100%; */
        padding: 10px 40px;
        height: 100vh;
        right: -10px;
        z-index: 99999;
    }

    .main-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 5px 10px;
    }

    .nav-items li {
        margin: 20px 0;
        display: block;
    }

    .hyro-content {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 98%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: #fff;
    }

    .service1-slider {
        display: flex;
        gap: 20px;
        padding: 20px 0;
        flex-direction: column;
    }

    .service1-item.van {
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service1__items {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
        width: 100%;
    }

    .appointment__wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        gap: 20px;
        flex-direction: column;
    }

    .appointment__wrapper img {
        width: 100%;
        flex: 1;
    }

    .appointment__content {
        width: 100%;
        flex: 1;
    }

    .why-us-container {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-direction: column;
    }

    .why-us-text {
        flex: 1;
        max-width: 500px;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .about1-block {
        /* max-width: 300px; */
        text-align: center;
        flex: 100%;
        position: relative;
    }
    .why-us-image {
        width: 100%;
        border-radius: 0px;
        flex: 1;
    }

    .allin__container {
        display: flex;
        gap: 50px;
        flex-direction: column;
    }

    .team1-item {
        text-align: center;
        background: #bbd6ed;
        padding: 20px;
        display: flex;
        max-width: 320px;
        margin: 0 auto;
        gap: 20px;
        align-items: center;
        border-radius: 10px;
        flex-direction: column;
    }

    .team1-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 20px;
    }

    .contaccs {
        display: flex;
        flex-direction: column;
    }

    .why-us {
        padding: 20px;
        background: #bbdefb;
    }

    .about1-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        flex-direction: column;
    }
    .hyro-features {
        position: relative;
        bottom: 20px;
        display: flex
    ;
        margin-top: 50px;
        justify-content: center;
        gap: 0px;
        width: 100%;
    }
    .hyro-content h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 32px;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    .service1.sdf .service1__items {
        display: grid
    ;
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
        width: 50%;
    }
}

.hyro-btns {
    display: flex;
    gap: 10px;
}

