/* style.css */

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: linear-gradient(to bottom right, #e6f0ff, #f9fbfc);
    color: #222;
    line-height: 1.6;
}

header, .feature-card, .step, .template-card, footer {
    background: white;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

#animated-header {
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

#vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #3b5bdb, #040f38);
    opacity: 0.8;
    z-index: 1;
}

#animated-header h1, #animated-header p, #animated-header a {
    position: relative;
    z-index: 2;
}

.cta-button {
    background: white;
    color: #3b5bdb;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.25);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #eef4fa;
    transform: scale(1.05);
}

.section {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.section h2 {
    font-size: 28px;
    color: #3b5bdb;
    margin-bottom: 30px;
    text-align: center;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.feature-card, .step, .template-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 30px;
    flex: 1 1 280px;
    max-width: 320px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible, .step.visible, .template-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.icon-container {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #3b5bdb, #5e8aff);
    margin: 0 auto 16px;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
    transition: transform 0.3s ease;
}

.icon-container i {
    font-size: 28px;
    color: white;
}

.feature-card:hover .icon-container,
.template-card:hover .icon-container {
    transform: rotate(10deg) scale(1.1);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(to right, #3b5bdb, #5e8aff);
    color: white;
    font-size: 22px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.screenshot img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshot img:hover {
    transform: scale(1.02);
}

.templates-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
}

.template-buttons {
    text-align: center;
    margin-top: 40px;
}

.template-buttons a {
    text-decoration: none;
    margin: 0 10px;
}

footer {
    text-align: center;
    padding: 40px 20px;
    background: #f1f6fa;
    font-size: 14px;
    color: #777;
}

@media screen and (max-width: 768px) {
    .features {
        flex-direction: column;
        align-items: center;
    }
    .steps {
        padding: 0 20px;
    }
}
/* === Special Magic Button from Uiverse by MuhammadHasann === */
.magic-button {
    position: relative;
    padding: 12px 35px;
    background: #3b5bdb;
    font-size: 17px;
    font-weight: 1000;
    color: #ffffff;
    border: 3px solid #3b5bfb;
    border-radius: 8px;
    box-shadow: 0 0 0 #ffffff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }
  
  /* Replace all `button` with `.magic-button` in the rest of the code */
  
  .magic-button:hover {
    background: transparent;
    color: #ffffff;
    box-shadow: 0 0 55px #ffffff;
  }
  
  .magic-button .star-1, .magic-button .star-2, .magic-button .star-3,
  .magic-button .star-4, .magic-button .star-5, .magic-button .star-6 {
    position: absolute;
    width: auto;
    height: auto;
    filter: drop-shadow(0 0 0 #ffffff);
    z-index: -5;
    transition: all 1s ease;
  }
  
  .magic-button:hover .star-1,
  .magic-button:hover .star-2,
  .magic-button:hover .star-3,
  .magic-button:hover .star-4,
  .magic-button:hover .star-5,
  .magic-button:hover .star-6 {
    filter: drop-shadow(0 0 10px #ffffff);
    z-index: 2;
  }
  
  /* Add individual positioning and .fil0 class styles too */
  .fil0 { fill: #ffffff; }
  
  /* (include your original star-1 to star-6 styles here, just rename from `button` to `.magic-button`) */
  
  #hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow:
      0 0 5px #3b5bdb,
      0 0 10px #3b5bdb,
      0 0 20px #3b5bdb,
      0 0 40px #5e8aff,
      0 0 80px #7fbcff;
  }
 
@keyframes slideUp {
  from {
    transform: translate(-50%, 60px);
    opacity: 0;
  }
  to {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.sticky-cta-edge {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #3b5bdb;
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
  }
  
  .sticky-cta-edge:hover {
    background-color: #2748c7;
    transform: translateY(-3px);
  }
  
  
  .video-wrapper {
    position: relative;
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  }
  
  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
  }
  
  .template-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
  }
  
  .cta-link {
    text-decoration: none;
  }
  
  .cta-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 30px;
    background-color: white;
    color: #3b5bdb;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.25);
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #eef4fa;
    transform: scale(1.05);
    box-shadow: 0 6px 18px rgba(0, 119, 181, 0.3);
  }
  
  .cta-button i {
    font-size: 18px;
  }
  