/* Global Styles */
::-webkit-scrollbar {
    display: none;
}

* {
    scrollbar-width: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}

/* Navigation */
nav {
    background: linear-gradient(to right, #3b82f6, #60a5fa);
    position: fixed;
    width: 100%;
    z-index: 50;
}

.nav-links {
    display: none;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 3.5rem;
    left: 0;
    width: 100%;
    background: #3b82f6;
    padding: 1rem;
}



/* Enhanced Banner Section with Advanced Animations */
.banner-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 3.5rem;
    background: rgb(43, 166, 255);
}

.banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.1);
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide.active {
    opacity: 1;
    transform: scale(1);
}

.banner-slide.next {
    transform: scale(1.05) translateX(50px);
}

.banner-slide.prev {
    transform: scale(1.05) translateX(-50px);
}

/* Animated Gradient Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(43, 166, 255, 0.3) 0%,
            rgba(43, 166, 255, 0.15) 25%,
            rgba(43, 166, 255, 0.3) 50%,
            rgba(43, 166, 255, 0.15) 75%,
            rgba(43, 166, 255, 0.3) 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    z-index: 2;
}

/* .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(59, 130, 246, 0.8) 0%,
            rgba(96, 165, 250, 0.7) 25%,
            rgba(59, 130, 246, 0.8) 50%,
            rgba(96, 165, 250, 0.7) 75%,
            rgba(59, 130, 246, 0.8) 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease-in-out infinite;
    z-index: 2;
} */



@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Floating Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatUp 6s linear infinite;
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Geometric Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    opacity: 0.1;
}

.floating-circle {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: floatCircle 12s ease-in-out infinite;
}

.floating-square {
    background: rgba(255, 255, 255, 0.15);
    animation: floatSquare 15s ease-in-out infinite;
}

.floating-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    animation: floatTriangle 10s ease-in-out infinite;
}

@keyframes floatCircle {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
    }

    50% {
        transform: translateY(-60px) translateX(-10px) rotate(180deg);
    }

    75% {
        transform: translateY(-30px) translateX(-30px) rotate(270deg);
    }
}

@keyframes floatSquare {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-40px) translateX(30px) rotate(120deg);
    }

    66% {
        transform: translateY(-20px) translateX(-20px) rotate(240deg);
    }
}

@keyframes floatTriangle {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-50px) translateX(25px) rotate(180deg);
    }
}

/* Banner Content */
.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.banner-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.banner-title .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px) rotateX(90deg);
    animation: revealWord 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes revealWord {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.banner-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInUp 1s ease-out 0.3s both;
}

.banner-search {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    animation: searchFormReveal 1s ease-out 0.6s both;
}

@keyframes searchFormReveal {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Button Effects */
.enhanced-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.enhanced-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.enhanced-button:hover::before {
    left: 100%;
}

.enhanced-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Personal Journey Section */
.journey-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.journey-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(96, 165, 250, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.journey-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.journey-header {
    text-align: center;
    margin-bottom: 4rem;
}

.journey-main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, #1e293b 0%, #3b82f6 50%, #6366f1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.journey-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.journey-highlight {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.journey-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.journey-step {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.journey-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journey-step:hover::before {
    opacity: 1;
}

.journey-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.journey-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
    z-index: 3;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.journey-stats {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    padding: 3rem 2rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
}

.journey-cta {
    text-align: center;
    margin-top: 3rem;
}

.journey-cta-btn {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.journey-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

/* Insurance Section */
.insurance-types {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.insurance-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.insurance-header {
    text-align: center;
    margin-bottom: 3rem;
}

.insurance-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.insurance-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.insurance-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.insurance-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.insurance-item:nth-child(even) {
    flex-direction: row-reverse;
}

.insurance-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    height: 300px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.insurance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insurance-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(43, 166, 255, 0.3), rgba(59, 130, 246, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.insurance-image:hover::before {
    opacity: 1;
}

.insurance-image:hover img {
    transform: scale(1.1);
}

.insurance-content {
    flex: 1;
    padding: 1.5rem;
}

.insurance-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgb(43, 166, 255), rgb(59, 130, 246));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.insurance-content-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.insurance-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.insurance-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.insurance-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, rgb(43, 166, 255), rgb(59, 130, 246));
    border-radius: 50%;
}

.insurance-cta {
    background: linear-gradient(135deg, rgb(43, 166, 255), rgb(59, 130, 246));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.insurance-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 166, 255, 0.3);
}

