/* --------------------
   Global Styles
-------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #000; /* solid black */
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Golden Gradient */
.golden-text, h1, h2, h3, h4, h5, h6 {
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

/* Center headings across pages */
h1, h2, h3 {
  text-align: center;
}

/* Buttons */
.cta-button, .pricing-button, button {
  display: inline-block;
  background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700);
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  transition: 0.3s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}

.cta-button:hover, .pricing-button:hover, button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
}

/* --------------------
   Navbar
-------------------- */
.navbar {
  background: rgba(0, 0, 0, 0.95);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-img {
  height: 50px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

.nav-link:hover, .nav-link.active {
  color: #FFD700;
}

/* --------------------
   Hero Sections
-------------------- */
.page-hero, .home-hero, .about-hero, .contact-hero {
  background: linear-gradient(to right, #111, #000);
  padding: 100px 20px;
  text-align: center;
}
/* Looser heading spacing */
h1 { margin-bottom: 16px; }
h2 { margin-top: 18px; margin-bottom: 12px; }
h3 { margin-top: 12px; margin-bottom: 8px; }

.hero-subtitle {
  color: #ccc;
  font-size: 18px;
  margin-top: 10px;
}

/* Stronger headings appearance across pages */
.page-hero h1, .home-hero h1, .about-hero h1, .contact-hero h1 {
  font-size: 40px;
}

/* Times New Roman gold title */
.times-golden-title {
  font-family: "Times New Roman", Times, serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --------------------
   Cards & Grids
-------------------- */
.help-grid, .testimonials-grid, .services-grid, .pricing-grid, .achievements-grid, .resources-grid {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.help-card, .testimonial-card, .service-card, .pricing-card, .achievement-card, .resource-card {
  background: #111;
  border: 1px solid rgba(255, 215, 0, 0.2);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.help-card:hover, .testimonial-card:hover, .service-card:hover, .pricing-card:hover, .achievement-card:hover, .resource-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

/* --------------------
   Page-specific Layouts
-------------------- */
/* About: Story grid */
.story-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.story-image {
  display: flex;
  justify-content: center;
  position: relative;
}

.story-image img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.story-content ul {
  margin-top: 10px;
  margin-left: 18px;
}

/* Vertical timeline for About years */
.timeline {
  position: relative;
  list-style: none;
  padding-left: 24px;
  margin-top: 16px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(255,215,0,0.7), rgba(255,165,0,0.7));
}

.timeline li {
  position: relative;
  margin: 14px 0 22px 0;
  width: 50%;
  padding: 8px 14px;
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 10px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000;
  border: 2px solid #FFD700;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.timeline li:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline li:nth-child(odd)::before {
  right: -6px;
}

.timeline li:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline li:nth-child(even)::before {
  left: -6px;
}

.timeline .year-badge {
  margin-right: 10px;
}

.year-badge {
  display: inline-block;
  padding: 2px 10px;
  border: 1px solid rgba(255, 215, 0, 0.6);
  border-radius: 8px;
  font-weight: 800;
  margin-right: 6px;
}

.years-badge-circle {
  position: absolute;
  top: 6px;
  right: 6px;
  min-width: 110px;
  height: 40px;
  padding: 0 12px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  border: 1px solid rgba(0, 0, 0, 0.7);
  font-weight: 900;
  color: #000;
}

/* About: Featured grid for article, video, extra image */
.featured-grid {
  display: grid;
  gap: 36px;
  margin-top: 28px;
}

.featured-article, .featured-video, .featured-image {
  background: #111;
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
}

.article-img, .featured-image img {
  width: 100%;
  max-width: 740px;
  display: block;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.15);
}

.featured-video video {
  width: 100%;
  max-width: 860px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.15);
  display: block;
}

.featured-video h3, .featured-article h3, .featured-image h3 {
  margin: 10px 0 8px;
}

.achievements-grid {
  display: grid;
  gap: 16px;
}

/* Contact page */
.contact-grid {
  display: grid;
  gap: 30px;
  align-items: start;
}

.contact-info p {
  margin: 8px 0;
}

.info-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.info-item a {
  color: #FFD700;
  text-decoration: none;
}

.info-item a:hover {
  text-decoration: underline;
}

/* Enlarged contact info */
.contact-info .info-list {
  gap: 12px;
}

.contact-info .info-item {
  font-size: 18px;
}

.contact-info .info-item strong {
  font-size: 19px;
}

.contact-info .info-item a {
  font-size: 18px;
}

.cta-button.large {
  padding: 14px 28px;
  font-size: 16px;
}

.consultation-calendar iframe {
  border-radius: 12px;
  border: 1px solid #333;
}

/* General media centering inside cards */
.featured-article, .featured-video, .featured-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* --------------------
   Responsive Grids
-------------------- */
@media (min-width: 700px) {
  .story-grid {
    grid-template-columns: 1fr 1.2fr;
  }

  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .achievements-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .help-grid, .testimonials-grid, .services-grid, .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (min-width: 1024px) {
  .help-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-video video {
    max-width: 960px;
  }
  /* Featured grid shows three columns on desktop */
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------
   List alignment consistency
-------------------- */
ul {
  list-style-position: outside;
}

.choose-list, .services-grid ul, .pricing-card ul {
  margin-left: 18px;
  margin-top: 10px;
}

.choose-list li, .services-grid ul li, .pricing-card ul li {
  margin: 6px 0;
}

/* --------------------
   ROI Benchmarks Grid
-------------------- */
.benchmark-grid {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.benchmark-card {
  background: #111;
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

@media (min-width: 700px) {
  .benchmark-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benchmark-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ROI Success Stories as cards */
.calculator-success-stories {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.success-story {
  background: #111;
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 12px;
  padding: 16px;
}

@media (min-width: 700px) {
  .calculator-success-stories {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Services hero proof stats as boxes */
.services-proof {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.proof-stat {
  background: #111;
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.proof-stat .stat-number { font-size: 28px; font-weight: 900; }
.proof-stat .stat-label { display: block; margin-top: 4px; color: #ccc; }

@media (min-width: 700px) {
  .services-proof { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------
   Services Process Steps Boxes
-------------------- */
.process-steps {
  display: grid;
  gap: 16px;
}

.process-steps .step {
  background: #111;
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.process-steps .step-number {
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 10px;
}

@media (min-width: 700px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --------------------
   Calendars centered & larger
-------------------- */
.calendar-container, .consultation-calendar .container {
  display: flex;
  justify-content: center;
}

.calendar-container iframe, .consultation-calendar iframe {
  max-width: 1100px;
  width: 100%;
  height: 720px;
}

/* ROI top stats */
.roi-top-stats {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.roi-stat {
  background: #111;
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

@media (min-width: 700px) {
  .roi-top-stats { grid-template-columns: repeat(3, 1fr); }
}

/* --------------------
   Home choose list as boxes
-------------------- */
.choose-list {
  display: grid;
  gap: 16px;
  margin-left: 0;
  list-style: none;
}

.choose-list li {
  background: #111;
  border: 1px solid rgba(255,215,0,0.25);
  border-radius: 12px;
  padding: 16px;
}

@media (min-width: 700px) {
  .choose-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .choose-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Larger Joyce website image at large screens */
@media (min-width: 1200px) {
  .featured-image img {
    max-width: 1100px;
  }
}

/* --------------------
   Forms
-------------------- */
input, select, textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
}

input:focus, select:focus, textarea:focus {
  border-color: #FFD700;
  outline: none;
}

/* --------------------
   Footer
-------------------- */
.footer {
  background: #111;
  padding: 40px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer h3, .footer h4 {
  color: #FFD700;
}

.footer p, .footer a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover {
  color: #FFD700;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  border-top: 1px solid #333;
  padding-top: 10px;
  font-size: 13px;
  color: #777;
}

/* --------------------
   Animations (Reveal)
-------------------- */
.will-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.will-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ------------ Custom About Page Tweaks ------------ */

/* Joyce first image bigger with golden glow */
.story-image img {
  width: 100%;
  max-width: 550px;  /* pehle 380px thi */
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 30px 8px goldenrod;
  transition: transform 0.3s ease;
}

.story-image img:hover {
  transform: scale(1.03);
}

/* Industry heading badi aur golden strong */
.featured-content h2 {
  font-size: 2.4rem;
  font-weight: 900;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
}