/* --- CSS STYLES --- */
:root {
  --bg-dark: #030014;
  --primary-gradient: linear-gradient(90deg, #d946ef 0%, #0ea5e9 100%);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-dim: #a1a1aa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  /* Subtle film reel background effect */
  background-image:
    radial-gradient(
      circle at 10% 20%,
      rgba(217, 70, 239, 0.05) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(14, 165, 233, 0.05) 0%,
      transparent 40%
    );
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
header {
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-gradient);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.95rem;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  background: var(--primary-gradient);
  color: white;
  padding: 10px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
}

/* Hero Section */
.hero {
  padding: 100px 0 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.badge {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge span {
  color: #d946ef;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.gradient-text {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: var(--text-dim);
  max-width: 650px;
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 80px;
}

.btn-main {
  background: var(--primary-gradient);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s;
}

.btn-outline {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-main:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  max-width: 900px;
}

.stat-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.stat-info h3 {
  font-size: 1.5rem;
  font-weight: 800;
}

.stat-info p {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin: 0;
}

/* Floating Action */
.whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #22c55e;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
  cursor: pointer;
  z-index: 1000;
}

/* Hamburger Menu (Mobile) */
.menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* 2nd part section css  */

.about-section {
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content .section-tag {
  color: #d946ef;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
}

.about-content h2 {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 25px;
}

.about-content p {
  color: var(--text-dim);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.7;
}

/* Cards Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 20px;
  transition: 0.3s;
}

.feature-card:hover {
  border-color: rgba(217, 70, 239, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.f-icon {
  width: 40px;
  height: 40px;
  background: rgba(147, 51, 234, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #d946ef;
}

.feature-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* 2nd part section css  */
/* 3rd part section css  */
/* --- Services Section CSS --- */
.services-section {
  padding: 100px 0;
  text-align: center;
}

.services-header {
  margin-bottom: 60px;
}

.services-header .section-tag {
  color: #d946ef;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.services-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 Columns */
  gap: 20px;
}

.service-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 25px;
  border-radius: 24px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Highlighted card effect (like Shorts & Reels in screenshot) */
.service-card.highlight {
  border-color: rgba(217, 70, 239, 0.4);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 30px rgba(217, 70, 239, 0.1);
}

.service-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(14, 165, 233, 0.4);
}

.s-icon-box {
  width: 45px;
  height: 45px;
  background: var(--primary-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 1.2rem;
  color: white;
}

.service-card h4 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.service-card p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
}
/* 3rd part section css  */
/* 4th part section css  */
/* --- Portfolio Section CSS --- */
.portfolio-section {
  padding: 80px 0;
  text-align: center;
}

.portfolio-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 30px;
}

/* Tab Switcher */
.portfolio-tabs {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 50px;
}

.tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--text-dim);
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tab-btn.active {
  background: var(--primary-gradient);
  color: white;
  box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.portfolio-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  text-align: left;
  transition: 0.3s;
}

.portfolio-card:hover {
  border-color: rgba(217, 70, 239, 0.5);
  transform: translateY(-5px);
}

/* Thumbnail Area */
.video-thumbnail {
  height: 250px;
  background: #111;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(45deg, #0f0c29, #302b63);
}

.play-btn {
  width: 60px;
  height: 60px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(217, 70, 239, 0.4);
}

.video-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Card Content */
.card-info {
  padding: 25px;
}

.card-info h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card-info p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Highlighted Center Card */
.portfolio-card.featured {
  border-color: rgba(217, 70, 239, 0.4);
  box-shadow: 0 0 40px rgba(217, 70, 239, 0.1);
}

/* 4th part section css  */
/* 4th part section css  */
/* --- Why Neonest Section CSS --- */
.advantage-section {
  padding: 80px 0;
  text-align: center;
}

.advantage-header {
  margin-bottom: 50px;
}

