:root {
  --bg: #0b0b10;
  --panel: #121219;
  --ink: #ffffff;
  --muted: #a8b0c0;

  --neon-blue: #00f2ff;
  --neon-pink: #ff007c;
  --neon-green: #39ff14;
  --neon-yellow: #ffcc00;

  --line: #1f2636;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: #000;
  border-bottom: 2px solid var(--neon-blue);
  box-shadow: 0 0 18px rgba(0,242,255,.25);
  padding: 14px 18px;
}
.navbar ul {
  list-style: none;
  display: flex; gap: 28px;
  justify-content: center; align-items: center;
}
.navbar a {
  text-decoration: none; font-weight: 800;
  color: var(--neon-blue);
  text-shadow: 0 0 10px var(--neon-blue), 0 0 20px #00f;
  transition: all .25s ease;
}
.navbar a:hover {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink), 0 0 22px var(--neon-pink);
}

/* ===== Hero Section ===== */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 30px 20px;
  background: #000; /* Dark background for neon pop */
}

.hero-content {
  max-width: 1000px;
  width: 100%;
}

.hero-img {
  max-width: 70%;
  height: auto;
  margin: 0 auto 20px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 242, 255, 0.4),
              0 0 30px rgba(255, 0, 124, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.6),
              0 0 35px rgba(255, 0, 124, 0.5);
}

/* ===== Apply Button ===== */
.apply-btn {
  display: inline-block;
  margin: 20px auto 0;
  padding: 16px 40px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
  background: #ff007c;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-shadow: 0 0 6px #000;
  box-shadow: 0 0 15px #ff007c, 0 0 25px #ff007c;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.apply-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00f2ff, 0 0 35px #ff007c;
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 768px) {
  .hero-img {
    max-width: 85%;
    margin-bottom: 15px;
  }

  .apply-btn {
    width: 90%;
    padding: 18px;
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-img {
    max-width: 95%;
  }

  .apply-btn {
    width: 100%;
    font-size: 1.8rem;
    padding: 20px;
  }
}


/* Apply Now Button */
.apply-btn {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
  color: #fff;
  font-size: 1.3rem;
  font-weight: bold;
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin: 20px auto;
  display: inline-block;
  text-shadow: 0 0 6px #000;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
.apply-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 22px var(--neon-pink), 0 0 32px var(--neon-blue);
}

/* ---------- HEADINGS ---------- */
.neon {
  font-size: clamp(28px, 5vw, 46px);
  color: #fff;
  text-shadow:
    0 0 6px #fff,
    0 0 14px var(--neon-blue),
    0 0 28px var(--neon-blue);
  letter-spacing: .4px;
  text-align: center;
  margin: 20px auto;
}
.roast {
  font-style: italic;
  color: var(--neon-yellow);
  text-shadow: 0 0 6px rgba(255,204,0,.7);
  max-width: 900px; margin: 0 auto 18px; text-align: center;
}

/* ---------- SERVICES GRID ---------- */
#services {
  padding: 56px 20px;
}
.services-grid {
  margin: 28px auto 0;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}
.service {
  background: #181826;
  border-radius: 16px;
  padding: 18px;
  transition: transform .15s ease, box-shadow .25s ease;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-blue);
}
.service h3 {
  color: var(--neon-green);
  text-shadow: 0 0 10px rgba(57,255,20,.6);
  margin-bottom: 8px;
}
.service .summary { color: #d8dbe2; }

/* ===== About Us Section ===== */
.about-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  text-align: center;
  background: #111;
  color: #fff;
}

.about-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #00f2ff;
  text-shadow: 0 0 10px #00f2ff;
}

.about-section p {
  max-width: 800px;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #eee;
}

/* ===== Desk Image ===== */
.about-img {
  max-width: 75%;
  height: auto;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.4),
              0 0 35px rgba(255, 0, 124, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.6),
              0 0 40px rgba(255, 0, 124, 0.5);
}

/* ===== Responsive Layout ===== */
@media (max-width: 1024px) {
  .about-section {
    padding: 40px 15px;
  }

  .about-img {
    max-width: 85%;
  }
}

@media (max-width: 768px) {
  .about-section h2 {
    font-size: 1.8rem;
  }

  .about-section p {
    font-size: 1rem;
  }

  .about-img {
    max-width: 95%;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 30px 10px;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }

  .about-img {
    max-width: 100%;
  }
}


/* ===== Skits Section ===== */
.skits-section {
  padding: 50px 20px;
  text-align: center;
  background: #111;
  color: #fff;
}

.skits-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #ff00aa;
  text-shadow: 0 0 10px #ff00aa;
}

.skits-section p {
  max-width: 750px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
}

/* ===== Video Container ===== */
.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 30px;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.3),
              0 0 35px rgba(255, 0, 124, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper iframe:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.5),
              0 0 40px rgba(255, 0, 124, 0.4);
}

