
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; background: #f8fafc; color: #0f172a; line-height: 1.6; }
    a { text-decoration: none; color: inherit; }

    header { background: #0f172a; color: #fff; padding: 20px 40px; position: sticky; top: 0; z-index: 100; }
    nav { display: flex; justify-content: space-between; align-items: center; }
    nav ul { list-style: none; display: flex; gap: 20px; }
    nav li a:hover { color: #facc15; }
    .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 38px;        /* Ideal size */
  width: auto;
  border-radius: 50%;
  display: block;
}

/* .logo span {
  font-size: 11px;
  color: #cbd5f5;
  display: block;
  line-height: 1.2;
} */


    /* .hero { background: linear-gradient(rgba(15,23,42,0.7),rgba(15,23,42,0.7)), url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1?auto=format&fit=crop&w=1950&q=80') center/cover; padding: 120px 40px; color: #fff; text-align: center; }
    .hero h1 { font-size: 44px; margin-bottom: 15px; }
    .hero p { font-size: 18px; max-width: 700px; margin: auto; }
    .btn { display: inline-block; margin-top: 30px; padding: 14px 28px; background: #facc15; color: #0f172a; font-weight: 600; border-radius: 6px; } */
.hero-slider {
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  background: #0f172a;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}



.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.75),
    rgba(15, 23, 42, 0.55)
  );
}

.cta-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;

  padding: 12px 22px;
  background: linear-gradient(135deg, #facc15, #fde047);
  color: #0f172a;
  font-weight: 700;
  font-size: 15px;

  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(250, 204, 21, 0.3);
  transition: all 0.25s ease;
  text-align: center;

  width: fit-content;          /* 🔥 KEY LINE */
  max-width: 100%;             /* safety */
}
.hero-cta {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}


.cta-btn span {
  font-size: 11px;                 /* 👈 smaller subtext */
  font-weight: 500;
  color: #3f3f46;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(250, 204, 21, 0.4);
}

.cta-btn:active {
  transform: scale(0.97);
}


.cta-btn span {
  font-size: 12px;
  font-weight: 500;
  color: #3f3f46;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(250, 204, 21, 0.45);
}

.cta-btn:active {
  transform: scale(0.96);
}

.slide.active {
  opacity: 1;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15, 23, 42, 0.6);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.2s ease;
}

.slider-arrow.left {
  left: 20px;
}

.slider-arrow.right {
  right: 20px;
}

.slider-arrow:hover {
  background: rgba(250, 204, 21, 0.9);
  color: #0f172a;
}

/* Hide arrows on very small screens if needed */
@media (max-width: 480px) {
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
}
.hero-slider .slider-arrow {
  opacity: 0;
}

.hero-slider:hover .slider-arrow {
  opacity: 1;
}

/* HERO TEXT */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 900px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  p {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}
}

.hero-content h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  color: #e5e7eb;
  margin-bottom: 30px;
}

@media(max-width:768px) {
  .hero-slider { height: 70vh; }
  .hero-content h1 { font-size: 30px; }
  .hero-content p { font-size: 16px; }
}

    section { padding: 80px 40px; max-width: 1200px; margin: auto; }
    .section-title { text-align: center; margin-bottom: 50px; }
    .section-title h2 { font-size: 32px; }

    .cards { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 30px; }
    .card { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }

    .price-box { background: #fff; padding: 30px; border-radius: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); text-align: center; }
    .price { font-size: 42px; font-weight: 700; }

    footer { background: #020617; color: #94a3b8; padding: 40px; text-align: center; }

    @media(max-width:768px) {
      .hero h1 { font-size: 32px; }
      section { padding: 60px 20px; }
    }


/* blog page */

.blog-page {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
}

.blog-card {
  background: #fff;
  padding: 24px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.blog-card img {
  width: 100%;
  border-radius: 8px;
  margin: 15px 0;
}

.blog-card .date {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 10px;
}

.blog-preview {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
}

.blog-preview img {
  max-width: 100%;
  border-radius: 10px;
  margin: 20px 0;
}

.blog-date {
  color: #94a3b8;
  font-size: 14px;
}

.preview-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #facc15;
  color: #0f172a;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.device-toggle {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.device-toggle button {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid #94a3b8;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.device-toggle button.active {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}
.desktop-preview {
  max-width: 100%;
}

.mobile-preview {
  max-width: 375px;
  margin: auto;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#ayush {
 background-color: white;
}

#ayush:hover{
  background-color: #facc15;
}

#why-alpha{
  margin-top: 20px;
  padding-top: 20px;
}

.core-offering {
  padding: 80px 20px;
  background: #f8fafc;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.section-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  color: #475569;
}

.offering-grid {
  max-width: 1100px;
  margin: 50px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.offering-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.offering-card:hover {
  transform: translateY(-6px);
}

.offering-card h3 {
  margin-bottom: 14px;
  font-size: 18px;
}

.offering-card ul {
  padding-left: 18px;
}

.offering-card li {
  margin-bottom: 10px;
  color: #334155;
}

.offering-footer {
  max-width: 900px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.validity-box,
.pricing-box {
  background: #0f172a;
  color: #e5e7eb;
  padding: 30px;
  border-radius: 16px;
}

.validity-box h4,
.pricing-box h4 {
  margin-bottom: 12px;
}

.price {
  margin: 10px 0;
}

.old-price {
  text-decoration: line-through;
  color: #94a3b8;
  margin-right: 10px;
}

.new-price {
  font-size: 32px;
  font-weight: bold;
  color: #facc15;
}

.offer-note {
  font-size: 14px;
  margin-bottom: 20px;
}

.primary-cta {
  display: inline-block;
  background: #facc15;
  color: #0f172a;
  padding: 14px 22px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.primary-cta:hover {
  background: #eab308;
}

/* Responsive */
@media (max-width: 768px) {
  .offering-footer {
    grid-template-columns: 1fr;
  }
}