.advantage-header .section-tag {
  color: #d946ef;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}

.advantage-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Desktop: 4 Cards */
  gap: 20px;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 20px;
  border-radius: 20px;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.advantage-card:hover {
  border-color: rgba(217, 70, 239, 0.3);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-5px);
}

.adv-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(217, 70, 239, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #d946ef;
  font-size: 1.4rem;
}

.advantage-card h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.advantage-card p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
}
/* 4th part section css  */
/* 4th part section css  */

/* 4th part section css  */

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 600px) {
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-main,
  .btn-outline {
    text-align: center;
    justify-content: center;
  }
  .hero {
    padding: 60px 0;
  }
}

/* 2nd section css responsive  */
/* Mobile Responsive */
@media (max-width: 992px) {
  .about-section {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 40px;
  }
  .about-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}
/* 2nd section css responsive  */
/* 3rd section css responsive  */
/* --- Responsive (Mobile Me Ek Row Me 2 Box) --- */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Tablets/Small Laptops: 2 Columns */
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 Columns as requested */
    gap: 12px; /* Thoda gap kam mobile ke liye */
  }

  .service-card {
    padding: 20px 15px; /* Mobile par padding kam */
  }

  .service-card h4 {
    font-size: 1rem; /* Chota font mobile ke liye */
  }

  .service-card p {
    font-size: 0.75rem;
  }
}

@media (max-width: 400px) {
  /* Bahut chote phones ke liye single column kar sakte hain agar content overlap ho */
  /* .services-grid { grid-template-columns: 1fr; } */
}
/* 3rd section css responsive  */
/* 4th section css responsive  */
/* Mobile Responsive */
@media (max-width: 992px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .portfolio-grid {
    grid-template-columns: 1fr; /* Mobile me 1 column for better view */
  }
  .portfolio-tabs {
    flex-wrap: wrap;
    border-radius: 20px;
    justify-content: center;
  }
}

/* 4th section css responsive  */
/* 4th section css responsive  */
/* --- Mobile Responsive (2 Cards per row) --- */
@media (max-width: 992px) {
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr); /* Tablet: 2 Cards */
  }
}

@media (max-width: 600px) {
  .advantage-grid {
    grid-template-columns: repeat(2, 1fr); /* Mobile: 2 Cards */
    gap: 12px;
  }

  .advantage-card {
    padding: 25px 15px;
  }

  .advantage-card h4 {
    font-size: 0.95rem;
  }

  .advantage-card p {
    font-size: 0.75rem;
  }
}
/* 4th section css responsive  */
/* 4th section css responsive  */
/* Mobile Responsive */

/* --- Pricing Section CSS --- */
.pricing-section {
  padding: 100px 0;
  text-align: center;
}

.pricing-header {
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 15px;
}

.pricing-header p {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: flex-start;
}

.price-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 24px;
  text-align: left;
  position: relative;
  transition: 0.3s ease;
}

/* Most Popular Card Highlight */
.price-card.popular {
  border-color: rgba(217, 70, 239, 0.5);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 40px rgba(217, 70, 239, 0.15);
  transform: scale(1.05);
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-grad);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 800;
  color: white;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.price-card p.desc {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 25px;
  height: 40px;
}

.price-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  display: block;
}

.price-value span {
  font-size: 1rem;
  color: var(--text-dim);
  font-weight: 400;
}

.features-list {
  list-style: none;
  margin-bottom: 35px;
}

.features-list li {
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
}

.features-list li::before {
  content: "✓";
  color: #d946ef;
  font-weight: 900;
}

.btn-order {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.popular .btn-order {
  background: var(--primary-grad);
  border: none;
  box-shadow: 0 4px 15px rgba(217, 70, 239, 0.3);
}

.book-call {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: var(--text-dim);
  font-size: 0.85rem;
  text-decoration: none;
}

.book-call:hover {
  color: white;
}

/* --- Responsive Pricing --- */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .price-card.popular {
    transform: scale(1);
  }
}

@media (max-width: 650px) {
  .pricing-grid {
    grid-template-columns: 1fr; /* Mobile me cards bade dikhne chahiye */
    gap: 40px;
  }
}
/* 4th section css responsive  */

