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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 105px; /* Account for fixed navbar when scrolling to anchors */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: black;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 3px 0; /* Minimal top and bottom padding */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px 0 0; /* Remove left padding to push logo to extreme left */
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 95px; /* Increased to accommodate larger logo */
}

/* .nav-logo {
    display: flex;
    align-items: center;
    padding-left: 0; 
} */

/* .nav-logo .logo {
    height: 90px; 
    width: auto;
    display: block;
    max-width: 320px; 
    object-fit: contain;
} */

.nav-logo .logo{
    height: 160px;
    margin-bottom: -77px;
    margin-top: -70px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    color: white;
}

.nav-link:hover {
    color: #4A9EFF;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #4A9EFF, #0066CC);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
}

.btn-secondary {
    background: rgba(74, 158, 255, 0.1);
    color: #4A9EFF;
    border: 2px solid #4A9EFF;
}

.btn-secondary:hover {
    background: #4A9EFF;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 2px solid #ddd;
}

.btn-outline:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(28, 29, 31, 0.95) 0%, rgba(86, 36, 208, 0.95) 100%);
    overflow: hidden;
    padding-top: 105px; /* Account for fixed navbar with larger logo */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;
    position: relative;
    z-index: 2;
    width: 100%;
    
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #4A9EFF, #00D4FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #4A9EFF;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #f8fafc;
    scroll-margin-top: 105px; /* Ensure proper spacing when scrolling to this section */
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.carousel-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.feature-card {
    min-width: 100%;
    padding: 50px;
    background: white;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2rem;
    color: white;
}