/* Blog Section */
.blog-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 1rem;
}

.blog-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.featured-post {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.featured-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(43, 166, 255, 0.15);
}

.featured-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.featured-post:hover .featured-image img {
    transform: scale(1.1);
}

.featured-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
}

.featured-badge {
    background: rgb(43, 166, 255);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    align-self: flex-start;
    margin-bottom: 0.75rem;
}

.featured-post-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.featured-meta {
    display: flex;
    gap: 0.75rem;
    font-size: 0.75rem;
    opacity: 0.9;
}

.featured-content {
    padding: 1.5rem;
}

.featured-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: rgb(43, 166, 255);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more:hover {
    transform: translateX(5px);
}

.side-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.side-post {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 200px;
    display: flex;
    flex-direction: column;
}

.side-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(43, 166, 255, 0.15);
}

.side-image {
    height: 100px;
    overflow: hidden;
    position: relative;
}

.side-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.side-post:hover .side-image img {
    transform: scale(1.1);
}

.side-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: rgb(43, 166, 255);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.side-content {
    padding: 0.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.side-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a202c;
    line-height: 1.3;
}

.side-meta {
    display: flex;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #9ca3af;
}

.blog-cta {
    text-align: center;
    margin-top: 2rem;
}

.blog-cta-btn {
    background: linear-gradient(135deg, rgb(43, 166, 255), rgb(59, 130, 246));
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(43, 166, 255, 0.3);
}

/* Customer Feedback Section */
.feedback-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(43, 166, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(43, 166, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #1e293b 0%, rgb(43, 166, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    text-align: center;
}

/* Swiper Styles */
.swiper-container {
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
}

.review-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(43, 166, 255, 0.1);
    border-radius: 24px;
    padding: 30px 20px;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    max-width: 380px;
    margin: 0 0px;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, -20px) !important;
    top: var(--swiper-pagination-top, auto);
    left: 0;
    width: 100%;
}

.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(43, 166, 255, 0.02) 0%, rgba(43, 166, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.review-card:hover::before {
    opacity: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(43, 166, 255, 0.15);
    border-color: rgba(43, 166, 255, 0.2);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(43, 166, 255, 0.2);
    margin-right: 16px;
    transition: all 0.3s ease;
}

.review-card:hover .reviewer-avatar {
    border-color: rgb(43, 166, 255);
    transform: scale(1.05);
}

.reviewer-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.reviewer-role {
    font-size: 0.9rem;
    color: rgb(43, 166, 255);
    font-weight: 600;
}

.rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.star {
    width: 20px;
    height: 20px;
    fill: #fbbf24;
    transition: transform 0.2s ease;
}

.review-card:hover .star {
    transform: scale(1.1);
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    font-style: italic;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.review-text::before {
    content: '"';
    font-size: 4rem;
    color: rgba(43, 166, 255, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
    line-height: 1;
}

.review-date {
    font-size: 0.85rem;
    color: #94a3b8;
    position: relative;
    z-index: 2;
}

/* Swiper Navigation */
.swiper-button-prev,
.swiper-button-next {
    color: rgb(43, 166, 255);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgb(43, 166, 255);
    color: #fff;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: rgba(43, 166, 255, 0.5);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background: rgb(43, 166, 255);
    opacity: 1;
}

.swiper-button-prev {
    left: -30px;
}

.swiper-button-next {
    right: -30px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: row;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .insurance-item {
        gap: 3rem;
    }

    .insurance-image {
        height: 350px;
    }

    .insurance-content-title {
        font-size: 2.25rem;
    }

    .insurance-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: 1.5fr 1fr;
    }

    .journey-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .insurance-item {
        flex-direction: column !important;
        gap: 1.5rem;
    }

    .insurance-image {
        height: 200px;
    }

    .insurance-content-title {
        font-size: 1.75rem;
    }

    .insurance-features {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .review-card {
        padding: 30px 20px;
    }

    .swiper-container {
        padding: 10px 0;
    }

    .swiper-button-prev {
        left: 10px;
    }

    .swiper-button-next {
        right: 10px;
    }

    .banner-search {
        padding: 1.5rem;
    }

    .banner-search .flex {
        flex-direction: column;
        gap: 1rem;
    }

    .banner-search input {
        width: 100%;
    }

    .banner-search button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 16px;
    }

    .banner-title {
        font-size: 2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    /* .journey-steps {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    } */
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-back {
    background-color: rgb(43, 166, 255);
}