#services {
    margin-top: 40px;
    background: rgba(0,0,0,0.1);
    padding: 50px 20px;
    border-radius: 15px;
    margin: 20px;
    color: #fff;
}
#services h2 {
    font-size: 3rem;
    color: blue;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
}
#services h2::after {
    content: '';
    width: 120px;
    height: 4px;
    display: block;
    margin: 15px auto;
    border-radius: 2px;
}
.service-card {
    background: rgba(0,0,0,0.1);
    backdrop-filter: blur(10px); 
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    width: 100%;
    max-width: 300px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.service-card i {
    font-size: 3rem;
    color: blue;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.service-card:hover i {
    color: #ff7e5f;
}
@media (max-width: 768px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services {
        grid-template-columns: 1fr;
    }
}
.services {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
    padding: 0 20px;
    justify-items: center;
}
.service-card {
    background: rgba(0,0,0,0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    width: 100%;
    max-width: 300px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.package h3 {
    margin-bottom: 10px;
}
footer {
    text-align: center;
    padding: 10px 0;
    background: #333;
    color: white;
}
form {
    display: flex;
    flex-direction: column;
}
form label {
    margin: 10px 0 5px;
}
form input,
form textarea {
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
form button {
    background:gray;
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}
form button:hover {
    background: rgb(109, 44, 20);
}
h2 {
    margin-bottom: 15px;
    color: #333;
}
img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px; 
    
}
.container{
    width: 0px;
    height: 00px;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: gallery 300s linear infinite;
}
.container span{
    position: absolute;
    width: 150px;
    height: 150px;
    transform-style: preserve-3d;
    transform: rotateY(calc(var(--i)*30deg)) translateZ(300px);
    -webkit-box-reflect: below 2.5px linear-gradient(transparent,transparent,rgba(3,3,3,0.2));
}
.container span img{
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 6px ridge #ccc;
}
@keyframes gallery{
    0%{
        transform: perspective(1000px)rotateY(0deg);
    }
    100%{
        transform: perspective(1000px)rotateY(3600deg);
    }
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center; 
    justify-content: center;
    transition: opacity 0.5s ease-in-out;
}

.item {
    display: none; 
    position: relative;
    width: 100%;
    height: 100%;
    flex-direction: column; 
    align-items: center; 
    justify-content: center;
}

.item.active {
    display: flex; 
    opacity: 1; 
}
.content {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    z-index: 10;
}

button {
    background-color:rgb(78, 183, 212);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
}

button:hover.stars {
    background-color:rgb(128, 53, 27);
}

.button {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%); 
    display: flex;
    justify-content: space-between;
    width: 100%; 
    padding: 0 20px; 
    z-index: 20;
}