.card-icon.learn {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.card-icon.earn {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.card-icon.upskill {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.card-icon.platform {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.feature-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.feature-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.feature-list {
    list-style: none;
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 0;
    font-weight: 500;
    color: #333;
}

.feature-list .fas {
    color: #4A9EFF;
    font-size: 0.9rem;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #4A9EFF;
    transform: scale(1.2);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
    scroll-margin-top: 105px; /* Ensure proper spacing when scrolling to this section */
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.lead {
    font-size: 1.2rem;
    color: #4A9EFF;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.about-feature i {
    font-size: 1.5rem;
    color: #4A9EFF;
    margin-top: 5px;
}

.about-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.about-feature p {
    color: #666;
    margin: 0;
}

/* Partnership Highlight */
.partnership-highlight {
    margin: 2rem 0;
    padding: 0;
}

.partnership-badge {
    background: linear-gradient(135deg, #f8fafc 0%, #e8f4fd 100%);
    border: 2px solid #4A9EFF;
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partnership-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4A9EFF 0%, #0066CC 100%);
}

.partnership-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

.partnership-badge i {
    font-size: 2rem;
    color: #4A9EFF;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.partnership-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partnership-content h4::after {
    content: '🤝';
    font-size: 1rem;
}

.partnership-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.partnership-content strong {
    color: #4A9EFF;
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: #f8fafc;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4A9EFF, #0066CC);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: white;
    font-size: 1.2rem;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #4A9EFF;
    margin-bottom: 5px;
}

.stat-card .stat-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(28, 29, 31, 0.95) 0%, rgba(86, 36, 208, 0.95) 100%);
    color: white;
    scroll-margin-top: 105px; /* Ensure proper spacing when scrolling to this section */
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.contact-details span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo .logo {
    height: 160px;
    margin-bottom: -50px;
    margin-top: -70px;
}

.footer-logo p {
    color: #ccc;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4A9EFF;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #4A9EFF;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #4A9EFF;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #ccc;
}

/* Responsive Design - Handle all zoom levels and screen sizes */

/* Large screens and high zoom levels */
@media (min-width: 1400px) {
    html {
        scroll-padding-top: 115px;
    }
    
    .navbar {
        padding: 3px 0;
    }
    
    .nav-logo .logo {
        height: 160px;
        max-width: 350px;
        margin-top: -40px;
    }
    
    .nav-container {
        min-height: 110px;
    }
    
    .hero {
        padding-top: 115px;
    }
    
    .features-section,
    .about-section,
    .contact-section {
        scroll-margin-top: 115px;
    }
}

/* Medium to large screens */
@media (max-width: 1200px) {
    html {
        scroll-padding-top: 100px;
    }
    
    .navbar {
        padding: 3px 0;
    }
    
    .nav-logo .logo {
        height: 160px;
        max-width: 300px;
    }
    
    .nav-container {
        min-height: 90px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .features-section,
    .about-section,
    .contact-section {
        scroll-margin-top: 100px;
    }
}

/* Tablets and smaller laptops */
@media (max-width: 992px) {
    html {
        scroll-padding-top: 85px;
    }
    
    .navbar {
        padding: 3px 0;
    }
    
    .nav-logo .logo {
        height: 160px;
        max-width: 260px;
    }
    
    .nav-container {
        min-height: 80px;
        padding: 0 15px 0 0;
    }
    
    .hero {
        padding-top: 85px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .features-section,
    .about-section,
    .contact-section {
        scroll-margin-top: 85px;
    }
}

/* Mobile and tablets */
@media (max-width: 768px) {
    html {
        scroll-padding-top: 75px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .navbar {
        padding: 3px 0;
    }
    
    .nav-logo .logo {
        height: 160px;
        max-width: 230px;
    }
    
    .nav-container {
        min-height: 70px;
        padding: 0 10px 0 0;
    }
    
    .hero {
        padding-top: 75px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-section,
    .about-section,
    .contact-section {
        scroll-margin-top: 75px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    html {
        scroll-padding-top: 68px;
    }
    
    .navbar {
        padding: 2px 0;
    }
    
    .nav-logo .logo {
        height: 150px;
        max-width: 200px;
    }
    
    .nav-container {
        min-height: 65px;
        padding: 0 8px 0 0;
    }
    
    .hero {
        padding-top: 68px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .features-section,
    .about-section,
    .contact-section {
        scroll-margin-top: 68px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    html {
        scroll-padding-top: 62px;
    }
    
    .navbar {
        padding: 2px 0;
    }
    
    .nav-logo .logo {
        height: 160px;
        max-width: 180px;
    }
    
    .nav-container {
        min-height: 60px;
        padding: 0 5px 0 0;
    }
    
    .hero {
        padding-top: 62px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .features-section,
    .about-section,
    .contact-section {
        scroll-margin-top: 62px;
    }
}


/* ================= Mobile (≤ 768px) ================= */
@media (max-width: 768px) {
    .mobile-menu-btn {
      display: block;
      color: #fff;
    }
  
    /* Hide desktop menu layout on mobile */
    .nav-menu {
      display: none;                   /* hidden until toggled */
      position: fixed;
      top: 70px;                       /* below navbar */
      right: 16px;
      left: 16px;
      padding: 18px;
      background: rgba(7, 13, 25, 0.98);
      border: 1px solid #1f2a44;
      border-radius: 14px;
      box-shadow: 0 18px 40px rgba(0,0,0,0.35);
      z-index: 1100;
  
      /* Make it a vertical drawer */
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }
  
    /* When toggled on */
    .nav-menu.active {
      display: flex;                   /* show! */
      animation: slideDown .22s ease;
    }
  
    @keyframes slideDown {
      from { transform: translateY(-8px); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }
  
    /* Links look good on dark surface */
    .nav-link {
      color: #e9eefc;
      padding: 10px 12px;
      border-radius: 10px;
    }
    .nav-link:hover {
      background: rgba(255,255,255,0.06);
      color: #7eb8ff;
    }
  
    /* Buttons stretch full width on mobile */
    .nav-buttons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 4px;
    }
    .nav-buttons .btn { width: 100%; justify-content: center; }
  
    /* Hero + sections tweaks (kept from your file) */
    .hero-title { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .about-content { grid-template-columns: 1fr; gap: 40px; }
    .contact-content { grid-template-columns: 1fr; gap: 40px; }
    .footer-content { grid-template-columns: 1fr; gap: 30px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: 1fr; }
  }
  
  /* Tiny phones */
  @media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .section-title { font-size: 2rem; }
    .feature-card { padding: 30px 20px; }
    .container { padding: 0 15px; }
  }
  

/*
 ================= Footer Feature Showcase ================= */
.footer-feature-showcase {
    position: relative;
}

.footer-feature-showcase h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.showcase-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 12px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.showcase-item:hover::before {
    left: 100%;
}

.showcase-item:hover {
    transform: translateY(-4px) scale(1.05);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3);
}

.showcase-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    font-size: 20px;
    color: white;
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

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

.showcase-item:nth-child(1) .showcase-icon {
    animation-delay: 0s;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.showcase-item:nth-child(2) .showcase-icon {
    animation-delay: 0.2s;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.showcase-item:nth-child(3) .showcase-icon {
    animation-delay: 0.4s;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.showcase-item:nth-child(4) .showcase-icon {
    animation-delay: 0.6s;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.showcase-item:hover .showcase-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
}

.showcase-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: #e0e0e0;
    text-align: center;
    transition: all 0.3s ease;
}

.showcase-item:hover span {
    color: #ffffff;
    font-weight: 600;
}

.showcase-tagline {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    font-style: italic;
    margin-top: 8px;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Add sparkle effect */
.showcase-item::after {
    content: '✨';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.showcase-item:hover::after {
    opacity: 1;
    animation: sparkle 0.6s ease-in-out;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.3) rotate(180deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .showcase-item {
        padding: 14px 10px;
    }
    
    .showcase-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
    
    .showcase-item span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .feature-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .showcase-item {
        padding: 12px 8px;
    }
    
    .showcase-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .showcase-item span {
        font-size: 0.75rem;
    }
}
