* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
  }
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f7f7f7;
    color: #333;
    line-height: 1.6;
}

.hero-section {
    background-image: url(../images/banner3.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-section h1 {
    font-size:3.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    /* max-width: 700px; */
    text-align: center;
}
.cta-btn {
    background-color: #069954;
    color: white;
    font-size: 1.1rem;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #023f23;
}

section {
    padding: 60px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background-color: #f4f4f4;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.card-text {
    font-size: 1rem;
    color: #555;
}

.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: #069954;
    cursor: pointer;
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: white !important;
}


.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
    cursor: pointer;
}
.modal-content .modal-body .s-btn{
    background-color: #023f23;
    color: white;
    font-size: 20px;
}
.modal-content .modal-body .s-btn:hover{
    background-color: #069954;
    color: black;
}
.booking{
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(assests/images/booking_bg1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
}
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;

}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
    text-decoration: none;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.footer .img{
    cursor: pointer;
}





@media screen and (max-width: 768px) {
    .hero-section h1 {
        font-size: 3rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .card {
        flex-direction: column;
        align-items: center;
    }
}
@media screen and (max-width:992px){
    .navbar .btnn{
       width: 100%;
    }
    .navbar .items{
        text-align: center;
    }
    #contact-info .gallery{
        align-items: center;
    }
}