/* ===== Images in Skits ===== */
.skits-img {
  max-width: 70%;
  height: auto;
  margin: 20px auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 0, 170, 0.3);
  transition: transform 0.3s ease;
}

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

/* ===== Responsive Layout ===== */
@media (max-width: 1024px) {
  .skits-section {
    padding: 40px 15px;
  }

  .skits-img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .skits-section h2 {
    font-size: 1.8rem;
  }

  .skits-section p {
    font-size: 1rem;
  }

  .skits-img {
    max-width: 90%;
  }
}

@media (max-width: 480px) {
  .skits-section {
    padding: 30px 10px;
  }

  .skits-section h2 {
    font-size: 1.5rem;
  }

  .skits-section p {
    font-size: 0.95rem;
  }

  .skits-img {
    max-width: 100%;
  }
}


/* ---------- NEWSLETTER SECTION ---------- */
.newsletter-section {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.newsletter-section p {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.form-container {
  background: #111;
  border: 2px solid var(--neon-blue);
  border-radius: 12px;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  box-shadow: 0 0 16px rgba(0,242,255,0.5), 0 0 28px rgba(255,0,124,0.4);
}
.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="tel"],
.form-container textarea {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 2px solid var(--neon-blue);
  border-radius: 8px;
  background: #0d0d15;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 8px rgba(0,242,255,0.6);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-container input[type="text"]:focus,
.form-container input[type="email"]:focus,
.form-container input[type="tel"]:focus,
.form-container textarea:focus {
  border-color: var(--neon-pink);
  box-shadow: 0 0 12px var(--neon-pink), 0 0 18px var(--neon-blue);
}
.form-container input[type="submit"],
.form-container .hs-button {
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-pink));
  color: #fff !important;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 12px;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  display: block;
  width: 100%;
}
.form-container input[type="submit"]:hover,
.form-container .hs-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px var(--neon-pink), 0 0 28px var(--neon-blue);
}

/* ===== Contact Section ===== */
.contact-section {
  padding: 50px 20px;
  text-align: center;
  background: #111;
  color: #fff;
}

.contact-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #00f2ff;
  text-shadow: 0 0 10px #00f2ff;
}

.contact-section p {
  max-width: 750px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #eee;
}

/* ===== Contact Info ===== */
.contact-info {
  margin-top: 30px;
  font-size: 1.2rem;
  line-height: 1.8;
}

.contact-info a {
  color: #00f2ff;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.contact-info a:hover {
  color: #ff007c;
  text-shadow: 0 0 10px #ff007c;
}


/* ===== Modal (Apply Now Form) ===== */
.modal {
  display: none; /* Hidden until Apply Now is clicked */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;

  /* ✅ Matches JS display:flex */
  display: flex;
  justify-content: center;
  align-items: flex-start;

  overflow-y: auto;                 /* allow scroll on mobile */
  -webkit-overflow-scrolling: touch;
  opacity: 0;                       /* start transparent for fade effect */
  transition: opacity 0.3s ease;    /* smooth fade in/out */
}

.hubspot-wrapper {
  background: #111;
  margin: 40px auto;
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  color: #fff;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 242, 255, 0.3),
              0 0 35px rgba(255, 0, 124, 0.2);
}


/* ---------- FOOTER ---------- */
footer {
  margin-top: 40px;
  text-align: center;
  color: #b8c0d0;
  padding: 22px 16px;
  border-top: 1px solid var(--line);
  background: #000;
}

/* ---------- MOBILE RESPONSIVENESS ---------- */
@media (max-width: 768px) {
  .hero { padding: 20px 10px; }
  .hero-img { max-width: 65%; margin-bottom: 15px; }
  .apply-btn { font-size: 1.1rem; padding: 14px 24px; width: 80%; }
  .about-section img { max-width: 90%; }
  .skits-grid { grid-template-columns: 1fr; }
  .form-container { width: 100%; padding: 15px; }
  .skit-card iframe { height: 200px; }
}

/* ===== HubSpot Form Overrides ===== */
.hs-form,
.hs-form label,
.hs-form input,
.hs-form select,
.hs-form textarea,
.hs-form .hs-richtext,
.hs-form .hs-form-field {
  color: #fff !important;           /* Bright white text */
  font-size: 1rem !important;
  font-family: 'Arial', sans-serif !important;
}

.hs-form label {
  font-weight: bold !important;
  margin-bottom: 5px !important;
}

