
@font-face {
    font-family: 'Absolute Xero';
    src: url('Fonts/Absolute Xero.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

.custom-font {
    font-family: 'Absolute Xero', sans-serif;
    font-size: 0.85em;
    display: inline-block;
    opacity: 0; /* Start hidden */
    transition: opacity 1.5s ease;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.custom-font.visible {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .custom-font {
        font-size: 0.85em;
    }
}



/* Enhanced Feature Section Styles */
.feature-section {
    min-height: 100vh;
    background: #F8F9FA;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
}

.feature-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 4rem;
    text-align: center;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Product Showcase with Larger Image */
.product-showcase {
    display: flex;
    width: 100%;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 3rem;
    border: 1px solid #E5E7EB;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.showcase-image-container {
    flex: 1.8; /* Increased from 1.2 to make image larger */
    position: relative;
}

.showcase-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.5s ease;
}

.showcase-image:hover {
    transform: scale(1.03) rotate(-1deg);
}

.image-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(255, 107, 107, 0.4);
}

.showcase-details {
    flex: 1;
}

.showcase-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1F2937;
    line-height: 1.2;
}

.feature-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    color: #6B7280;
}

.feature-list li i {
    color: #6b73ff;
    margin-right: 10px;
    font-size: 1.2rem;
}

.showcase-description {
    color: #6B7280;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.showcase-actions {
    display: flex;
    gap: 1rem;
}

.feature-cta-primary {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff8e53 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(255, 107, 107, 0.3);
}

.feature-cta-secondary {
    background: transparent;
    border: 2px solid #6366f1;
    border-radius: 8px;
    color: #6366f1;
    font-weight: 600;
    padding: 12px 24px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-cta-secondary:hover {
    background: #6366f1;
    color: white;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-showcase {
        flex-direction: column;
        padding: 2rem;
    }

    .showcase-image-container {
        width: 100%; /* Ensure full width on tablet */
        margin-bottom: 2rem;
    }

    .showcase-title {
        font-size: 1.8rem;
    }

    .feature-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .showcase-actions {
        flex-direction: column;
        width: 100%;
    }

    .feature-heading {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 576px) {
    .feature-section {
        padding: 60px 15px;
    }

    .product-showcase {
        padding: 1.5rem;
    }

    .showcase-title {
        font-size: 1.5rem;
    }
}