/* Base Styles */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #fdfdfd;
    color: #333;
}

h1, h2, h3 {
    margin: 0 0 20px;
    color: #222;
}

section {
    padding: 50px 20px;
    text-align: center;
}

/* Hero Section */
.hero {
    background: #f6f6f6;
    color: #222;
    padding: 100px 20px;
    text-align: center;
}
.hero-title {
    font-size: 3rem;
    margin: 0 auto 10px;
    display: inline-block;
}
.hero-description {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #555;
}
.hero-button {
    background: #333;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    margin: 5px;
    border-radius: 30px;
    transition: transform 0.3s, background 0.3s;
}
.hero-button:hover {
    transform: scale(1.05);
    background: #555;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
}
.modal-content {
    background: white;
    margin: 10% auto;
    padding: 20px;
    width: 80%;
    position: relative;
    border-radius: 10px;
}
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Gallery */
.gallery-grid {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s;
}
.gallery-item img {
    width: 300px;
    display: block;
    transition: transform 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-caption {
    position: absolute;
    bottom: -100%;
    left: 0;
    background: rgba(0,0,0,0.7);
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px;
    transition: bottom 0.5s, opacity 0.5s;
    opacity: 0;
}
.gallery-item:hover .gallery-caption {
    bottom: 0;
    opacity: 1;
}

/* Features */
.features {
    background: #fafafa;
}
.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.feature-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.feature-box:hover {
    transform: translateY(-5px);
}
.feature-box i {
    font-size: 2rem;
    color: #555;
    margin-bottom: 10px;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.stat-item h3 {
    font-size: 2rem;
    color: #555;
}
.stat-item p {
    font-weight: bold;
}

/* Testimonials */
.testimonials img {
    border-radius: 50%;
    margin-bottom: 10px;
}
.testimonials blockquote {
    font-style: italic;
    margin: 20px auto;
    max-width: 400px;
    color: #555;
}

/* Packages */
.packages {
    background: #fafafa;
}
.package-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    margin: 10px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.package-box:hover {
    transform: translateY(-5px);
}

/* FAQ */
.faq-item {
    margin-bottom: 10px;
}
.faq-question {
    background: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}
.faq-question:hover {
    background: #555;
}
.faq-answer {
    display: none;
    padding: 10px;
    background: #f0f0f0;
    margin-top: 5px;
    border-radius: 5px;
}

/* Footer */
.footer {
    background: #f6f6f6;
    color: #222;
    padding: 50px 20px;
    text-align: center;
}
.footer a {
    color: #222;
    text-decoration: none;
}
.social-icons a {
    color: #222;
    margin: 0 10px;
    font-size: 1.5rem;
    transition: transform 0.3s;
}
.social-icons a:hover {
    transform: translateY(-3px);
}
/* Responsive */
@media (max-width: 768px) {
    .features-grid, .stats, .gallery-grid {
        flex-direction: column;
        align-items: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .gallery-item img {
        width: 90%;
    }
}
.about {
    background: #fafafa;
    padding: 50px 20px;
    text-align: center;
}

.about p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

.features-gallery-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.gallery-slider {
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.gallery-slider img {
    width: 100%;
    display: block;
    transition: opacity 0.5s ease-in-out;
}

.feature-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 15px;
    border: 1px solid #333;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}

.feature-link:hover {
    background: #333;
    color: white;
}


