/* ---------------- Reset & Base ---------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: 'Poppins', sans-serif;
  width: 100%;
  height: 100%;
  background: #0b0c1a;
  color: #fff;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

img {
  display: block;
  max-width: 100%;
}


/* ===============================
   HERO SECTION
=============================== */
.pricing-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  text-align: center;
  overflow: hidden;
}

/* Background Image */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Starfield Canvas */
#starfield {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  top: 25%; /* moves up */
  transform: translateY(-50%);
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 64px;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(33.64deg, #0B639A 10%, #FFFFFF 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  
}

.hero-subtitle {
  font-size: 19px;
  color: #ddd;
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.outline-button {
  display: inline-block;
  padding: 12px 40px;
  font-size: 22px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  background: transparent;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
}

/* Hover Effect */
.outline-button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

/* ===============================
   ELLIPSE TRANSITION
=============================== */
.ellipse-transition {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: -360px; /* keep same or adjust slightly if needed */
  z-index: 3;
}

.ellipse-transition .ellipse-img {
  width: 100%;
  margin-top: -5%;
  display: block;
  object-fit: cover;
  transform: translateY(45%); /* ⬇️ moved further down from 40% */
}

/* ===============================
   PROCESS SECTION
=============================== */

.process-section {
  width: 100%;
  padding: 100px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  background: none;
  position: relative;
  margin-top: -300px; /* ⬆️ moved higher */
  z-index: 3;
}

/* Layout for the first row */
.process-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

/* Left column (header + step 1) */
.process-left {
  flex: 1;
  min-width: 320px;
}

.process-header h2 {
  font-size: 18px;
  color: #7da6ff;
  margin-bottom: 10px;
  font-weight: 600;
}

.process-header h3 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
  background: linear-gradient(33.64deg, #0B639A 18.98%, #FFFFFF 26.46%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-header p {
  color: #aaa;
  font-size: 16px;
  margin-bottom: 40px;
}

/* Card design (no hover effects) */
.process-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 25px 30px;
  transition: none; /* ❌ remove hover animation */
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
}

.process-card h4 {
  font-size: 14px;
  color: #aaa;
  text-align: right;
  margin-bottom: 5px;
}

.process-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 15px;
  line-height: 1.6;
}

.process-card ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.process-card ul li {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13px;
  color: #ccc;
}

/* Right column image */
.process-image {
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.process-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.1);
}

/* Grid for Step 2 & 3 */
.process-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap; /* ✅ keeps cards in one row */
  margin-top: 60px;
  max-width: 1200px;
  width: 100%;
}



/* ===============================
   PRICING SECTION
=============================== */
.pricing-section {
  text-align: center;
  color: #fff;
  padding: 120px 80px;
  background: none;
  margin-top: -320px; /* 🎯 moves section upward */
}


.pricing-description h2 {
  font-size: 36px;
  background: linear-gradient(33.64deg, #0B639A 18.98%, #FFFFFF 26.46%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-description p {
  max-width: 600px;
  margin: 20px auto 60px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}

/* ===============================
   PLAN LAYOUT
=============================== */
.plans {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap; /* side-by-side layout */
}

/* ===============================
   PLAN CARD STYLES
=============================== */
.plan {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  width: 300px;
  text-align: center;
  transition: all 0.35s ease;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  position: relative;
}

/* Hover effect — subtle lift + glow */
.plan:hover {
  transform: translateY(-15px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 30px rgba(92, 124, 230, 0.4);
  border-color: #5C7CE6;
}

/* Text elements */
.plan h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.plan .price {
  font-size: 36px;
  margin: 10px 0;
}

.plan p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 20px;
}

.plan ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
}

.plan ul li {
  font-size: 14px;
  color: #aaa;
  margin: 8px 0;
}

.more-info-btn {
  margin-top: 20px;
  padding: 10px 24px;
  border: 1px solid #5C7CE6;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none; /* removes underline */
  display: inline-block; /* ensures padding works on <a> */
  text-align: center; /* centers text inside button */
}

.more-info-btn:hover {
  background: #5C7CE6;
}


/* ===============================
   RECOMMENDED PRO PLAN
=============================== */
.pro-plan {
  background: rgba(92, 124, 230, 0.08);
  transform: scale(1.05); /* stays slightly emphasized */
  position: relative;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.4); /* subtle orange glow */
  transition: none; /* no movement on hover */
}

/* Horizontal Ribbon */
.pro-plan::before {
  content: "RECOMMENDED";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #FF7A00, #FFA500); /* orange gradient */
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 1px;
  padding: 6px 0;
  z-index: 5;
  box-shadow: 0 2px 10px rgba(255, 165, 0, 0.3);
}

/* Keep it stable (no hover movement) */
.pro-plan:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(255, 165, 0, 0.4);
}


