

/* Root Variables - Modern Professional Color Scheme */
:root {
  /* Primary Colors */
  --primary-color: #2563eb;    /* Royal Blue - Primary Brand Color */
  --secondary-color: #0284c7;  /* Ocean Blue - Secondary Color */
  --accent-color: #06b6d4;     /* Cyan - Accent Color */
  
  /* Gradients */
  --primary-gradient: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
  --accent-gradient: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
  
  /* Text Colors */
  --text-primary: #1e293b;     /* Dark Blue Gray - Main Text */
  --text-secondary: #475569;   /* Medium Blue Gray - Secondary Text */
  --text-light: #94a3b8;       /* Light Blue Gray - Muted Text */
  
  /* Background Colors */
  --bg-primary: #f8fafc;       /* Light Gray Blue - Main Background */
  --bg-secondary: #ffffff;     /* White - Card Background */
  --bg-dark: #0f172a;         /* Dark Blue - Dark Sections */
  
  /* Border & Shadow */
  --border-light: #e2e8f0;
  --shadow-sm: 0 2px 4px rgba(37, 99, 235, 0.05);
  --shadow-md: 0 4px 6px rgba(37, 99, 235, 0.1);
  --shadow-lg: 0 10px 15px rgba(37, 99, 235, 0.15);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-primary);
    line-height: 1.6;
    position: relative;
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    background-image: url('');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
    z-index: -1;
}

/* Text Hierarchy */
h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
}

h3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  letter-spacing: -0.01em;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 5px 5%;
    background: linear-gradient(135deg ,#dbeafe 100%, var(--bg-primary) 0%) !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-light);
}

.logo h1 {
    color: var(--text-primary);
    font-size: 1.8rem;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links a {
    /* color: var(--primary-color); */
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--secondary-color);
}

.nav-buttons button {
    padding: 0.5rem 1.5rem;
    margin-left: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.login-btn {
    background: transparent;
    border: 2px solid !important;
    color: var(--secondary-color);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-family: swiper-icons;
    font-size: 25px !important;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

.signup-btn {
    background: var(--accent-gradient);
    color: white;
}

.nav-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #dbeafe 100%);
    min-height: 90vh;
    padding: 8rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right h1 {
        color: var(--secondary-color);
        font-size: 3.5rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        letter-spacing: -0.02em;
    }

.animated-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.18;
    filter: blur(2px);
    animation: float 18s infinite linear alternate;
    z-index: 0;
}

.animated-bg-shape1 {
    width: 320px;
    height: 320px;
    background: #0eb1ff;
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.animated-bg-shape2 {
    width: 180px;
    height: 180px;
    background: #a259ff;
    top: 60%;
    right: 10%;
    animation-delay: -6s;
}

.animated-bg-shape3 {
    width: 220px;
    height: 220px;
    background: #0a8cd2;
    bottom: 10%;
    left: 25%;
    animation-delay: -12s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -40px) scale(1.08);
    }
    100% {
        transform: translate(-20px, 20px) scale(1);
    }
}

.hero-glass {
    z-index: 2;
    text-align: left;
    max-width: 600px;
}

.gradient-heading, .hero-glass h1, .section-heading-gradient {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(90deg, #0eb1ff 0%, #a259ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 1rem;
}

.section-divider {
    width: 100vw;
    height: 60px;
    background: none;
    border: none;
    display: block;
    margin: 0;
    padding: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 4rem;
    padding: 0 2rem;
}

.hero-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

#lottie-container {
    width: 100%;
    max-width: 600px;
    /* height: 600px; */
}

.hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-right: 2rem;
}

.hero-right h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

.hero-right p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.search-container {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    background: var(--bg-secondary);
    padding: 0.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.search-container input {
    flex: 1;
    padding: 1.2rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 1.1rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.search-container input:focus {
    outline: none;
    border-color: var(--border-focus);
    background: var(--bg-hover);
    box-shadow: 0 0 0 2px rgba(76, 154, 255, 0.2);
}

.search-container input::placeholder {
    color: var(--text-muted);
}

.search-container button {
    padding: 1.2rem 2.5rem;
    background: var(--accent-gradient);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.search-container button:hover {
    /* background: var(--accent-color); */
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-md);
}

/* Earning Promo Section */
.earning-promo {
    padding: 5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #dbeafe 100%);
    color: white;
}

.earning-promo .container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
    padding: 0 5%;
    flex-wrap: wrap;
}

.earning-promo-image {
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
}

.earning-promo-image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.earning-promo-content {
    flex: 1;
    max-width: 50%;
}

.icon-badge {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.1rem;
}

.icon-badge i {
    margin-right: 0.5rem;
    color: #0caae3;
    font-size: 1.5rem;
}

.earning-promo-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

.learning-points-card {
    background: var(--bg-secondary);
    padding: 2.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    max-width: 450px;
    border: 1px solid var(--border-light);
}

.learning-points-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.learning-points-card p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.learning-points-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.learning-points-card ul li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1rem;
}



