.body {
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
}

.xplore-hero {
    background: url('/assets/Xplore/Gemini_Generated_Image_6redem6redem6red 3.svg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 186px;
    padding: 90px 0px;
}

.xplore-overlay {
    position: absolute;
    inset: 0;
    background: rgba(236, 250, 255, 0.8);
    z-index: 1;
}

.xplore-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1240px;
    padding: 20px;
}



.xplore-h1 {
    font-size: 46px;
    margin-bottom: 20px;
    font-weight: 700;
}

.xplore-p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.4;
    font-weight: 800;
}

/* Button styling will use btn-secondary from navbar.css */

.btn-secondary img {
    width: 18px;
    height: 18px;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
}

.btn-secondary:hover img {
    transform: rotate(0deg);
}

/* Responsive arrow sizing */


/* Responsive Design */
@@media (max-width: 1200px) {
    .xplore-h1 {
        font-size: 42px;
    }

    .xplore-p {
        font-size: 20px;
    }
}

@@media (max-width: 992px) {
    .xplore-h1 {
        font-size: 38px;
    }

    .xplore-p {
        font-size: 20px;
    }

    .xplore-hero-content {
        padding: 15px;
    }
}

@@media (max-width: 768px) {
    .xplore-h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .xplore-hero {
        margin-top: 155px;
    }

    .xplore-p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .btn-secondary {
        padding: 14px 40px;
        font-size: 1rem;
    }

    .xplore-hero-content {
        max-width: 600px;
        padding: 10px;
    }
}

