.feature-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fefefe 0%, #f8f6f3 100%);
    position: relative;
    overflow: hidden;
}

.feature-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: pulse 8s ease-in-out infinite;
}

.feature-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,107,107,0.08) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
    animation: pulse 8s ease-in-out infinite reverse;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Floating Elements */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.shape-3 {
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, #11998e, #38ef7d);
    bottom: 30%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Title Styles */
.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    padding: 10px 24px;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: 0 8px 25px rgba(255,107,107,0.25);
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.feature-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 60px;
}

.feature-title span {
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.feature-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    border-radius: 2px;
    animation: lineGrow 2s ease-out forwards;
}

@keyframes lineGrow {
    from { width: 0; }
    to { width: 100%; }
}

/* Counter Cards */
.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 1024px) {
    .counter-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .counter-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .swiper{overflow: hidden !important;}
}

.counter-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.04);
}

.counter-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ff6b6b);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.counter-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.counter-card:hover::before {
    transform: scaleX(1);
}

/* Decorative Corner */
.counter-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,107,107,0.1));
    border-radius: 50%;
    transition: all 0.5s ease;
}

.counter-card:hover::after {
    transform: scale(1.5);
}

/* Icon Styles */
.counter-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #fff9e6, #fff0f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.5s ease;
}

.counter-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    border-radius: 22px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.counter-card:hover .counter-icon {
    transform: scale(1.1) rotate(5deg);
    background: #fff;
}

.counter-card:hover .counter-icon::before {
    opacity: 1;
}

.counter-icon svg {
    width: 40px;
    height: 40px;
    fill: #ff6b6b;
    transition: all 0.4s ease;
}

.counter-card:hover .counter-icon svg {
    fill: #ffd700;
    transform: scale(1.1);
}

/* Counter Number */
.counter-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.counter-number .count {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1a1a2e, #333);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
}

.counter-card:hover .counter-number .count {
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    background-clip: text;
}

.counter-number .suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff6b6b;
}

.counter-label {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(255,107,107,0.1));
    border-radius: 50px;
    color: #666;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.counter-desc {
    color: #888;
    font-size: 14px;
    margin: 0;
}

/* Animated Ring */
.counter-ring {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border: 2px dashed rgba(255,107,107,0.3);
    border-radius: 50%;
    animation: spin 10s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.counter-card:hover .counter-ring {
    opacity: 1;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal:nth-child(1) { transition-delay: 0.1s; }
.reveal:nth-child(2) { transition-delay: 0.2s; }
.reveal:nth-child(3) { transition-delay: 0.3s; }
.reveal:nth-child(4) { transition-delay: 0.4s; }

/* Section Base */
.card-section {
    padding:  0;
    position: relative;
    overflow: hidden;
}

.card-section.gift-section {
    background: linear-gradient(135deg, #f7ffff00 0%rgba(255, 249, 240, 0)f0 100%);
}

.card-section.greeting-section {
    background: linear-gradient(135deg, #f8f6ff 0%, #fff0f5 100%);
}

/* Background Decorations */
.card-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
}

.gift-section::before {
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
    top: -200px;
    left: -200px;
}

.greeting-section::before {
    background: radial-gradient(circle, rgba(255,107,107,0.12) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
}

.card-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    z-index: 0;
}

.gift-section::after {
    background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
    bottom: -150px;
    right: -100px;
}

.greeting-section::after {
    background: radial-gradient(circle, rgba(102,126,234,0.1) 0%, transparent 70%);
    top: -150px;
    left: -100px;
}

/* Image Side */
.image-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.main-image {
    position: relative;
    z-index: 2;
}

.main-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.15));
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

/* Decorative Elements Around Image */
.image-decor {
    position: absolute;
    z-index: 1;
}

.decor-circle {
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(255,215,0,0.3);
    border-radius: 50%;
    animation: spinSlow 30s linear infinite;
}

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.decor-circle::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    border-radius: 50%;
    transform: translateX(-50%);
}

.decor-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulseDot 3s ease-in-out infinite;
}