.earning-promo .btn-primary {
    background: var(--accent-gradient);
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
}

.earning-promo .btn-primary:hover {
    /* background: var(--accent-color); */
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-md);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-content {
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-right h1 {
        font-size: 3.5rem;
    }

    #lottie-container {
        max-width: 500px;
        height: 500px;
    }

    .earning-promo .container {
        gap: 3rem;
    }

    .earning-promo-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-right {
        padding-right: 0;
        justify-content: center;
    align-items: center;
    }

    .hero-right h1 {
        font-size: 2rem;
    }

    .hero-right p {
        font-size: 1.2rem;
    }

    #lottie-container {
        max-width: 400px;
        height: 400px;
    }

    .search-container {
        width: 100%;
        max-width: 500px;
        margin: 1rem auto 0;
    }

    .earning-promo .container {
        flex-direction: column;
        text-align: center;
    }

    .earning-promo-image,
    .earning-promo-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .earning-promo-image img {
        max-width: 80%;
        margin: 0 auto;
    }

    .learning-points-card {
        margin: 1.5rem auto 2rem;
        text-align: left;
    }
}

@media (max-width: 490px) {
    

    .hero-right h1 {
        font-size: 2.2rem;
    }

    .hero-right p {
        font-size: 1.1rem;
    }

    #lottie-container {
        max-width: 300px;
        height: 300px;
    }

    .search-container {
        flex-direction: column;
    }

    .search-container button {
        width: 100%;
    }

    .earning-promo-content h2 {
        font-size: 2rem;
    }

    .learning-points-card {
        padding: 1.5rem;
    }
}

/* Featured Reviews Section */
.featured-reviews {
    padding: 5rem 5%;
}

.featured-reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    border-radius: 24px;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 32px 0 rgba(14, 177, 255, 0.13), 0 1.5px 6px rgba(44, 62, 80, 0.04);
    border: 1.5px solid rgba(14, 177, 255, 0.08);
    padding: 2.2rem 1.7rem;
    margin-bottom: 2.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: fadeIn 0.8s;
    position: relative;
}

.review-card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    border-radius: 24px 0 0 24px;
    background: linear-gradient(180deg, #0eb1ff 0%, #a259ff 100%);
    opacity: 0.7;
}

.review-card:hover {
    box-shadow: 0 16px 48px rgba(14, 177, 255, 0.22), 0 4px 16px rgba(44, 62, 80, 0.10);
    transform: translateY(-8px) scale(1.03);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1rem;
    border: 3px solid #0eb1ff;
    box-shadow: 0 2px 8px rgba(14, 177, 255, 0.13);
    transition: border 0.3s;
}

.stars {
    color: #fbbf24; /* Amber color for stars */
}

.review-text {
    margin: 1rem 0;
    color: var(--text-secondary);
}

.review-footer {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Latest Reviews Section */
.latest-reviews {
    padding: 5rem 5%;
    
}

.latest-reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232563eb' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: -1;
}


.latest-reviews h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.latest-reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.review-item {
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px var(--shadow-sm);
}

.review-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 100%;
    background-color: var(--secondary-color);
    transform: skewX(-20deg);
    transform-origin: top left;
    z-index: 1;
}

.review-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 26, 26, 0.8);
    border-color: var(--border-focus);
}

.item-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.item-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 1.5rem;
    border: 3px solid var(--secondary-color);
    object-fit: cover;
}

.item-info {
    position: relative;
    z-index: 2;
}

.item-info h3 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
}

.item-info p {
    margin: 0;
    font-size: 1rem;
    color: var(--text-secondary);
}