/* Header Styles */
.subtitle {
  color: #a855f7;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 600;
  margin-bottom: 10px;
}

h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.gradient-text {
  background: linear-gradient(to right, #d8b4fe, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  color: #94a3b8;
  max-width: 500px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* Card Design */
.card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.1); /* Subtle purple glow */
  max-width: 500px;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* WhatsApp Icon in Circle */
.icon-circle {
  width: 70px;
  height: 70px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px auto;
}

.icon-circle img {
  width: 35px;
}

.card h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

.card p {
  color: #94a3b8;
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 1.5;
}

/* Button Design */
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #22c55e;
  color: white;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.whatsapp-btn:hover {
  background-color: #16a34a;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

.whatsapp-btn img {
  width: 20px;
  filter: brightness(0) invert(1); /* Makes icon white */
}

/* --- Responsive Mobile --- */
@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  .card {
    padding: 40px 20px;
  }

  .description {
    font-size: 14px;
  }
}

/* Footer Container */
.footer {
  background-color: #0b0512;
  padding: 60px 5% 30px 5%;
  border-top: 1px solid transparent;
  /* This creates that subtle purple/teal top border line */
  border-image: linear-gradient(to right, #a855f7, #06b6d4) 1;
  color: white;
}

/* Top Section Layout */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; /* Important for mobile */
  gap: 30px;
  margin-bottom: 50px;
}

/* Brand Section */
.logo-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo {
  width: 32px;
  height: 32px;
}

.brand-name {
  font-size: 22px;
  font-weight: 700;
}

.purple-text {
  color: #a855f7;
  /* Add a slight glow */
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.footer-tagline {
  color: #94a3b8;
  max-width: 350px;
  font-size: 15px;
  line-height: 1.5;
}

/* Social Icons */
.footer-socials {
  display: flex;
  gap: 25px;
}

.footer-socials a {
  color: #94a3b8;
  font-size: 20px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-socials a:hover {
  color: white;
  transform: translateY(-3px);
}

/* Copyright Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #64748b;
  font-size: 14px;
}

/* --- Responsive Mobile Footer --- */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-group {
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-tagline {
    max-width: 100%;
  }
}

/* whatsapp */
/* whatsapp */
/* Prefix 'whatsapp-' added to all classes to avoid conflicts */

.whatsapp-container {
  text-align: center;
  max-width: 800px;
  width: 100%;
  margin: 0 auto; /* Centering if placed inside another div */
}

/* Header Styles */
.whatsapp-header-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: white;
}

.whatsapp-purple-text {
  color: #c084fc;
  text-shadow: 0 0 15px rgba(192, 132, 252, 0.5);
}

.whatsapp-blue-text {
  color: #38bdf8;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.5);
}

.whatsapp-header-text p {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 50px;
  line-height: 1.6;
}

/* Card Styles */
.whatsapp-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
}

.whatsapp-card:hover {
  transform: translateY(-5px);
}

.whatsapp-icon-circle {
  background: rgba(34, 197, 94, 0.1);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.whatsapp-icon-circle img {
  width: 40px;
  /* This filter makes the icon green like the image */
  filter: invert(48%) sepia(79%) saturate(2476%) hue-rotate(119deg)
    brightness(98%) contrast(101%);
}

.whatsapp-card-title {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
}

.whatsapp-card-desc {
  color: #94a3b8;
  margin-bottom: 35px;
  max-width: 450px;
}

/* Button Styles */
.whatsapp-main-btn {
  background-color: #22c55e;
  color: white !important; /* Ensure text remains white */
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
  transition: all 0.3s ease;
  border: none;
}

.whatsapp-main-btn:hover {
  background-color: #16a34a;
  box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
}

/* WhatsApp icon inside button white color */
.whatsapp-main-btn img {
  filter: brightness(0) invert(1);
}

/* --- Responsive Design --- */
@media (max-width: 600px) {
  .whatsapp-header-text h1 {
    font-size: 2.2rem;
  }

  .whatsapp-card {
    padding: 40px 20px;
  }

  .whatsapp-card-title {
    font-size: 1.5rem;
  }

  .whatsapp-main-btn {
    width: 100%;
    justify-content: center;
  }
}
/* whatsapp */
/* whatsapp */

/* Pricing Section Specific Styles */
.pric-section {
  background: #020818;
  padding: 60px 20px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.pric-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.pric-header {
  margin-bottom: 50px;
}

.pric-logo {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.pric-logo span {
  color: #00d2ff;
}

.pric-sub-title {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.8;
  letter-spacing: 1px;
}

/* Grid System */
.pric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Glassmorphism Cards */
.pric-glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 25px;
  transition: 0.4s ease;
  position: relative;
}

.pric-glass-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
}

/* Glow Borders */
.pric-blue {
  border-bottom: 3px solid #00d2ff;
  box-shadow: 0 10px 30px rgba(0, 210, 255, 0.1);
}
.pric-purple {
  border-bottom: 3px solid #9d50bb;
  box-shadow: 0 10px 30px rgba(157, 80, 187, 0.1);
}
.pric-pink {
  border-bottom: 3px solid #ff00cc;
  box-shadow: 0 10px 30px rgba(255, 0, 204, 0.1);
}

/* Card Content Updates */
.pric-icon-box {
  font-size: 45px;
  margin-bottom: 20px;
}
.pric-blue .pric-icon-box {
  color: #00d2ff;
}
.pric-purple .pric-icon-box {
  color: #9d50bb;
}
.pric-pink .pric-icon-box {
  color: #ff00cc;
}

.pric-plan-name {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.pric-amount {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 25px;
}

.pric-features {
  list-style: none;
  padding: 0;
  text-align: left;
  display: inline-block;
}

.pric-features li {
  margin-bottom: 15px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d1d1d1;
}

/* Feature Icons Color */
.pric-blue .pric-features li i {
  color: #00d2ff;
}
.pric-purple .pric-features li i {
  color: #9d50bb;
}
.pric-pink .pric-features li i {
  color: #ff00cc;
}

.pric-footer-text {
  margin-top: 40px;
  font-size: 1.1rem;
  opacity: 0.7;
  font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
  .pric-grid {
    grid-template-columns: 1fr;
  }
  .pric-logo {
    font-size: 2rem;
  }
}

.pric-footer {
  background: #050a18;
  color: #fff;
  padding: 60px 0 20px 0;
  font-family: "Poppins", sans-serif;
  width: 100%;
}

.pric-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.pric-footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Icons ko logo ki line mein laane ke liye */
  flex-wrap: wrap;
  gap: 30px;
}

/* Brand Styling */
.pric-brand-section {
  flex: 1;
  min-width: 250px;
}

.pric-logo-wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}

.pric-logo-circle {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #a855f7, #00d2ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.pric-brand-name {
  font-size: 24px;
  margin: 0;
}

.pric-neon {
  color: #a855f7;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}
.pric-white {
  color: #fff;
}

.pric-description {
  color: #a0a0a0;
  font-size: 14px;
  margin: 0;
  margin-top: 10px;
}

/* Social Icons Fixed */
.pric-social-wrap {
  display: flex;
  gap: 20px;
}

.pric-social-wrap a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
  transition: 0.3s;
  opacity: 0.7;
}

.pric-social-wrap a:hover {
  opacity: 1;
  color: #00d2ff;
  transform: translateY(-3px);
}

/* Bottom Section */
.pric-footer-bottom {
  margin-top: 40px;
  text-align: center;
}

.pric-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 20px;
}

.pric-copy-text {
  color: #666;
  font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .pric-footer-main {
    flex-direction: column;
    text-align: center;
  }
  .pric-logo-wrap {
    justify-content: center;
  }
  .pric-social-wrap {
    justify-content: center;
  }
}