.dot-1 { top: 10%; left: 5%; background: #ffd700; animation-delay: 0s; }
.dot-2 { top: 20%; right: 10%; background: #ff6b6b; animation-delay: 0.5s; }
.dot-3 { bottom: 15%; left: 10%; background: #667eea; animation-delay: 1s; }
.dot-4 { bottom: 25%; right: 5%; background: #38ef7d; animation-delay: 1.5s; }
.dot-5 { top: 50%; left: 0; background: #f093fb; animation-delay: 2s; }

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.5); opacity: 1; }
}

/* Floating Icons */
.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    z-index: 3;
    animation: floatIcon 5s ease-in-out infinite;
}

.floating-icon i {
    font-size: 24px;
    background: linear-gradient(135deg, #fff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
}

.icon-1 { top: 10%; left: 10%; animation-delay: 0s; }
.icon-2 { top: 20%; right: 5%; animation-delay: 1s; }
.icon-3 { bottom: 15%; left: 5%; animation-delay: 2s; }
.icon-4 { bottom: 10%; right: 15%; animation-delay: 0.5s; }

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Sparkle Effect */
.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 4;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    border-radius: 2px;
}

.sparkle::before {
    width: 100%;
    height: 4px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.sparkle::after {
    width: 4px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.sparkle-1 { top: 5%; right: 20%; animation: sparklePop 2s ease-in-out infinite; }
.sparkle-2 { bottom: 20%; left: 15%; animation: sparklePop 2s ease-in-out infinite 0.5s; }
.sparkle-3 { top: 40%; right: 5%; animation: sparklePop 2s ease-in-out infinite 1s; }

@keyframes sparklePop {
    0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1) rotate(90deg); opacity: 1; }
}

/* Content Side */
.content-container {
    position: relative;
    z-index: 2;
    padding: 20px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.gift-section .section-badge {
    background: linear-gradient(135deg, #ffd700, #ffb347);
    color: #fff;
}

.greeting-section .section-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a5a);
    color: #fff;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title span {
    position: relative;
    display: inline-block;
}

.gift-section .section-title span {
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.greeting-section .section-title span {
    background: linear-gradient(135deg, #ff6b6b, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    border-radius: 2px;
}

.gift-section .section-title span::after {
    background: linear-gradient(90deg, #ffd700, transparent);
}

.greeting-section .section-title span::after {
    background: linear-gradient(90deg, #ff6b6b, transparent);
}

.section-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 500px;
}

/* Feature Points */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.gift-section .feature-item:hover {
    border-color: rgba(0, 204, 255, 0.3);
}

.greeting-section .feature-item:hover {
    border-color: rgba(107, 184, 255, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gift-section .feature-icon {
    background: linear-gradient(135deg, rgba(107, 233, 255, 0.15), rgba(102,126,234,0.15));
}

.greeting-section .feature-icon {
    background: linear-gradient(135deg, rgba(213, 107, 255, 0.15), rgba(102,126,234,0.15));
}

.feature-icon i {
    font-size: 22px;
}

.gift-section .feature-icon i {
    background: linear-gradient(135deg, #2a8899, #5ad9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.greeting-section .feature-icon i {
    background: linear-gradient(135deg, #3fa8ff, #a466ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 6px 0;
}

.feature-content p {
    font-size: 14px;
    color: #888;
    margin: 0;
    line-height: 1.5;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gift-section .cta-btn {
    background: linear-gradient(135deg, #247185, #6bd5ff);
    color: #fff;
    box-shadow: 0 15px 40px rgba(71, 181, 255, 0.199);
}

.greeting-section .cta-btn {
    background: linear-gradient(135deg, #ff6b6b, #667eea);
    color: #fff;
    box-shadow: 0 15px 40px rgba(255,107,107,0.3);
}

.cta-btn:hover {
    transform: translateY(-5px);
    color: #fff;
}

.gift-section .cta-btn:hover {
    box-shadow: 0 20px 50px rgba(71, 197, 255, 0.4);
}

.greeting-section .cta-btn:hover {
    box-shadow: 0 20px 50px rgba(255,107,107,0.4);
}

.cta-btn i {
    transition: transform 0.3s;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.gift-section .stat-number {
    background: linear-gradient(135deg, #1b8b6f, #4a7fc5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.greeting-section .stat-number {
    background: linear-gradient(135deg, #ff6b6b, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive */
@media (max-width: 991px) {
    .card-section {
        padding: 70px 0;
    }
    
    .image-container {
        padding: 30px 20px;
        margin-bottom: 30px;
    }
    
    .stats-row {
        justify-content: center;
    }
    
    .greeting-section .row {
        flex-direction: column-reverse;
    }
}

@media (max-width: 576px) {
    .feature-item {
        padding: 15px 18px;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
    }
    
    .floating-icon i {
        font-size: 18px;
    }
    
    .stats-row {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}


/* Browse by category */
.gift-section {
    padding: 0px 0;
    position: relative;
    overflow: hidden;
}

.title-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1b8b6f, #4a7fc5);
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #1a1a2e;
}

.main-title span {
    background: linear-gradient(135deg, #1b8b6f, #4a7fc5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(0,0,0,0.05); */
}

.nav-btn:hover {
    background: linear-gradient(135deg, #1b8b6f, #4a7fc5);
    border-color: transparent;
    transform: scale(1.1);
}

.nav-btn:hover svg { fill: #fff; }
.nav-btn svg { fill: #333; transition: fill 0.3s; }

.gift-card {
    position: relative;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gift-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

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

.gift-card:hover img { transform: scale(1.1); }

.card-overlay1 {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
    transition: background 0.4s ease;
}

.gift-card:hover .card-overlay1 {
    background: linear-gradient(180deg, rgba(107, 255, 223, 0.1) 0%, rgba(0, 0, 0, 0.85) 100%);
}

.floating-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #a89916a6, #bdc54ab9);
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transform: translateY(-60px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gift-card:hover .floating-icon {
    transform: translateY(0);
    opacity: 1;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
    height: fit-content;
    place-self: end;
    justify-self: center;
}

.gift-card:hover .card-content { transform: translateY(0); }

.category-tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255,215,0,0.2);
    border: 1px solid rgba(255,215,0,0.4);
    border-radius: 50px;
    color: #fdfdfd;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.card-title1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-decoration: none;
    display: block;
    transition: color 0.3s;
}

.card-title:hover { color: #dbdbdb; }

.item-count {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.item-count i { color: #f8ff9a; }

.swiper-wrapper{
    padding: 20px 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #1b8b6f, #4a7fc5);
    border: none;
    border-radius: 50px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    /* box-shadow: 0 8px 25px rgba(107, 154, 255, 0.3); */
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(107, 154, 255, 0.3);
}

.view-all-btn i { transition: transform 0.3s; }
.view-all-btn:hover i { transform: translateX(5px); }

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1b8b6f, #4a7fc5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}













/* background animation */
.background-fixed{
    position: fixed;
    z-index: -9;
}
.card-display {
    position: relative;
    height: 600px;
    overflow: hidden;
}

/* Decorative Background */
.card-display::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,215,0,0.15) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    animation: bgPulse 6s ease-in-out infinite;
}

.card-display::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    animation: bgPulse 6s ease-in-out infinite 3s;
}

@keyframes bgPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0.8; }
}

/* Sparkles */
.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
}

.sparkle::before {
    width: 100%;
    height: 4px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 2px;
}

.sparkle::after {
    width: 4px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    border-radius: 2px;
}

.sparkle-1 {
    top: 15%;
    left: 30%;
    animation: sparkleAnim 2s ease-in-out infinite;
}

.sparkle-2 {
    top: 60%;
    right: 20%;
    animation: sparkleAnim 2s ease-in-out infinite 0.5s;
}

.sparkle-3 {
    bottom: 25%;
    left: 25%;
    animation: sparkleAnim 2s ease-in-out infinite 1s;
}

.sparkle-4 {
    top: 30%;
    right: 10%;
    animation: sparkleAnim 2s ease-in-out infinite 1.5s;
}

@keyframes sparkleAnim {
    0%, 100% { transform: scale(0) rotate(0deg); opacity: 0; }
    50% { transform: scale(1) rotate(90deg); opacity: 1; }
}

/* Floating Hearts */
.floating-heart {
    position: absolute;
    font-size: 20px;
    color: #ff6b6b;
    opacity: 0;
    animation: floatHeart 4s ease-in-out infinite;
}

.heart-1 { left: 20%; animation-delay: 0s; }
.heart-2 { left: 50%; animation-delay: 1s; }
.heart-3 { left: 80%; animation-delay: 2s; }
.heart-4 { left: 35%; animation-delay: 3s; }

@keyframes floatHeart {
    0% {
        bottom: -20px;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        bottom: 100%;
        opacity: 0;
        transform: translateX(30px) scale(1);
    }
}

/* Confetti Dots */
.confetti-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: confettiFall 6s linear infinite;
}

.dot-1 { left: 10%; background: #ffd700; animation-delay: 0s; }
.dot-2 { left: 25%; background: #ff6b6b; animation-delay: 1s; }
.dot-3 { left: 45%; background: #667eea; animation-delay: 2s; }
.dot-4 { left: 65%; background: #38ef7d; animation-delay: 3s; }
.dot-5 { left: 85%; background: #f093fb; animation-delay: 4s; }
.dot-6 { left: 55%; background: #ffd700; animation-delay: 5s; }

@keyframes confettiFall {
    0% {
        top: -10px;
        opacity: 1;
        transform: rotate(0deg) translateX(0);
    }
    100% {
        top: 100%;
        opacity: 0;
        transform: rotate(720deg) translateX(50px);
    }
}

/* Ribbon Decorations */
.deco-ribbon {
    position: absolute;
    width: 60px;
    height: 80px;
    overflow: hidden;
}

.deco-ribbon::before,
.deco-ribbon::after {
    content: '';
    position: absolute;
    width: 30px;
    background: linear-gradient(180deg, #ffd700, #ff6b6b);
    border-radius: 0 0 15px 15px;
}

.deco-ribbon::before {
    left: 0;
    height: 60px;
    animation: ribbonWave 2s ease-in-out infinite;
}

.deco-ribbon::after {
    right: 0;
    height: 50px;
    animation: ribbonWave 2s ease-in-out infinite 0.3s;
}

@keyframes ribbonWave {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.ribbon-1 {
    top: 0;
    left: 40%;
}

.ribbon-2 {
    top: 0;
    right: 20%;
    transform: scale(0.7);
}

/* Gift Box */
.gift-box {
    position: absolute;
    bottom: 5%;
    right: 25%;
    width: 50px;
    height: 50px;
    animation: giftBounce 3s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.gift-box-body {
    width: 100%;
    height: 40px;
    background: linear-gradient(135deg, #ff6b6b, #ffd700);
    border-radius: 5px;
    position: relative;
    margin-top: 10px;
}

.gift-box-body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%);
}

.gift-box-body::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 8px;
    background: rgba(255,255,255,0.3);
    transform: translateX(-50%);
}

.gift-box-lid {
    width: 110%;
    height: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ffd700);
    border-radius: 3px;
    position: absolute;
    top: 0;
    left: -5%;
    animation: lidBounce 3s ease-in-out infinite;
}

@keyframes lidBounce {
    0%, 40%, 100% { transform: translateY(0) rotate(0); }
    45%, 55% { transform: translateY(-10px) rotate(-10deg); }
}

.gift-box-bow {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 15px;
}

.gift-box-bow::before,
.gift-box-bow::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50% 50% 50% 0;
    top: 0;
}

.gift-box-bow::before {
    left: 0;
    transform: rotate(-45deg);
}

.gift-box-bow::after {
    right: 0;
    transform: rotate(45deg) scaleX(-1);
}

/* Envelope */
.envelope {
    position: absolute;
    top: 25%;
    left: 0;
    width: 70px;
    height: 50px;
    animation: envelopeFloat 5s ease-in-out infinite;
}

@keyframes envelopeFloat {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
}

.envelope-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #fff, #f8f6f3);
    border-radius: 5px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(145deg, #fff, #f0f0f0);
    clip-path: polygon(0 0, 50% 100%, 100% 0);
    transform-origin: top center;
    animation: flapOpen 5s ease-in-out infinite;
}

@keyframes flapOpen {
    0%, 30%, 100% { transform: rotateX(0deg); }
    50%, 80% { transform: rotateX(180deg); }
}

.envelope-flap::before {
    content: '';
    position: absolute;
    inset: 2px;
    background: linear-gradient(135deg, rgba(255,215,0,0.3), rgba(255,107,107,0.3));
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.envelope-heart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ff6b6b;
    font-size: 16px;
    animation: heartPop 5s ease-in-out infinite;
}

@keyframes heartPop {
    0%, 30%, 100% { transform: translate(-50%, -50%) scale(0); opacity: 0; }
    50%, 80% { transform: translate(-50%, -80%) scale(1); opacity: 1; }
}

/* Glow Ring */
.glow-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 320px;
    border: 2px dashed rgba(194, 179, 50, 0.267);
    border-radius: 100%;
    animation: ringRotate 20s linear infinite;
    pointer-events: none;
}

@keyframes ringRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.glow-ring::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255,215,0,0.5);
}





/* Home 3d Animation */

.animated-card-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fefefe00 0%, #f8f6f300 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.animated-card-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,215,0,0.08) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: bgFloat 15s ease-in-out infinite;
}

.animated-card-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,107,107,0.06) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation: bgFloat 15s ease-in-out infinite reverse;
}

@keyframes bgFloat {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(30px, 30px); }
}

/* Canvas Container */
.canvas-wrapper {
    position: relative;
    width: 100%;
    height: 650px;
    border-radius: 40px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f5f3f0 100%);
    box-shadow: 
        0 50px 100px rgba(0,0,0,0.08),
        0 20px 40px rgba(0,0,0,0.04),
        inset 0 0 0 1px rgba(255,255,255,0.8);
}

#card-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Loading */
.canvas-loader {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #ffffff 0%, #f5f3f0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.canvas-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255,215,0,0.2);
    border-top-color: #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.canvas-loader span {
    color: #999;
    font-size: 14px;
    margin-top: 20px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Interaction Hint */
.drag-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 14px 28px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 5;
    animation: hintBounce 2s ease-in-out infinite;
}

@keyframes hintBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-5px); }
}

.drag-hint i {
    font-size: 18px;
    background: linear-gradient(135deg, #ffd700, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: cursorDrag 2s ease-in-out infinite;
}

@keyframes cursorDrag {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(8px, 0) rotate(10deg); }
    75% { transform: translate(-8px, 0) rotate(-10deg); }
}

.drag-hint span {
    color: #666;
    font-size: 13px;
    font-weight: 500;
}

/* Card Info Badge */
.card-info-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 5;
}

.card-info-badge h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.card-info-badge span {
    font-size: 13px;
    color: #888;
}

/* Decorative Corner Elements */
.corner-decor {
    position: absolute;
    width: 100px;
    height: 100px;
    pointer-events: none;
    z-index: 5;
}

.corner-decor.top-right {
    top: 20px;
    right: 20px;
}

.corner-decor.bottom-left {
    bottom: 20px;
    left: 20px;
}

.corner-decor svg {
    width: 100%;
    height: 100%;
    opacity: 0.3;
}

/* Floating Particles CSS */
.css-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.css-particle {
    position: absolute;
    border-radius: 50%;
    animation: floatParticle 12s ease-in-out infinite;
}

.css-particle:nth-child(1) { width: 8px; height: 8px; background: #ffd700; left: 5%; top: 20%; animation-delay: 0s; }
.css-particle:nth-child(2) { width: 6px; height: 6px; background: #ff6b6b; left: 15%; top: 60%; animation-delay: 2s; }
.css-particle:nth-child(3) { width: 10px; height: 10px; background: #667eea; right: 10%; top: 30%; animation-delay: 4s; }
.css-particle:nth-child(4) { width: 7px; height: 7px; background: #38ef7d; right: 20%; top: 70%; animation-delay: 6s; }
.css-particle:nth-child(5) { width: 5px; height: 5px; background: #f093fb; left: 25%; top: 40%; animation-delay: 8s; }
.css-particle:nth-child(6) { width: 9px; height: 9px; background: #ffd700; right: 5%; top: 50%; animation-delay: 10s; }

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px) translateX(20px) scale(1.3);
        opacity: 0.8;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .canvas-wrapper {
        height: 500px;
        border-radius: 30px;
    }
}

@media (max-width: 576px) {
    .animated-card-section {
        padding: 40px 0;
    }
    
    .canvas-wrapper {
        height: 420px;
        border-radius: 24px;
    }
    
    .card-info-badge {
        top: 15px;
        left: 15px;
        padding: 12px 18px;
    }
    
    .card-info-badge h4 {
        font-size: 15px;
    }
    
    .drag-hint {
        bottom: 20px;
        padding: 10px 20px;
    }
}