.stars {
    color: var(--text-primary);
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.item-text {
    margin: 0 0 1.5rem 0;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.item-category, .item-date {
    font-size: 0.9rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px dashed rgba(135, 206, 235, 0.1);
    display: inline-block;
    margin-right: 1rem;
    position: relative;
    z-index: 2;
}

.item-category:last-child, .item-date:last-child {
    margin-right: 0;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 5%;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.8);
}

.how-it-works h2 {
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.steps-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.step-card {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    transition: transform 0.3s ease;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 24px;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 32px 0 rgba(14, 177, 255, 0.13), 0 1.5px 6px rgba(44, 62, 80, 0.04);
    padding: 2.2rem 1.7rem;
    margin-bottom: 2.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: fadeIn 0.8s;
}

.step-card:hover {
    box-shadow: 0 16px 48px rgba(14, 177, 255, 0.22), 0 4px 16px rgba(44, 62, 80, 0.10);
    transform: translateY(-8px) scale(1.03);
}

.step-card i {
    font-size: 4rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
    background: linear-gradient(135deg, #0eb1ff 0%, #a259ff 100%);
    color: #fff;
    border-radius: 50%;
    padding: 0.9rem;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(14, 177, 255, 0.13);
}

.step-card:hover i {
    color: var(--secondary-color);
}

.step-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #dbeafe 100%);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.testimonials-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 2rem;
    padding: 2rem;
    align-items: stretch;
    justify-content: space-between;
}

.testimonial-item {
    flex: 0 0 350px;
    background-color: var(--bg-secondary);
    padding: 2rem;
    border-radius: 24px;
    text-align: center;
    scroll-snap-align: center;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 24px;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 32px 0 rgba(14, 177, 255, 0.13), 0 1.5px 6px rgba(44, 62, 80, 0.04);
    padding: 2.2rem 1.7rem;
    margin-bottom: 2.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
    animation: fadeIn 0.8s;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #0eb1ff;
    box-shadow: 0 2px 8px rgba(14, 177, 255, 0.13);
    transition: border 0.3s;
}

.testimonial-item:hover img {
    border: 3px solid #a259ff;
}

.testimonial-item p {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    margin-top: 0;
    flex-grow: 1;
}

.testimonial-item h4 {
    color: var(--text-primary);
    margin: 0;
}

/* Categories Section */
.categories {
    padding: 5rem 5%;
    /* background: linear-gradient(45deg, rgb(135 206 235 / 81%) 0%, rgba(0, 0, 0, 0.8) 100%); */
}

.categories h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.category-card {
    background: var(--bg-secondary);
    padding: 2rem;
    text-align: center;
    border-radius: 24px;
    background: rgba(255,255,255,0.7);
    box-shadow: 0 8px 32px 0 rgba(14, 177, 255, 0.13), 0 1.5px 6px rgba(44, 62, 80, 0.04);
    border: 1.5px solid rgba(14, 177, 255, 0.08);
    padding: 2.2rem 1.7rem;
    margin-bottom: 2.5rem;
    transition: box-shadow 0.3s, transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    background: var(--bg-hover);
}

.category-card i {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 5rem 5%;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.join-btn {
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--accent-gradient);
    border: none;
    border-radius: 5px;
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(135, 206, 235, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg ,#dbeafe 100%, var(--bg-primary) 0%) ;
    padding: 4rem 5% 2rem;
    color: var(--text-secondary);
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: var(--text-secondary);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(135, 206, 235, 0.1);
}

.my-logo{
    width: 120px;
    filter: drop-shadow(1px 1px 1px black);

}

/* Footer Links Styles */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: var(--accent-gradient);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.footer-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: white;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.footer-link i {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .footer-links {
        align-items: center;
    }
    
    .footer-link {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
}

/* Mobile Navigation Styles */
@media (max-width: 768px) {

    .categories {
        padding: 2rem 48px 5%;
    }

    .nav-links {
        position: fixed;
        top: 110px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        transition: 0.3s ease;
        z-index: 999;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        margin: 1.5rem 0;
        font-size: 1.2rem;
        width: 100%;
        text-align: center;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: space-around;
        padding: 1rem;
        background-color: var(--bg-secondary);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }

    .nav-buttons button {
        margin: 0;
        padding: 0.8rem 1.5rem;
        /* width: 45%; */
        max-width: 160px;
        font-size: 1rem;
    }

    .hamburger {
        display: block;
    }

    .navbar {
        padding: 10px 5%;
    }
    
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-right h1 {
        font-size: 2.5rem;
    }
    
    #lottie-container {
        height: 300px;
    }

    .search-container {
        width: 90%;
        margin: 0 auto;
    }

    .search-container input {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .search-container button {
        padding: 0.8rem 1.5rem;
    }

    .categories-grid,
    .reviews-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .testimonials-carousel {
        padding: 0 1rem;
    }

    .testimonial-item {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    .hero{
        padding: 8rem 2rem 2rem 2rem;
    }
}

@media (max-width: 500px) {
   
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }

    .my-logo {
        width: 80px;
    }

    .navbar {
        padding: 5px 3%;
    }

    .category-card,
    .review-card,
    .step-card {
        padding: 1rem;
    }

    .review-item::before {
        width: 3px;
    }
}

/* Improve grid layouts for tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .categories-grid,
    .reviews-grid,
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .search-container {
        width: 80%;
    }
}

/* Ensure content doesn't overflow on any screen size */
* {
    max-width: 100%;
    box-sizing: border-box;
}

/* Fix for images */
img {
    max-width: 100%;
    height: auto;
}

/* Ensure proper spacing on all devices */
section {
    padding: 6rem 1rem 5rem 1rem;
}

@media (min-width: 768px) {
    section {
        padding: 5rem 5%;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes backgroundAnimation {
    0% {
        background-position: 0% 50%;
        background-size: 110% 110%;
    }
    25% {
        background-position: 25% 50%;
        background-size: 115% 115%;
    }
    50% {
        background-position: 50% 50%;
        background-size: 110% 110%;
    }
    75% {
        background-position: 75% 50%;
        background-size: 115% 115%;
    }
    100% {
        background-position: 100% 50%;
        background-size: 110% 110%;
    }
}

@keyframes moveObjects {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, 0);
    }
    50% {
        transform: translate(100px, 100px);
    }
    75% {
        transform: translate(0, 100px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.animated-object {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    z-index: 1;
    animation: moveObjects 15s infinite linear alternate;
}

.hero-content, .review-card, .category-card {
    animation: fadeIn 1s ease-out;
}

/* Loading Screen Styles */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-primary);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.loader {
    border: 8px solid var(--border-light);
    border-top: 8px solid var(--secondary-color);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

.loader-text {
    margin-top: 20px;
    color: var(--text-primary);
    font-size: 1.2rem;
}

.loader-logo {
    width: 80px; /* Adjust size as needed */
    margin-bottom: 20px; /* Space between logo and loader */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* New Pricing Section Styles (Table Layout) */
.pricing-section {
    padding: 5rem 5% 4rem 5%;
    text-align: center;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: var(--text-primary);
}

.pricing-cards {
    display: flex; /* Use flexbox */
    flex-wrap: nowrap; /* Keep cards in a single row */
    gap: 2rem;
    padding: 0 2rem; /* Add some horizontal padding */
    max-width: 1200px; /* Limit width for large screens */
    margin: 0 auto; /* Center the container */
    overflow-x: auto; /* Enable horizontal scrolling when content overflows */
    scroll-snap-type: x mandatory; /* Enable scroll snapping */
    padding-bottom: 1rem; /* Add space for scrollbar */
    /* Hide scrollbar - works in most browsers */
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Hide scrollbar - specifically for Chrome, Safari and Opera */
.pricing-cards::-webkit-scrollbar {
    display: none;
}

.pricing-card {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex; /* Use flexbox for content within card */
    flex-direction: column;
    flex: 0 0 300px; /* Prevent shrinking and set a base width */
    width: 300px; /* Explicit width */
    scroll-snap-align: start; /* Align cards for snapping */
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px var(--shadow-sm);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 4px 12px var(--shadow-md);
}

.pricing-card.featured:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 12px 20px rgba(14, 177, 255, 0.5);
}

.card-badge {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block; /* Make badge fit content */
}

.card-header {
    margin-bottom: 1.5rem;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.amount {
    margin-right: 5px;
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.card-features {
    flex-grow: 1; /* Allow features to take up available space */
    margin-bottom: 2rem;
    text-align: left; /* Align features to the left */
}

.card-features ul {
    list-style: none;
    padding: 0;
}

.card-features li {
    margin-bottom: 0.8rem;
    color: var(--text-secondary);
    font-size: 1rem;
    display: flex; /* Use flexbox for icon and text */
    align-items: center;
}

.card-features li:last-child {
    margin-bottom: 0;
}

.card-features i {
    color: var(--text-primary);
    margin-right: 10px;
    font-size: 1.1rem;
}

.card-footer {
    margin-top: auto; /* Push footer to the bottom */
}

.swiper-pagination-bullet-active{
    background: var(--secondary-color) !important;
}

.card-footer .btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px var(--shadow-md);
}

/* New Review24 FAQ Section Styles */
.review24-faq-section {
    padding: 80px 20px;
    /* background-color: var(--bg-primary); */
}

.review24-faq-section h2 {
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.5rem;
}

.review24-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.review24-faq-item {
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: 0 2px 8px var(--shadow-sm);
}

.review24-faq-question {
    padding: 20px;
    margin: 0;
    cursor: pointer;
    position: relative;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    user-select: none;
}

.review24-faq-question::after {
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--text-primary);
    transition: transform 0.3s ease;
    margin-left: 10px;
}

.review24-faq-item.active .review24-faq-question::after {
    transform: rotate(180deg);
}

.review24-faq-question:hover {
    background-color: var(--bg-hover);
}

.review24-faq-answer {
    padding: 0 20px;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, visibility 0.3s ease-out;
    overflow: hidden;
    background-color: var(--bg-secondary);
    visibility: hidden;
}

.review24-faq-answer p {
    margin: 0;
    padding: 0 0 20px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.review24-faq-item.active .review24-faq-answer {
    padding: 0 20px;
    max-height: 1000px; /* Sufficiently large value */
    opacity: 1;
    visibility: visible;
}

/* Pricing Hero Section Styles */
.pricing-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 10rem 2rem 4rem;
    background: var(--gradient-primary);
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/pricing-bg.jpg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
    animation: backgroundAnimation 20s infinite alternate;
}

.pricing-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg-primary) 0%, #dbeafe 100%);
    z-index: 1;
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    animation: fadeIn 1s ease-out;
}

.pricing-hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, var(--text-primary), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientText 3s ease infinite;
}

.pricing-hero-content p {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Animated shapes in the background */
.pricing-hero .shape {
    position: absolute;
    background: var(--secondary-color);
    opacity: 0.1;
    animation: float 15s infinite;
    z-index: 1;
}

.pricing-hero .shape1 {
    width: 300px;
    height: 300px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.pricing-hero .shape2 {
    width: 200px;
    height: 200px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    top: 60%;
    right: 15%;
    animation-delay: -5s;
}

.pricing-hero .shape3 {
    width: 250px;
    height: 250px;
    border-radius: 40% 60% 70% 30% / 40% 50% 50% 60%;
    bottom: 10%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes gradientText {
    0% {
        background-position: 0% 50%;
        background: linear-gradient(45deg, var(--text-primary), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    50% {
        background-position: 100% 50%;
        background: linear-gradient(45deg, var(--secondary-color), var(--text-primary));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    100% {
        background-position: 0% 50%;
        background: linear-gradient(45deg, var(--text-primary), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
}

/* Responsive styles for pricing hero */
@media (max-width: 1024px) {
    .pricing-hero-content h1 {
        font-size: 3.5rem;
    }
    
    .pricing-hero-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .pricing-hero {
        min-height: 50vh;
        padding: 6rem 1.5rem 3rem;
    }

    .pricing-hero-content h1 {
        font-size: 2rem;
    }
    
    .pricing-hero-content p {
        font-size: 1.2rem;
    }

    .pricing-hero .shape {
        opacity: 0.05;
    }
}

@media (max-width: 480px) {
    .pricing-hero {
        min-height: 40vh;
        padding: 8rem 1rem 2rem;
    }

    .pricing-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .pricing-hero-content p {
        font-size: 1.1rem;
    }
}

.footer-section{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}

.pricing-swiper {
    max-width: 1200px;
    margin: auto;
    padding: 1rem;
}

.swiper-slide {
    height: auto;
}

.pricing-cards {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pricing-card {
    flex: 0 0 300px;
    margin-right: 2rem;
    scroll-snap-align: start;
}

.pricing-card:last-child {
    margin-right: 0;
}

@media screen and (max-width: 768px) {
    .pricing-cards {
        padding: 0;
    }
    
    .swiper {
        width: 100%;
        padding: 20px 0;
    }
    
    .swiper-slide {
        width: 85%;
        margin: 0 auto;
        height: 100%;
    }
    
    .pricing-card {
        margin: 0;
        height: 100%;
    }
    
    .swiper-pagination {
        bottom: 10px;
    }
}

@media (min-width: 769px) {
    .pricing-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        align-items: stretch;
    }
}

.earn-with-review24 {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #dbeafe 100%);
  color: #838383;
  padding: 60px 10px;
}

.earn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.earn-info {
  max-width: 500px;
}

.earn-info h2 {
  color: var(--text-primary);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.earn-info p {
  font-size: 1.1rem;
  margin-bottom: 22px;
  color: #161616;
}

.earn-list {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.earn-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.earn-list i {
  color: #0eb1ff;
  font-size: 1.2rem;
}

.earn-btn {
    background: var(--accent-gradient);
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(14, 177, 255, 0.13);
    font-weight: 700;
    padding: 1.1rem 2.5rem;
    font-size: 1.15rem;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.earn-btn:hover {
    background: linear-gradient(90deg, #a259ff 0%, #0eb1ff 100%);
    box-shadow: 0 6px 24px rgba(14, 177, 255, 0.22);
    transform: translateY(-2px) scale(1.04);
}

.earn-image img {
    max-width: 430px;
    border-radius: 18px;
}

@media (max-width: 900px) {
  .earn-container {
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
  }
  .earn-image img {
    margin: 0 auto;
  }
}

/* Category Selector Section */
.category-selector {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #dbeafe 100%);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 2rem 0 1rem 0;
  margin-bottom: 2rem;
  margin-top: 2rem;
  box-shadow: 0 2px 12px rgba(14, 177, 255, 0.07);
  border: 1px solid var(--border-light);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.category-selector-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  margin-bottom: 1rem;
}

.category-selector-header h2 {
  font-size: 1.5rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
}

.category-selector-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cat-arrow {
  background: #fce1e7;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  color: #0eb1ff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-arrow:hover {
  background: #0eb1ff;
  color: #fff;
}

.see-more-btn {
  background: #fff;
  border: 2px solid #0eb1ff;
  color: #0eb1ff;
  border-radius: 20px;
  padding: 0.4rem 1.2rem;
  font-weight: 500;
  margin-left: 0.5rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.see-more-btn:hover {
  background: #0eb1ff;
  color: #fff;
}

.category-scroll-wrapper {
  overflow-x: auto;
  padding: 0 2rem;
}

.category-list {
  display: flex;
  gap: 1.5rem;
  min-width: 700px;
  transition: scroll-left 0.3s;
}

.cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 110px;
  padding: 1rem 0.5rem;
  background: var(--bg-secondary);
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(14, 177, 255, 0.05);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

.cat-item i {
  font-size: 2rem;
  color: #0eb1ff;
  margin-bottom: 0.5rem;
}

.cat-item span {
  font-size: 1rem;
  color: rgb(0, 0, 0);
  text-align: center;
  font-weight: 500;
}

.cat-item:hover {
  border: 1px dotted white;
  border-color: var(--border-focus);
  box-shadow: 0 2px 12px rgba(14, 177, 255, 0.12);
}

@media (max-width: 900px) {
  .category-selector-header,
  .category-scroll-wrapper {
    padding: 0 1rem;
  }
  .category-list {
    gap: 1.2rem;
    min-width: 600px;
  }
}

@media (max-width: 600px) {

    .earn-image img {
        max-width: 280px;
        border-radius: 18px;
    }

    .earn-list li{
        justify-content: center;
    }

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

    .swiper-button-prev, .swiper-button-next {
    padding: 15px !important;
    }

  .category-selector-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0 0.5rem;
  }
  .category-scroll-wrapper {
    padding: 0 0.5rem;
  }
  .category-list {
    gap: 0.7rem;
    min-width: 400px;
  }
  .cat-item {
    min-width: 146px;
    padding: 0.7rem 0.2rem;
  }
  .category-selector-header h2 {
    font-size: 1.1rem;
  }
}

/* Dashboard Demo Section */
.dashboard-demo {
  border-radius: 18px;
  padding: 4rem 2rem 3rem 2rem;
  margin: 3rem auto 2rem auto;
  max-width: 1200px;
  text-align: center;
}
.dashboard-demo h2 {
  color: var(--text-primary);
  font-size: 2.2rem;
  margin-bottom: 2.5rem;
  font-weight: 700;
}
.demo-steps {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.my-pdf{
  color: #ffffff !important;
}   

/* Hero Download Section Styles */
.hero-download-section {
    margin: 2rem 0;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 200px;
    box-shadow: var(--shadow-md);
}

.android-btn {
    background: linear-gradient(135deg, #3DDC84 0%, #2BB673 100%);
    color: white;
}

.android-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #2BB673 0%, #3DDC84 100%);
    color: white;
}

.ios-btn {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
}

.ios-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #333333 0%, #000000 100%);
    color: white;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-title {
    font-size: 0.9rem;
    font-weight: 600;
}

.btn-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

.download-btn i {
    font-size: 1.5rem;
}

/* iOS Popup Modal Styles */
.ios-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.ios-popup-content {
    background: white;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ios-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.ios-popup-header h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ios-popup-header h3 i {
    color: #000;
    font-size: 1.5rem;
}

.ios-popup-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ios-popup-close:hover {
    background: #f3f4f6;
    color: #374151;
}

.ios-popup-body {
    padding: 2rem;
    text-align: center;
}

.ios-popup-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.ios-popup-icon i {
    font-size: 2.5rem;
    color: white;
}

.ios-popup-body h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.ios-popup-body p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.ios-popup-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
}

.feature-item span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.95rem;
}

.ios-notify-btn {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.ios-notify-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
}

.ios-notify-btn i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .download-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .download-btn {
        min-width: auto;
        width: 100%;
        justify-content: center;
    }
    
    .ios-popup-content {
        width: 95%;
        margin: 1rem;
    }
    
    .ios-popup-header {
        padding: 1rem 1.5rem 0.5rem;
    }
    
    .ios-popup-body {
        padding: 1.5rem;
    }
    
    .ios-popup-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .ios-popup-icon i {
        font-size: 2rem;
    }
    
    .ios-popup-body h4 {
        font-size: 1.3rem;
    }
    
    .ios-popup-body p {
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 0.6rem 0.8rem;
    }
    
    .ios-notify-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
}

.demo-step {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #dbeafe 100%);
  border-radius: 14px;
  padding: 2rem 1.2rem;
  min-width: 200px;
  max-width: 260px;
  flex: 1 1 200px;
  box-shadow: 0 1px 6px rgba(14, 177, 255, 0.05);
  color: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.demo-step:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 4px 18px rgba(14, 177, 255, 0.15);
}
.demo-icon {
  font-size: 2.5rem;
  color: #0eb1ff;
  margin-bottom: 1rem;
}
.demo-step h3 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.demo-step p {
  font-size: 1rem;
  color: #353535;
}
.demo-btn {
  background: #0eb1ff;
  color: #fff;
  border: none;
  border-radius: 22px;
  padding: 0.8rem 2.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(14, 177, 255, 0.10);
  display: inline-block;
  margin-top: 1rem;
}
.demo-btn:hover {
  background: #fff;
  color: #0eb1ff;
  border: 2px solid #0eb1ff;
}
/* Demo Modal Styles */
.demo-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  overflow: auto;
  background: rgba(244, 245, 247, 0.95);
  align-items: center;
  justify-content: center;
}
.demo-modal.show {
  display: flex;
}
.demo-modal-content {
  background: var(--bg-secondary);
  color: var(--text-primary);
  margin: auto;
  border-radius: 18px;
  padding: 2.5rem 2rem 2rem 2rem;
  max-width: 400px;
  width: 95%;
  position: relative;
  box-shadow: 0 8px 16px var(--shadow-lg);
  text-align: center;
  animation: fadeIn 0.4s;
}
.demo-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 2rem;
  color: #0eb1ff;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s;
}
.demo-modal-close:hover {
  color: #e74c3c;
}
#demo-review-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
#demo-review-form label {
  text-align: left;
  font-weight: 500;
  color: #0eb1ff;
}
#demo-review-form input[type="text"],
#demo-review-form textarea {
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  font-size: 1rem;
  background: var(--bg-secondary);
  color: var(--text-primary);
  resize: none;
}
#demo-review-form textarea {
  min-height: 80px;
}
#demo-review-form button.demo-btn {
  margin-top: 0.5rem;
}
.demo-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2rem;
  animation: fadeIn 0.7s;
}
.demo-success-icon {
  font-size: 3rem;
  color: #0eb1ff;
  margin-bottom: 1rem;
  animation: bounce 1.2s;
}
.demo-success h4 {
  color: #0eb1ff;
  margin-bottom: 0.5rem;
}
.demo-earn-amount {
  color: #0eb1ff;
  font-weight: bold;
  font-size: 1.2rem;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  30% { transform: translateY(-18px); }
  50% { transform: translateY(0); }
  70% { transform: translateY(-8px); }
}

/* Glassmorphism for hero and cards **/
.glass-card, .hero-glass {
  background: rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 24px;
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 2.5rem 2rem;
  margin: 0 auto 2rem auto;
  max-width: 600px;
  position: relative;
}

/** Neumorphic/Glass Cards **/
.review-card, .category-card, .step-card, .testimonial-item {
  border-radius: 24px;
  background: rgba(255,255,255,0.7);
  box-shadow: 0 8px 32px 0 rgba(14, 177, 255, 0.13), 0 1.5px 6px rgba(44, 62, 80, 0.04);
  border: 1.5px solid rgba(14, 177, 255, 0.08);
  padding: 2.2rem 1.7rem;
  margin-bottom: 2.5rem;
  transition: box-shadow 0.3s, transform 0.3s;
  animation: fadeIn 0.8s;
  position: relative;
}
.review-card::before, .category-card::before, .step-card::before {
  content: '';
  position: absolute;
  left: -1px; top: 0; bottom: 0;
  width: 100%;
  border-radius: 24px 0 0 24px;
  background: var(--accent-gradient);
  opacity: 0.7;
}
.review-card:hover, .category-card:hover, .step-card:hover, .testimonial-item:hover {
  box-shadow: 0 16px 48px rgba(14, 177, 255, 0.22), 0 4px 16px rgba(44, 62, 80, 0.10);
  transform: translateY(-8px) scale(1.03);
}

/** Buttons **/
/* button, .btn-primary, .earn-btn, .join-btn, .demo-btn {
    background: var(--accent-gradient);
    color: #ffffff;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(14, 177, 255, 0.13);
  font-weight: 700;
      text-decoration: none;
  padding: 1.1rem;
  font-size: 1.15rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
} */
button .btn-icon, .btn-primary .btn-icon {
  margin-left: 0.7rem;
  transition: transform 0.2s;
  display: inline-block;
}
button:hover .btn-icon, .btn-primary:hover .btn-icon {
  transform: translateX(6px) scale(1.2);
}
button:hover, .btn-primary:hover, .earn-btn:hover, .join-btn:hover, .demo-btn:hover {
  background: linear-gradient(90deg, #a259ff 0%, #0eb1ff 100%);
  box-shadow: 0 6px 24px rgba(14, 177, 255, 0.22);
  /* transform: translateY(-2px) scale(1.04); */
}

/** Testimonial Avatars **/
.testimonial-item img, .review-header img, .item-header img {
  border-radius: 50%;
  border: 3px solid #0eb1ff;
  box-shadow: 0 2px 8px rgba(14, 177, 255, 0.13);
  transition: border 0.3s;
}
.testimonial-item:hover img, .review-header img:hover, .item-header img:hover {
  border: 3px solid #a259ff;
}

/** Badges **/
.card-badge, .badge-featured {
  background: linear-gradient(90deg, #0eb1ff 0%, #a259ff 100%);
  color: #fff;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(14, 177, 255, 0.13);
  display: inline-block;
  margin-bottom: 1rem;
}

/** Modern icon backgrounds for step cards **/
.step-card i, .demo-icon {
    background: var(--accent-gradient);
    color: #ffffff;
  border-radius: 20%;
  padding: 0.9rem;
  font-size: 2.3rem;
  margin-bottom: 1rem;
  display: inline-block;
  box-shadow: 0 2px 8px rgba(14, 177, 255, 0.13);
}

/** Gradient text for headings **/
.section-heading-gradient {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(90deg, #0eb1ff 0%, #a259ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 1rem;
}

/* AI Chatbot Launch Section */
.ai-chatbot-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
    padding: 4rem 2rem;
    position: relative;
}

.ai-chatbot-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

.ai-launch-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.ai-launch-badge i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.ai-chatbot-header h2 {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.ai-chatbot-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* Chatbot Demo Interface */
.ai-chatbot-demo {
    margin-bottom: 3rem;
}

.chatbot-interface {
    background: var(--bg-secondary);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.chatbot-header {
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.chatbot-info h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.status {
    font-size: 0.8rem;
    opacity: 0.9;
}

.typing-indicator {
    margin-left: auto;
    display: flex;
    gap: 0.3rem;
}

.typing-indicator span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) { animation-delay: -0.32s; }
.typing-indicator span:nth-child(2) { animation-delay: -0.16s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.chat-messages {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.message {
    margin-bottom: 1rem;
    display: flex;
}

.user-message {
    justify-content: flex-end;
}

.bot-message {
    justify-content: flex-start;
}

.message-content {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    position: relative;
}

.user-message .message-content {
    background: var(--primary-gradient);
    color: white;
    border-bottom-right-radius: 5px;
}

.bot-message .message-content {
    background: var(--bg-primary);
    color: var(--text-primary);
    border-bottom-left-radius: 5px;
}

.message-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Search Results in Chat */
.search-results {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.review-result {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    overflow: hidden;
}

.review-result:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-light);
}

.review-header img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.review-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.stars {
    color: #fbbf24;
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
}

.review-date {
    font-size: 0.7rem;
    color: var(--text-light);
}

.review-content {
    padding: 1rem;
}

.review-content p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    font-style: italic;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.tag {
    background: #0284c7;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Keep old result-item styles for backward compatibility */
.result-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.result-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.result-item img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.result-info h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: var(--text-primary);
}

.result-info p {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin: 0;
}

.review-btn {
    background: var(--accent-gradient);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.review-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* AI Suggestions */
.ai-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.8rem;
}

.suggestion-chip {
    background: #0284c7;
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.suggestion-chip:hover {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

/* Chat Input */
.chat-input {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
}

.chat-input input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 25px;
    font-size: 0.9rem;
    background: white;
    color: var(--text-primary);
}

.chat-input input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

.send-btn {
    background: var(--accent-gradient);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-sm);
}

/* Features Preview */
.ai-features-preview {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feature-preview {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.2rem;
    background: var(--bg-secondary);
    border-radius: 25px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-preview:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-preview i {
    color: #0284c7;
    font-size: 1.1rem;
}

.feature-preview span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

/* Launch CTA */
.ai-launch-cta {
    text-align: center;
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.ai-launch-cta h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.ai-launch-cta p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.launch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-gradient);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.launch-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .ai-chatbot-section {
        padding: 3rem 1rem;
    }
    
    .ai-chatbot-header h2 {
        font-size: 1.8rem;
    }
    
    .chat-messages {
        max-height: 300px;
    }
    
    .message-content {
        max-width: 90%;
    }
    
    .ai-features-preview {
        gap: 1rem;
    }
    
    .feature-preview {
        padding: 0.6rem 1rem;
    }
    
    .feature-preview span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .ai-chatbot-header h2 {
        font-size: 1.5rem;
    }
    
    .chatbot-interface {
        border-radius: 15px;
    }
    
    .chat-messages {
        padding: 1rem;
    }
    
    .result-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .review-btn {
        margin-left: 0;
    }
}