@@media (max-width: 576px) {
    .xplore-h1 {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .xplore-p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .btn-secondary {
        padding: 12px 35px;
        font-size: 0.95rem;
    }

    .xplore-hero-content {
        max-width: 550px;
        padding: 8px 20px;
    }
}

@@media (max-width: 480px) {
    .xplore-h1 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .xplore-hero {
        margin-top: 145px;
    }

    .xplore-p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .btn-secondary {
        padding: 10px 30px;
        font-size: 0.9rem;
    }

    .xplore-hero-content {
        max-width: 500px;
        padding: 5px 20px;
    }
}

@@media (max-width: 400px) {
    .xplore-h1 {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .xplore-hero {
        margin-top: 135px;
    }

    .xplore-p {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .btn-secondary {
        padding: 8px 25px;
        font-size: 0.85rem;
    }

    .xplore-hero-content {
        max-width: 450px;
        padding: 3px 20px;
    }
}

.xplore-features-section {
    padding: 60px 0;
    /* background-color: #f8fafc; */
}

.xplore-features-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C48B2;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.xplore-features {
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0 30px;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.xplore-feature {
    flex: 1;
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(28, 72, 178, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .xplore-feature:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

    .xplore-feature h4 {
        margin: 0 0 8px;
        color: #1C48B2;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .xplore-feature p {
        margin: 0;
        color: #666;
        font-size: 1rem;
        line-height: 1.6;
    }

/* Responsive features */
@@media (max-width: 1200px) {
    .xplore-features-heading {
        font-size: 2.2rem;
    }
}

@@media (max-width: 992px) {
    .xplore-features-heading {
        font-size: 2rem;
    }
}

@@media (max-width: 768px) {
    .xplore-features-section {
        padding: 40px 0;
    }

    .xplore-features-heading {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }

    .xplore-features {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .xplore-feature {
        padding: 20px;
    }

        .xplore-feature h4 {
            font-size: 1.1rem;
        }

        .xplore-feature p {
            font-size: 0.95rem;
        }
}

@@media (max-width: 480px) {
    .xplore-features-section {
        padding: 30px 0;
    }

    .xplore-features-heading {
        font-size: 1.5rem;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .xplore-features {
        padding: 0 10px;
    }

    .xplore-feature {
        padding: 16px;
    }

        .xplore-feature h4 {
            font-size: 1rem;
        }

        .xplore-feature p {
            font-size: 0.9rem;
        }
}

/* Steps Section Styling */
.xplore-steps-section {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%); */
    background: #ECFAFF;
}

.xplore-steps-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C48B2;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.xplore-steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 20px;
}

.xplore-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 250px;
}

.xplore-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1C48B2, #CC338D);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(28, 72, 178, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.xplore-step:hover .xplore-step-number {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(28, 72, 178, 0.4);
}

.xplore-step-content {
    background: white;
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(28, 72, 178, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.xplore-step:hover .xplore-step-content {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.xplore-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1C48B2;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.xplore-step-description {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.xplore-step-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #1C48B2, #CC338D);
    margin: 0 10px;
    border-radius: 1px;
    position: relative;
}

    .xplore-step-connector::after {
        content: '';
        position: absolute;
        right: -5px;
        top: -3px;
        width: 0;
        height: 0;
        border-left: 8px solid #CC338D;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
    }

/* Responsive Steps */
@@media (max-width: 1200px) {
    .xplore-steps-heading {
        font-size: 2.2rem;
    }

    .xplore-step-number {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

@@media (max-width: 992px) {
    .xplore-steps-heading {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .xplore-steps-container {
        gap: 15px;
    }

    .xplore-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .xplore-step-content {
        padding: 20px 16px;
    }

    .xplore-step-title {
        font-size: 1rem;
    }

    .xplore-step-description {
        font-size: 0.85rem;
    }
}

@@media (max-width: 768px) {
    .xplore-steps-section {
        padding: 60px 0;
    }

    .xplore-steps-heading {
        font-size: 1.8rem;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    .xplore-steps-container {
        flex-direction: column;
        padding: 0 110px;
    }

    .xplore-step {
        max-width: 100%;
        width: 100%;
    }

    .xplore-step-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }

        .xplore-step-connector::after {
            right: -3px;
            top: 25px;
            border-left: 4px solid transparent;
            border-right: 4px solid transparent;
            border-top: 8px solid #CC338D;
            border-bottom: none;
        }

    .xplore-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .xplore-step-content {
        padding: 24px 20px;
    }

    .xplore-step-title {
        font-size: 1.1rem;
    }

    .xplore-step-description {
        font-size: 0.9rem;
    }
}

@@media (max-width: 480px) {
    .xplore-steps-section {
        padding: 40px 0;
    }

    .xplore-steps-heading {
        font-size: 1.5rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .xplore-steps-container {
        /* gap: 25px; */
        padding: 0 50px;
    }

    .xplore-step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .xplore-step-content {
        padding: 20px 16px;
    }

    .xplore-step-title {
        font-size: 1rem;
    }

    .xplore-step-description {
        font-size: 0.85rem;
    }
}

/* Testimonials Section Styling */
.xplore-testimonials-section {
    padding: 80px 0;
}

.xplore-testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.xplore-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.xplore-testimonials-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1C48B2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.xplore-testimonials-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C48B2;
    margin: 0 0 15px 0;
}

.xplore-testimonials-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.xplore-testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.xplore-testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    /* width: 133.333%; 4 slides * 33.333% to show 3 at a time */
}

.xplore-testimonial-slide {
    width: 33.333%; /* Show 3 slides at a time */
    flex: 0 0 33.333%;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Override for 1024px to 769px range */
@@media (max-width: 1024px) and (min-width: 769px) {
    .xplore-testimonial-slide {
        width: 50%; /* Show 2 slides at a time */
        flex: 0 0 50%;
    }

    .xplore-testimonials-track {
        width: 100%; /* 4 slides * 50% */
    }
}

.xplore-testimonial-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    position: relative;
    text-align: center;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .xplore-testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

.xplore-quote-icon {
    position: absolute;
    font-size: 3rem;
    color: #1C48B2;
    font-weight: 700;
    line-height: 1;
}

.xplore-quote-open {
    top: 10px;
    left: 15px;
}

.xplore-quote-close {
    bottom: 10px;
    right: 15px;
}

.xplore-testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin: 0 0 0px 0;
    padding: 0 30px;
}

.xplore-testimonial-author {
    text-align: center;
    margin-top: 20px;
    padding: 0 10px;
}

.xplore-author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 5px 0;
}

.xplore-author-title {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.xplore-testimonials-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.xplore-pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #1C48B2;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .xplore-pagination-dot.active {
        background: #1C48B2;
    }

    .xplore-pagination-dot:hover {
        background: #1C48B2;
        opacity: 0.7;
    }

/* Responsive Testimonials */
@@media (max-width: 1200px) {
    .xplore-testimonials-title {
        font-size: 2.2rem;
    }
}

@@media (max-width: 992px) {
    .xplore-testimonials-title {
        font-size: 2rem;
    }

    .xplore-testimonial-slide {
        width: 33.333%; /* Still show 3 slides */
        flex: 0 0 33.333%;
    }

    .xplore-testimonials-track {
        width: 133.333%; /* 4 slides * 33.333% */
    }

    .xplore-testimonial-card {
        padding: 25px 20px;
    }

    .xplore-testimonial-text {
        font-size: 0.95rem;
        padding: 0 25px;
    }

    .xplore-quote-icon {
        font-size: 2.5rem;
    }
}

@@media (max-width: 1024px) and (min-width: 769px) {
    .xplore-testimonials-section {
        padding: 60px 0;
    }

    .xplore-testimonials-container {
        padding: 0 20px;
    }

    .xplore-testimonials-header {
        margin-bottom: 50px;
    }

    .xplore-testimonials-title {
        font-size: 2rem;
    }

    .xplore-testimonials-subtitle {
        font-size: 1rem;
    }

    .xplore-testimonial-slide {
        width: 50%; /* Show 2 slides */
        flex: 0 0 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 10px; /* Gap between slides */
    }

    .xplore-testimonials-track {
        width: 100%; /* 4 slides * 50% */
    }

    .xplore-testimonial-card {
        padding: 30px 25px;
        width: 100%;
    }

    .xplore-testimonial-text {
        font-size: 1rem;
        padding: 0 25px;
    }

    .xplore-quote-icon {
        font-size: 3rem;
    }

    .xplore-testimonial-author {
        margin-top: 20px;
        padding: 0 10px;
    }

    .xplore-author-name {
        font-size: 1.1rem;
    }

    .xplore-author-title {
        font-size: 0.9rem;
    }
}

@@media (max-width: 768px) {
    .xplore-testimonials-section {
        padding: 60px 0;
    }

    .xplore-testimonials-container {
        padding: 0 15px;
    }

    .xplore-testimonials-header {
        margin-bottom: 40px;
    }

    .xplore-testimonials-title {
        font-size: 1.8rem;
    }

    .xplore-testimonials-subtitle {
        font-size: 1rem;
    }

    .xplore-testimonial-slide {
        width: 50%; /* Show 2 slides on tablet */
        flex: 0 0 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .xplore-testimonials-track {
        width: 200%; /* 4 slides * 50% */
    }

    .xplore-testimonial-card {
        padding: 25px 20px;
    }

    .xplore-testimonial-text {
        font-size: 0.95rem;
        padding: 0 20px;
    }

    .xplore-quote-icon {
        font-size: 2.5rem;
    }
}

@@media (max-width: 480px) {
    .xplore-testimonials-section {
        padding: 40px 0;
    }

    .xplore-testimonials-container {
        padding: 0 10px;
    }

    .xplore-testimonials-title {
        font-size: 1.5rem;
    }

    .xplore-testimonials-subtitle {
        font-size: 0.9rem;
    }

    .xplore-testimonial-slide {
        width: 50%; /* Show 2 slides like 1024px */
        flex: 0 0 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 10px 20px; /* Smaller padding for small screens */
    }

    .xplore-testimonials-track {
        width: 200%; /* 4 slides * 50% */
    }

    .xplore-testimonial-card {
        padding: 15px 10px; /* Smaller padding for small screens */
        border-radius: 8px;
    }

    .xplore-testimonial-text {
        font-size: 0.8rem; /* Smaller text for small screens */
        padding: 0 10px; /* Less padding */
        line-height: 1.4;
    }

    .xplore-quote-icon {
        font-size: 1.5rem; /* Smaller quote icons */
    }

    .xplore-quote-open {
        top: 8px;
        left: 8px;
    }

    .xplore-quote-close {
        bottom: 5px;
        right: 8px;
    }

    .xplore-testimonial-author {
        margin-top: 10px;
        padding: 0 5px;
    }

    .xplore-author-name {
        font-size: 0.9rem; /* Smaller author name */
    }

    .xplore-author-title {
        font-size: 0.8rem; /* Smaller author title */
    }

    .xplore-testimonials-pagination {
        margin-top: 20px;
        gap: 8px;
    }

    .xplore-pagination-dot {
        width: 8px;
        height: 8px;
    }
}

/* FAQ Section Styling */
.xplore-faq-section {
    padding: 80px 0;
}

.xplore-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.xplore-faq-heading {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1C48B2;
    margin: 0 0 60px 0;
}

.xplore-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.xplore-faq-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(28, 72, 178, 0.1);
}

    .xplore-faq-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }

.xplore-faq-question {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1C48B2;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.xplore-faq-answer {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive FAQ */
@@media (max-width: 1200px) {
    .xplore-faq-heading {
        font-size: 2.2rem;
    }
}

@@media (max-width: 1024px) {
    .xplore-faq-section {
        padding: 60px 0;
    }

    .xplore-faq-heading {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .xplore-faq-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
    }

    .xplore-faq-card {
        padding: 25px 20px;
    }

    .xplore-faq-question {
        font-size: 1.1rem;
    }

    .xplore-faq-answer {
        font-size: 0.95rem;
    }
}

@@media (max-width: 768px) {
    .xplore-faq-section {
        padding: 50px 0;
    }

    .xplore-faq-container {
        padding: 0 15px;
    }

    .xplore-faq-heading {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .xplore-faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .xplore-faq-card {
        padding: 20px 18px;
    }

    .xplore-faq-question {
        font-size: 1rem;
        margin-bottom: 12px;
    }

    .xplore-faq-answer {
        font-size: 0.9rem;
    }
}

@@media (max-width: 480px) {
    .xplore-faq-section {
        padding: 40px 0;
    }

    .xplore-faq-container {
        padding: 0 10px;
    }

    .xplore-faq-heading {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .xplore-faq-grid {
        gap: 15px;
    }

    .xplore-faq-card {
        padding: 18px 15px;
    }

    .xplore-faq-question {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }

    .xplore-faq-answer {
        font-size: 0.85rem;
    }
}