/* ===============================
   ICON COLORS
=============================== */
.love-symbol {
  color: #7CFC00;
  font-size: 20px;
  margin-left: 6px;
}

.sparkle-symbol {
  color: #FFD700;
  font-size: 20px;
  margin-left: 6px;
}

.premium-icon {
  color: #5C7CE6;
  font-size: 22px;
  margin-right: 6px;
}

/* Optional decorative images (keep hidden or minimal) */
.decorative-left,
.decorative-right {
  display: none;
}

/* ===============================
   SCROLL INDICATOR (Mouse + Arrow)
=============================== */
.scroll-indicator {
  position: absolute;
  left: 50%;
  transform: translateX(calc(-50% + 1px)); /* shifted 2px right */
  bottom:120px; /* adjust if needed */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 1.5s ease-in-out;
}


/* Mouse outline */
.scroll-indicator .mouse {
  width: 28px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding-top: 6px;
}

/* Inner moving wheel */
.scroll-indicator .wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  animation: wheelMove 1.5s infinite;
  opacity: 0.8;
}

/* Down arrow */
.scroll-indicator .down-arrow {
  font-size: 22px;
  color: #fff;
  animation: bounceArrow 2s infinite;
  opacity: 0.8;
}

/* Wheel animation */
@keyframes wheelMove {
  0% { transform: translateY(0); opacity: 0.8; }
  50% { transform: translateY(8px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 0.8; }
}

/* Arrow bounce animation */
@keyframes bounceArrow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Optional smooth fade-in */
@keyframes fadeInUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

.ornament-divider {
  position: relative;
  width: 100%;
  height: 180px; /* adjust based on image */
  background: transparent;
  overflow: visible;
  z-index: 3;
}

.ornament-left {
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(-30px); /* adjust to control overlap */
  width: 220px; /* adjust as needed */
  height: auto;
  opacity: 0.9;
  pointer-events: none;
}

/* Styles for the price block */
        .promo-price-gpt {
            font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
            color: #111;
            display: inline-block;
            text-align: left;
            line-height: 1;
            padding: 6px 8px;
        }

        /* Top row aligns original and current price on same baseline */
        .price-top-gpt {
            display: flex;
            align-items: baseline;
            gap: 14px;
        }

        /* Original price (muted & struck-through) */
        .original-price-gpt {
            color: #9aa0a6;
            /* grey */
            font-weight: 600;
            font-size: 20px;
            position: relative;
            display: inline-flex;
            align-items: center;
        }

        /* Add thin strike line */
        .original-price-gpt::after {
            content: "";
            position: absolute;
            height: 2px;
            background: currentColor;
            width: 100%;
            left: 0;
            top: 50%;
            transform: translateY(-50%) rotate(-6deg);
            /* slightly tilted like screenshot */
            opacity: 0.9;
        }

        /* small rupee before original amount */
        .currency-small-gpt {
            font-size: 14px;
            margin-right: 4px;
            vertical-align: baseline;
        }

        /* original numeric */
        .orig-amount-gpt {
            font-size: 20px;
            letter-spacing: -0.5px;
        }

        /* Current price block */
        .current-price-gpt {
            display: flex;
            align-items: baseline;
            gap: 8px;
        }

        .price-card-gpt {
            font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
            display: inline-block;
            text-align: left;
            color: #fff;
            padding: 0px;
            border-radius: 8px;
            background: transparent;
            /* change to #fff or another color if you want a card */
        }

        /* row holding symbol, amount and per-month text */
        .price-row-gpt {
            display: flex;
            align-items: baseline;
            gap: 10px;
        }

        /* rupee symbol */
        .currency-gpt {
            font-size: 24px;
            line-height: 1;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.7);
            margin-right: 2px;
        }

        /* main amount */
        .amount-gpt {
            font-size: 48px;
            /* large number like the screenshot */
            font-weight: 700;
            line-height: 1;
            letter-spacing: -1px;
        }

        /* small per-month text */
        .per-gpt {
            font-size: 12.5px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            margin-left: 6px;
            align-self: flex-end;
            padding-bottom: 6px;
            /* visually align with amount baseline */
        }

        /* Responsive tuning */
        @media (max-width: 420px) {
            .amount-gpt {
                font-size: 36px;
            }

            .currency-gpt {
                font-size: 20px;
            }

            .per-gpt {
                font-size: 11px;
                padding-bottom: 4px;
            }

            .price-card-gpt {
                padding: 14px;
            }
          
            .orig-amount-gpt {
                font-size: 16px;
            }

            .amount-large-gpt {
                font-size: 28px;
            }

            .currency-large-gpt {
                font-size: 18px;
            }

            .per-small-gpt {
                font-size: 11px;
                padding-bottom: 3px;
            }
        }