
    .page-title {
    position: relative;
    height: 270px;
    background: url("cover2.jpg") no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    padding-left: 8%;
    margin-top: 20px; /* adjust if header is fixed */
    border-radius: 5%;
}

/* DARK OVERLAY */
.page-title-overlay {
    content: "";
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url("consutancy_img.jpg") center/cover;
  filter: blur(5px);
  transform: scale(1.1);
}

/* CONTENT */
.page-title-content {
    position: relative;
    color: #fff;
}

/* GREEN LINE */
.title-line {
    display: inline-block;
    width: 250px;
    height: 4px;
    background: red;
    margin-bottom: 15px;
}

/* TITLE */
.page-title-content h1 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-title {
        height: 240px;
        padding-left: 5%;
    }

    .page-title-content h1 {
        font-size: 32px;
    }
}

/* Hero */
.hero {

    height: 70vh;
    position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.55);
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 900px;
  padding: 0 60px;
  color: #fff;
}

.hero-content h1 {
  font-size: 44px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  max-width: 700px;
}

/* Packages */
.packages {
  padding: 80px 60px;
  background: #fff;
  text-align: center;
}

.packages h2 {
  font-size: 36px;
  margin-bottom: 50px;
}
/* Membership Images */
.package-image {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

    .package-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

/* Subtle hover zoom */
.package-card:hover .package-image img {
    transform: scale(1.05);
}


.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.package-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.package-card:hover {
  transform: translateY(-8px);
}

.package-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.package-card .price {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #2563eb;
  margin-bottom: 15px;
}

.package-card p {
  font-size: 16px;
  color: #4b5563;
}

.featured {
  border: 2px solid #2563eb;
}

/* Launch Offers – Redesigned */
.offers {
  padding: 50px 60px; /* reduced height */
  background: linear-gradient(135deg, #f8fafc, #eef2f7);
}

.offers {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* text gets more importance */
  gap: 40px;
  align-items: center;
}

/* Content Box */
.offers-content {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.offers-content h2 {
  font-size: 30px;
  margin-bottom: 12px;
  position: relative;
}

.offers-content h2::after {
  content: "LIMITED TIME";
  display: inline-block;
  margin-left: 10px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #dc2626;
  border-radius: 20px;
  vertical-align: middle;
}

.offers-content p {
  font-size: 16px;
  color: #475569;
  margin-bottom: 20px;
}

/* Offer List */
.offers-content ul {
  list-style: none;
  padding: 0;
}

.offers-content li {
  background: #f9fafb;
  padding: 14px 18px;
  margin-bottom: 12px;
  border-radius: 10px;
  border-left: 5px solid #2563eb;
  font-size: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Image */
.offers-image img {
  width: 100%;
  max-height: 300px; /* prevents oversized look */
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .offers {
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }

  .offers-image img {
    max-height: 220px;
  }
}

/* Launch Offer CTA */
.offer-cta {
  margin-top: 25px;
}

.offer-enroll-btn {
  display: inline-block;
  padding: 14px 30px;
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
}

.offer-enroll-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.45);
}
/* Modal Overlay */
.enroll-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

/* Modal Box */
.enroll-modal {
  background: #ffffff;
  width: 90%;
  max-width: 380px;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  position: relative;
  animation: scaleFade 0.3s ease;
}

.enroll-modal h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #1f2937;
}

.enroll-modal p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 25px;
}

/* Buttons */
.enroll-options a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.enroll-call {
  background: #2563eb;
  color: #fff;
}

.enroll-whatsapp {
  background: #25d366;
  color: #fff;
}

/* Close */
.enroll-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
  color: #6b7280;
}

/* Animation */
@keyframes scaleFade {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .enroll-modal {
    padding: 25px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .offers {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 34px;
  }
}
  .packages-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 16px;
}

.package-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.package-tagline {
  font-weight: 600;
  color: #047857;
  margin: 12px 0;
}

.package-features {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.package-features li {
  padding: 8px 0;
  font-size: 15px;
  color: #333;
}

.package-features li::before {
  content: "✓";
  color: #047857;
  margin-right: 8px;
  font-weight: bold;
}

.featured {
  border: 2px solid #f59e0b;
}
.golden {
  border: 2px solid rgb(140, 255, 0);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(90deg, #facc15, #f59e0b);
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

.premium {
  border: 2px solid yellow;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
}
/* OFFER BADGE */
.offer-badge {
  position: absolute;
  top: -14px;
  left: 20px;
  background: linear-gradient(90deg, #16a34a, #22c55e);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  animation: pulseOffer 2s infinite;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* SUBTLE PULSE ANIMATION */
@keyframes pulseOffer {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* PRICE BOX */
.price-box {
  margin: 14px 0 18px;
}

.old-price {
  display: block;
  font-size: 15px;
  color: #9ca3af;
  text-decoration: line-through;
  margin-bottom: 6px;
}

.offer-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.new-price {
  font-size: 22px;
  font-weight: 700;
  color: #f70505;
}

.discount-pill {
  background-color: #dcfce7;
  color: #166534;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
}
/* DEDICATED TEAM RIBBON */
.team-ribbon {
  position: absolute;
  top: 18px;
  left: -12px;
  background: linear-gradient(90deg, #1e3a8a, #2563eb);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 0 20px 20px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.35);
}

/* Small triangle cut for ribbon effect */
.team-ribbon::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  border-width: 10px 10px 0 0;
  border-style: solid;
  border-color: #1e3a8a transparent transparent transparent;
}

