/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/*:root {
    --primary-color: #B783E3;
    --secondary-color: #6C63FF;

    --font-default: "Open Sans", system-ui, -apple-system;
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "Raleway", sans-serif;

    --dark-color: #33303E;
    --light-color: #F4F0FA;
    --success-color: #47C47B;
    --warning-color: #FFB347;
    --danger-color: #F36161;

    --body-color: #5A5A5A;
    --white-color: #FFFFFF;
    --text-color: #3C3C3C;
}*/

:root {
    --primary-color: #9E6EE1;
    --secondary-color: #6C63FF;
    --font-default: "Open Sans", system-ui, -apple-system;
    --font-primary: "Montserrat", sans-serif;
    --font-secondary: "Raleway", sans-serif;
    --dark-color: #33303E;
    --light-color: #F4F0FA;
    --success-color: #47C47B;
    --warning-color: #FFB347;
    --danger-color: #F36161;
    --body-color: #5A5A5A;
    --white-color: #FFFFFF;
    --text-color: #3C3C3C;
}

body {
    font-family: var(--font-default);
    color: var(--text-color);
    line-height: 1.7;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

    a:hover {
        color: var(--secondary-color);
        text-decoration: none;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    background: #ffffff;
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

    .header .logo {
        text-decoration: none;
    }

        .header .logo img {
            max-height: 80px;
            margin-right: 6px;
        }

        .header .logo h1 {
            font-size: 24px;
            margin: 0;
            font-weight: 600;
            color: var(--text-color);
        }

.navbar {
    padding: 0;
    display: flex;
    align-items: center;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        margin-right: 30px;
    }

    .navbar li {
        position: relative;
    }

    .navbar a {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        font-family: var(--font-primary);
        font-size: 16px;
        font-weight: 500;
        color: var(--text-color);
        white-space: nowrap;
        transition: 0.3s;
        text-decoration: none;
        margin-bottom: 0
    }

        .navbar a.btn {
            color: #fff
        }

    .navbar .nav-buttons {
        display: flex;
        align-items: center;
        margin-left: auto;
    }

        .navbar .nav-buttons .btn {
            padding: 8px 20px;
            font-size: 14px;
            font-weight: 500;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

            .navbar .nav-buttons .btn i {
                margin-right: 5px;
            }

.main-content {
    padding-top: 90px; /* Adjust this value based on your navbar height */
}

.mobile-nav-toggle {
    display: none;
    color: var(--text-color);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        padding: 60px 0;
        transition: 0.3s;
        z-index: 996;
        overflow-y: auto;
        flex-direction: column;
        justify-content: flex-start;
    }

        .navbar ul {
            flex-direction: column;
            margin-right: 0;
        }

        .navbar li {
            width: 100%;
        }

        .navbar a {
            padding: 10px 20px;
        }

        .navbar .nav-buttons {
            flex-direction: column;
            width: 100%;
            padding: 0 20px;
            margin-top: 15px;
        }

            .navbar .nav-buttons .btn {
                width: 100%;
                margin: 5px 0;
            }

    .mobile-nav-active .navbar {
        right: 0;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
    padding: 0 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #000;
}

    .hero .hero-slider {
        width: 100%;
        height: 100vh;
    }

    .hero .swiper-slide {
        position: relative;
        overflow: hidden;
    }

        .hero .swiper-slide::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1;
        }

        .hero .swiper-slide img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .hero .row {
        position: relative;
        z-index: 2;
        min-height: 100vh;
        align-items: center;
    }

    .hero h2 {
        font-size: 48px;
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
    }

    .hero p {
        color: #fff;
        font-weight: 400;
        margin-bottom: 30px;
        font-size: 18px;
    }

    .hero span {
        color: #fff;
    }

    .hero .btn-get-started {
        font-family: var(--font-primary);
        font-weight: 500;
        font-size: 15px;
        letter-spacing: 1px;
        display: inline-block;
        padding: 14px 40px;
        border-radius: 50px;
        transition: 0.3s;
        color: #fff;
        background: var(--primary-color);
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
        border: 2px solid transparent;
    }

        .hero .btn-get-started:hover {
            background: transparent;
            border-color: #fff;
        }

    .hero .swiper-button-prev,
    .hero .swiper-button-next {
        width: 50px;
        height: 50px;
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: #fff;
        transition: 0.3s;
    }

        .hero .swiper-button-prev:after,
        .hero .swiper-button-next:after {
            font-size: 24px;
        }

        .hero .swiper-button-prev:hover,
        .hero .swiper-button-next:hover {
            background-color: rgba(255, 255, 255, 0.3);
        }

    .hero .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: rgba(255, 255, 255, 0.3);
        opacity: 1;
    }

    .hero .swiper-pagination-bullet-active {
        background-color: #fff;
    }

@media (max-width: 991px) {
    .hero h2 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero .btn-get-started {
        padding: 12px 30px;
        font-size: 14px;
    }

    .hero .swiper-button-prev,
    .hero .swiper-button-next {
        display: none;
    }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats {
    padding: 40px 0;
}

    .stats .stats-item {
        padding: 30px;
        width: 100%;
        background: rgba(0, 131, 116, 0.1);
        border-radius: 4px;
    }

        .stats .stats-item span {
            font-size: 48px;
            display: block;
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 20px;
        }

        .stats .stats-item p {
            padding: 0;
            margin: 0;
            font-family: var(--font-primary);
            font-size: 16px;
            font-weight: 600;
        }

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    padding: 80px 0;
    background: #f6f6f6;
}

    .testimonials .section-header {
        text-align: center;
        padding-bottom: 40px;
    }

    .testimonials .testimonials-swiper {
        padding-bottom: 40px;
    }

    .testimonials .testimonial-item {
        text-align: center;
        padding: 30px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        margin: 20px;
        transition: all 0.3s ease;
    }

    .testimonials .swiper-pagination {
        margin-top: 20px;
        position: relative;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet {
            width: 12px;
            height: 12px;
            background-color: #fff;
            opacity: 1;
            border: 1px solid var(--primary-color);
        }

        .testimonials .swiper-pagination .swiper-pagination-bullet-active {
            background-color: var(--primary-color);
        }

    .testimonials .testimonial-item .stars {
        margin-bottom: 15px;
    }

        .testimonials .testimonial-item .stars i {
            color: #ffc107;
            margin: 0 2px;
            font-size: 18px;
        }

    .testimonials .testimonial-item .testimonial-text {
        font-style: italic;
        margin: 0 0 20px 0;
        font-size: 16px;
        line-height: 1.6;
        color: #666;
    }

    .testimonials .testimonial-item .profile {
        margin-top: 30px;
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .testimonials .testimonial-item .testimonial-img {
        width: 80px;
        border-radius: 50%;
        margin: 0 auto 10px auto;
    }

    .testimonials .testimonial-item h3 {
        font-size: 18px;
        font-weight: bold;
        margin: 10px 0 5px 0;
        color: #111;
    }

    .testimonials .testimonial-item h4 {
        font-size: 14px;
        color: #999;
        margin: 0;
        font-weight: normal;
    }

/*--------------------------------------------------------------
# Recent Posts Section
--------------------------------------------------------------*/
.recent-posts {
    padding: 80px 0;
    background-color: #fff;
}

    .recent-posts .section-header {
        margin-bottom: 50px;
    }

    .recent-posts .post-card {
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }

        .recent-posts .post-card:hover {
            transform: translateY(-5px);
        }

    .recent-posts .post-img {
        position: relative;
        overflow: hidden;
    }

        .recent-posts .post-img img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

    .recent-posts .post-category {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--primary-color);
        color: #fff;
        padding: 5px 15px;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
    }

    .recent-posts .post-content {
        padding: 25px;
    }

    .recent-posts .title {
        margin: 0 0 20px 0;
    }

        .recent-posts .title a {
            color: #2a2a2a;
            font-size: 20px;
            font-weight: 600;
            line-height: 1.4;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .recent-posts .title a:hover {
                color: var(--primary-color);
            }

    .recent-posts .post-meta {
        border-top: 1px solid #eee;
        padding-top: 20px;
    }

    .recent-posts .post-author-img {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        margin-right: 15px;
    }

    .recent-posts .author-info {
        flex: 1;
    }

    .recent-posts .post-author {
        color: #2a2a2a;
        font-weight: 600;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .recent-posts .post-date {
        color: #777;
        font-size: 14px;
    }

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
    background-color: #654193;
    /*background-image: url('../images/bg-footer.png');*/
    color: rgba(255, 255, 255, 0.7);
    margin-top: 50px;
    padding: 50px 0;
}

    .footer .footer-info .logo {
        line-height: 0;
        margin-bottom: 25px;
    }

        .footer .footer-info .logo span {
            font-size: 30px;
            font-weight: 700;
            letter-spacing: 1px;
            color: #fff;
            font-family: var(--font-primary);
        }

    .footer .footer-info p {
        font-size: 14px;
        font-family: var(--font-primary);
    }

    .footer .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 16px;
        color: rgba(255, 255, 255, 0.7);
        margin-right: 10px;
        transition: 0.3s;
    }

        .footer .social-links a:hover {
            color: #fff;
            border-color: #fff;
        }

    .footer h4 {
        font-size: 16px;
        font-weight: bold;
        position: relative;
        padding-bottom: 12px;
        color: #fff;
    }

    .footer .footer-links {
        margin-bottom: 30px;
    }

        .footer .footer-links ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer .footer-links ul i {
                padding-right: 2px;
                color: rgba(255, 255, 255, 0.7);
                font-size: 12px;
                line-height: 0;
            }

            .footer .footer-links ul li {
                padding: 10px 0;
                display: flex;
                align-items: center;
            }

                .footer .footer-links ul li:first-child {
                    padding-top: 0;
                }

            .footer .footer-links ul a {
                color: rgba(255, 255, 255, 0.7);
                transition: 0.3s;
                display: inline-block;
                line-height: 1;
            }

                .footer .footer-links ul a:hover {
                    color: #fff;
                }

    .footer .footer-contact p {
        line-height: 26px;
    }

    .footer .copyright {
        text-align: center;
    }

        .footer .copyright p {
            margin-bottom: 0;
        }

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .navbar {
            display: flex;
            position: fixed;
            top: 0;
            right: 0;
            left: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.9);
            transition: 0.3s;
            z-index: 999;
            padding: 70px 20px;
        }

            .mobile-nav-active .navbar ul {
                display: block;
                position: absolute;
                top: 55px;
                right: 15px;
                bottom: 45px;
                left: 15px;
                padding: 10px 0;
                overflow-y: auto;
                transition: 0.3s;
            }

                .mobile-nav-active .navbar ul li {
                    padding: 0;
                }

                    .mobile-nav-active .navbar ul li a {
                        padding: 10px 20px;
                        font-size: 15px;
                        color: rgba(255, 255, 255, 0.7);
                    }

                        .mobile-nav-active .navbar ul li a:hover {
                            color: #fff;
                        }

        .mobile-nav-active .mobile-nav-toggle {
            position: fixed;
            right: 15px;
            top: 15px;
            z-index: 9999;
            /*color: #fff;*/
        }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 36px;
    }

    .hero .btn-get-started,
    .hero .btn-watch-video {
        font-size: 14px;
    }
}

