body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}
.logo{
    width: 3vw;
}
/* Header */
.row{
    width: 100%;
    background-color: black;
    position: fixed;
    top: 0;
    height: 8vh;
    display:flex;
    justify-content:center;
    align-items: center;
    text-align: center;
    overflow-x: auto;
    z-index: 2;
}
.headers{
    color: white;
    cursor: pointer;
    font-size: 1.7vw;
    font-family: 'consolas';
    transition: 0.6s;
}
.headers:hover{
    color:black;
    font-size: 100%;
    font-style: bold;
    background-color: #fff;
    padding:10px ;
    border: 1px solid white;
    border-radius: 7px;
    box-shadow: 0px 0px 10px white,0px 0px 20px white;
    width: 50px;
    height: 50px;
    transition: 0.4s;
}

/* Packages Section */
.packages {
    text-align: center;
    padding: 40px 20px;
    margin-top: 50px;
}

.package-container {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
}


.package-card {
    background: white;
    width: 300px;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.package-card img {
    width: 100%;
    border-radius: 10px;
}

.package-card h3 {
    margin: 10px 0;
    color: #2c3e50;
}

.package-card p {
    color: #555;
}

.package-card  {
    display: inline-block;
    padding: 10px 15px;
    background:transparent;
    color: rgb(0, 0, 0);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.why-us {
    background: #ecf0f1;
    padding: 40px;
    text-align: center;
}

.features {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.feature{
    border: 1px solid black;
    color: black;
    background-color:transparent;
    padding: 10px;
    transition: 0.7s;
}
.feature:hover{
    border: 1px solid white;
    color: white;
    background-color:#222020;
}
/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}
.input{
    width: 100%;
    height:30px;
    color: white;
    background-color: transparent;
    border: 1px solid white;
    font-weight: 700;
}
.form{
    border:2px solid black;
    width:300px;
    height: 330px;
    margin-top: 9%;
    padding: 10px;
    display:inline-block;
    text-align: center;
}
.button{
    border:1px solid blue;
    border-radius:8px;
    width:140px;
    height: 40px;
    font-size: 20px;
    color: white;
    background-color: blue;
}
textarea{
    width: 100%;
}
.info-label{
    color: #fff;
    font-size: 18px;
}
.contact-form {
    padding: 50px;
    background: #333;
    color: black;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 5px;
}

.contact-form button {
    background: #555;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #777;
}