body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f6f6f6;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 80px;
}

.logo {
    height: 75px;
}

.nav a {
    margin: 0 8px;
    padding: 8px 18px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    color: #444;
    background: #fff;
    text-decoration: none;
    transition: all 0.25s ease;
}

.nav a:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
}

.hero-left {
    max-width: 550px;
}

.hero-left h1 {
    font-size: 58px;
    line-height: 1.15;
    color: #444;
    font-weight: 600;
}

.hero-left p {
    font-size: 18px;
    color: #777;
    margin-top: 20px;
}

.cta {
    margin-top: 35px;
    padding: 18px 42px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(135deg, #ff7a18, #ffb347);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.35);
    transition: all 0.25s ease;
}

.cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.5);
}

.hero-right {
    position: relative;
    width: 550px;
    height: 550px;
}

.main-img {
    width: 100%;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.15));
}

.overlay-img {
    position: absolute;
    bottom: -10px;
    left: 5%;
    width: 150px;
    z-index: 1;
    opacity: 0.85;
}

.about {
    padding: 80px;
}

.about-container {
    max-width: 800px;
}

.coming {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
}

.subtext {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
}

.insta {
    width: 24px;
    margin-left: 10px;
    vertical-align: middle;
}

/* ONLY NEW ADDITION */
.pricing {
    text-align: center;
    padding: 80px;
}

.pricing h1 {
    font-size: 42px;
    margin-bottom: 40px;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card h2 {
    margin-bottom: 10px;
}

.card h3 {
    margin-bottom: 20px;
    color: #ff7a18;
}

.card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.card li {
    margin-bottom: 10px;
}

.featured {
    transform: scale(1.05);
    border: 2px solid #ffb347;
}


/* PRICING CTA ADDITIONS ONLY */
.tag {
    color: #ff7a18;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 600;
}

.order-section {
    margin-top: 60px;
}

.insta-link {
    display: inline-block;
    margin-top: 10px;
    font-weight: 600;
    color: #ff7a18;
    text-decoration: none;
}

.email {
    margin-top: 20px;
    color: #666;
}

.email-id {
    font-weight: 500;
}


/* FIX ALIGNMENT ISSUE */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: flex-start;
}

.card {
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}


/* FINAL ALIGNMENT FIX */
.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: stretch;
}

.card {
    width: 300px;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
}

/* Fix heading alignment */
.card h2 {
    margin-top: 10px;
}

/* Place Most Popular inline properly */
.tag {
    font-size: 12px;
    color: #ff7a18;
    font-weight: 600;
    margin-bottom: 5px;
}


/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .header { flex-direction: column; padding: 20px; gap: 12px; }
  .nav { display: flex; flex-wrap: wrap; justify-content: center; }
  .hero { flex-direction: column; padding: 20px; text-align: center; }
  .hero-left h1 { font-size: 32px; line-height: 1.2; }
  .hero-left p { font-size: 16px; }
  .cta { width: 100%; max-width: 320px; }
  .hero-right { width: 100%; height: auto; margin-top: 16px; }
  .main-img { width: 100%; }
  .overlay-img { width: 100px; left: 50%; transform: translateX(-50%); }
  .pricing-cards { flex-direction: column; align-items: center; }
  .card { width: 92%; max-width: 420px; }
  .about { padding: 24px; }
  .about-container { width: 100%; }
  .coming { padding: 20px; height: auto; }
}


/* FINAL MOBILE FIX */
@media (max-width: 768px) {

  .nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .nav a {
    margin: 5px;
    padding: 8px 14px;
  }

  .hero-right {
    position: relative;
    width: 100%;
    margin-top: 20px;
  }

  .main-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
  }

  .overlay-img {
    position: relative;
    width: 80px;
    margin-top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

}
@media (max-width:768px){
  .overlay-img{
    display:none !important;
  }
}