/* Header Styles */
.header-nav {
    padding: 20px 0;
    background-color: var(--white-color);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand img.logo {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        color: var(--primary-color);
    }

.nav-buttons .btn {
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-primary:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
    }

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

    .btn-outline-primary:hover {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

/* Features Section */
.features-section {
    padding: 80px 0;
}

.feature-card {
    padding: 30px;
    border-radius: 10px;
    background-color: var(--white-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-card i {
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
        color: var(--dark-color);
        margin-bottom: 1rem;
    }

/* Common Components */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

    .section-title h2 {
        font-size: 2.5rem;
        color: var(--dark-color);
        margin-bottom: 1rem;
    }

    .section-title p {
        font-size: 1.1rem;
        color: var(--body-color);
        max-width: 600px;
        margin: 0 auto;
    }

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq {
    padding: 80px 0;
}

    .faq .section-title {
        margin-bottom: 40px;
    }

        .faq .section-title h2 {
            font-size: 36px;
            font-weight: 700;
            color: #2a2a2a;
            margin-bottom: 20px;
        }

        .faq .section-title p {
            color: #666;
            font-size: 16px;
            line-height: 1.7;
        }

    .faq .accordion-item {
        border: none;
        margin-bottom: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border-radius: 8px;
        overflow: hidden;
    }

    .faq .accordion-button {
        padding: 25px 30px;
        background: #fff;
        border: 0;
        font-size: 18px;
        font-weight: 500;
        color: #2a2a2a;
        text-align: left;
        position: relative;
    }

        .faq .accordion-button:not(.collapsed) {
            color: var(--primary-color);
            background-color: #fff;
            box-shadow: none;
        }

        .faq .accordion-button::after {
            content: "\f286";
            font-family: "bootstrap-icons";
            position: absolute;
            right: 25px;
            color: var(--primary-color);
            font-size: 24px;
            font-weight: normal;
            transition: transform 0.2s ease;
            background-image: none;
        }

        .faq .accordion-button.collapsed::after {
            content: "\f282";
            transform: rotate(0deg);
        }

        .faq .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }

    .faq .faq-number {
        color: var(--primary-color);
        font-weight: 600;
        margin-right: 10px;
    }

    .faq .faq-question {
        color: var(--primary-color);
        flex: 1;
        padding-right: 30px;
    }

    .faq .accordion-body {
        padding: 0 30px 25px;
        color: #666;
        font-size: 16px;
        line-height: 1.7;
    }

    .faq .accordion-button:focus {
        box-shadow: none;
        border: none;
    }

@media (max-width: 991px) {
    .faq .section-title {
        margin-bottom: 30px;
    }

    .faq .accordion-button {
        padding: 20px;
        font-size: 16px;
    }

    .faq .accordion-body {
        padding: 0 20px 20px;
    }
}

/*--------------------------------------------------------------
# Auth Pages & Contact Form
--------------------------------------------------------------*/
.auth-section, .contact-section {
    padding: 120px 0 60px;
    background-color: var(--light-color);
}

    .auth-section .card, .contact-section .card {
        border: none;
        border-radius: 15px;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    }

    .auth-section .card-body, .contact-section .card-body {
        padding: 40px;
    }

    .auth-section h2, .contact-section h2 {
        color: var(--dark-color);
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
    }

        .auth-section h2::after, .contact-section h2::after {
            content: '';
            position: absolute;
            display: block;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 48px;
    padding: 10px 20px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: all 0.3s ease;
}

    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.2rem rgba(58, 164, 156, 0.1);
    }

textarea.form-control {
    height: auto;
    min-height: 120px;
}

.btn-auth, .btn-contact {
    padding: 12px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

    .btn-auth:hover, .btn-contact:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        transform: translateY(-2px);
    }

.auth-links {
    margin-top: 20px;
}

    .auth-links a {
        color: var(--primary-color);
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .auth-links a:hover {
            color: var(--secondary-color);
        }

/* Contact Info Cards */
.contact-info-card {
    padding: 30px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

    .contact-info-card:hover {
        transform: translateY(-5px);
    }

    .contact-info-card i {
        width: 56px;
        height: 56px;
        font-size: 24px;
        background: var(--primary-color);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }

    .contact-info-card h3 {
        font-size: 20px;
        color: var(--dark-color);
        font-weight: 700;
        margin-bottom: 10px;
    }

    .contact-info-card p {
        margin: 0;
        color: var(--body-color);
    }

/* Captcha Styles */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .captcha-container img {
        height: 48px;
        border-radius: 8px;
    }

    .captcha-container button {
        height: 48px;
        width: 48px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f9fa;
        border: 1px solid #ddd;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

        .captcha-container button:hover {
            background: #e9ecef;
        }

/* Categories Section */
.categories {
    padding: 60px 0;
    background-color: #f6f6f6;
}

.category-card {
    padding: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

    .category-card .category-img {
        position: relative;
        overflow: hidden;
    }

        .category-card .category-img img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: 0.3s;
        }

    .category-card:hover .category-img img {
        transform: scale(1.1);
    }

    .category-card h3 {
        font-size: 22px;
        font-weight: 600;
        padding: 20px 20px 10px;
        margin: 0;
        color: var(--primary-color);
    }

    .category-card p {
        font-size: 15px;
        color: var(--text-color);
        margin: 0;
        padding: 0 20px 20px;
    }

    .category-card .read-more {
        display: inline-flex;
        align-items: center;
        color: var(--primary-color);
        font-weight: 500;
        text-decoration: none;
        padding: 0 20px 20px;
    }

        .category-card .read-more i {
            margin-left: 5px;
            font-size: 18px;
            transition: 0.3s;
        }

    .category-card:hover {
        transform: translateY(-5px);
    }

    .category-card .read-more:hover i {
        margin-left: 10px;
    }

.test-packages {
    padding: 60px 0;
    background: #f6f7f6;
}

    .test-packages .section-header {
        margin-bottom: 40px;
    }

        .test-packages .section-header h2 {
            font-size: 36px;
            font-weight: 600;
            color: #333;
            margin-bottom: 20px;
        }

.package-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .package-card:hover {
        transform: translateY(-5px);
    }

    .package-card .package-img {
        position: relative;
        margin: -20px -20px 15px -20px;
        overflow: hidden;
        border-radius: 8px 8px 0 0;
    }

        .package-card .package-img img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

    .package-card h3 {
        font-size: 22px;
        font-weight: 600;
        margin: 10px 0;
        color: #333;
    }

    .package-card p {
        color: #666;
        margin: 0 0 20px 0;
        font-size: 15px;
        flex-grow: 1;
    }

    .package-card .package-info {
        margin-bottom: 15px;
    }

    .package-card .package-category {
        display: inline-flex;
        align-items: center;
        padding: 6px 12px;
        background: #f8f9fa;
        border-radius: 4px;
        color: #555;
        font-size: 14px;
    }

        .package-card .package-category i {
            margin-right: 5px;
            color: #666;
        }

    .package-card .read-more {
        display: inline-flex;
        align-items: center;
        color: #4CAF50;
        font-weight: 500;
        text-decoration: none;
        transition: 0.3s;
    }

        .package-card .read-more span {
            margin-right: 5px;
        }

        .package-card .read-more:hover {
            color: #388E3C;
        }

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

    [data-aos].aos-animate {
        opacity: 1;
    }

[data-aos="fade-up"] {
    transform: translateY(20px);
}

    [data-aos="fade-up"].aos-animate {
        transform: translateY(0);
    }