.hs-form input,
.hs-form select,
.hs-form textarea {
  background: rgba(0, 0, 0, 0.7) !important;
  color: #fff !important;
  border: 2px solid #00f2ff !important; /* Neon blue border */
  border-radius: 8px !important;
  padding: 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hs-form input:focus,
.hs-form select:focus,
.hs-form textarea:focus {
  outline: none !important;
  border-color: #ff007c !important; /* Neon pink on focus */
  box-shadow: 0 0 8px #ff007c !important;
}

.hs-form .hs-button {
  background: #ff007c !important;
  color: #fff !important;
  font-size: 1.2rem !important;
  padding: 14px 25px !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  text-shadow: 0 0 6px #000 !important;
  box-shadow: 0 0 15px #ff007c, 0 0 25px #00f2ff !important;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.hs-form .hs-button:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 0 20px #00f2ff, 0 0 35px #ff007c !important;
}

/* ===== Neon Success Checkmark ===== */
.success-check {
  display: none;
  font-size: 3rem;
  color: var(--neon-green);
  margin-top: 20px;
  text-shadow: 0 0 10px var(--neon-green),
               0 0 20px var(--neon-green),
               0 0 30px var(--neon-green);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ===== Contact Form Styling ===== */
.contact-section form,
.contact-section .hs-form {
  color: #fff !important;
  font-size: 1rem !important;
  font-family: 'Arial', sans-serif !important;
}

.contact-section label {
  font-weight: bold !important;
  margin-bottom: 6px !important;
  color: #fff !important;
}

.contact-section input,
.contact-section select,
.contact-section textarea {
  background: rgba(0, 0, 0, 0.7) !important;
  color: #fff !important;
  border: 2px solid #00f2ff !important; /* Neon blue */
  border-radius: 8px !important;
  padding: 12px !important;
  width: 100% !important;
  margin-bottom: 14px !important;
  box-shadow: 0 0 8px rgba(0, 242, 255, 0.6);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-section input:focus,
.contact-section select:focus,
.contact-section textarea:focus {
  border-color: #ff007c !important; /* Neon pink focus */
  box-shadow: 0 0 12px #ff007c, 0 0 18px #00f2ff !important;
  outline: none !important;
}

.contact-section .hs-button {
  background: linear-gradient(90deg, #00f2ff, #ff007c) !important;
  color: #fff !important;
  font-size: 1.2rem !important;
  font-weight: bold !important;
  padding: 14px 28px !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  margin-top: 12px !important;
  box-shadow: 0 0 15px #00f2ff, 0 0 25px #ff007c !important;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  width: 100% !important;
}

.contact-section .hs-button:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 0 25px #ff007c, 0 0 35px #00f2ff !important;
}

/* ===== Apply Now Modal Form Styling ===== */
#applyModal .hs-form,
#applyModal .hs-form label,
#applyModal .hs-form input,
#applyModal .hs-form select,
#applyModal .hs-form textarea,
#applyModal .hs-form .hs-richtext,
#applyModal .hs-form .hs-form-field {
  color: #fff !important;
  font-size: 1rem !important;
  font-family: 'Arial', sans-serif !important;
}

#applyModal .hs-form label {
  font-weight: bold !important;
  margin-bottom: 6px !important;
  color: #fff !important;
}

#applyModal .hs-form input,
#applyModal .hs-form select,
#applyModal .hs-form textarea {
  background: rgba(0, 0, 0, 0.7) !important;
  color: #fff !important;
  border: 2px solid #00f2ff !important; /* Neon blue */
  border-radius: 8px !important;
  padding: 12px !important;
  width: 100% !important;
  margin-bottom: 14px !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#applyModal .hs-form input:focus,
#applyModal .hs-form select:focus,
#applyModal .hs-form textarea:focus {
  border-color: #ff007c !important;
  box-shadow: 0 0 12px #ff007c, 0 0 18px #00f2ff !important;
  outline: none !important;
}

#applyModal .hs-button {
  background: linear-gradient(90deg, #00f2ff, #ff007c) !important;
  color: #fff !important;
  font-size: 1.2rem !important;
  font-weight: bold !important;
  padding: 14px 28px !important;
  border: none !important;
  border-radius: 50px !important;
  cursor: pointer !important;
  margin-top: 12px !important;
  box-shadow: 0 0 15px #00f2ff, 0 0 25px #ff007c !important;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  width: 100% !important;
}

#applyModal .hs-button:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 0 25px #ff007c, 0 0 35px #00f2ff !important;
}

/* 🎬 Featured Skit Section */
.skit-feature {
  text-align: center;
  margin: 60px auto;
  max-width: 1000px;
}

.skit-feature .neon {
  font-size: 2rem;
  color: #00f2ff;
  text-shadow: 0 0 8px #00f2ff, 0 0 16px #00f2ff;
  margin-bottom: 10px;
}

.skit-feature .skit-subtext {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 25px;
}

/* 🎥 Responsive YouTube Video */
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
  background: #000;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 🌐 Follow Us Row */
.follow-us {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.follow-us .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}

.follow-us svg {
  width: 28px;
  height: 28px;
}

/* Platform Colors */
.follow-us .youtube { background: #FF0000; }
.follow-us .tiktok { background: #000000; }
.follow-us .linkedin { background: #0A66C2; }
.follow-us .instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.follow-us .facebook { background: #1877F2; }

.follow-us .icon:hover {
  transform: scale(1.15);
  opacity: 0.85;
}
