* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background: #fff;
  color: #222;
}

/* Hero Section */
.hero {
  padding: 60px 20px;
  background: #fefefe;
}
.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}
.left {
  flex: 1;
  min-width: 300px;
}
.left h1 {
  font-size: 2.5rem;
  line-height: 1.3;
}
.highlight {
  color: #f44336;
  font-weight: bold;
}
.features {
  list-style: none;
  margin: 20px 0;
}
.features li {
  margin: 10px 0;
  font-size: 1rem;
}

/* Animated Enroll Now Button */
.cta-button,
.sticky-btn {
  position: relative;
  display: inline-block;
  background: linear-gradient(to right, #f44336, #ff6a00);
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.cta-button::before,
.sticky-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
  z-index: 2;
  animation: shine 2s infinite linear;
}
@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}
.students {
  font-weight: bold;
}
.rating {
  font-size: 0.9rem;
  color: #f44336;
}
.right {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.profile-img {
  max-width: 100%;
  width: 410px;
  border-radius: 12px;
}
.mentor-name {
  margin-top: 10px;
  font-weight: bold;
}
.mentor-name small {
  display: block;
  font-weight: normal;
  color: #777;
}

/* Companies */
.companies {
  padding: 40px 20px;
  text-align: center;
  background: #fdfdfd;
}
.section-title {
  font-weight: 600;
  margin-bottom: 20px;
  color: #444;
}
.logo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.logo-row img {
  height: 40px;
  max-width: 100px;
  object-fit: contain;
  opacity: 0.8;
  transition: transform 0.3s ease;
}
.logo-row img:hover {
  transform: scale(1.05);
}

/* Problem Section */
.problem-section {
  padding: 60px 20px;
  text-align: center;
}
.problem-subtitle {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 10px;
}
.problem-title {
  font-size: 2.2rem;
  font-weight: 700;
}
.underline {
  margin: 10px auto;
  max-width: 150px;
}
.problems {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  gap: 30px;
  font-family: 'Poppins', sans-serif;
}

.problem-box {
  max-width: 280px;
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.problem-box .icon {
  font-size: 2rem;
  color: #f44336;
  display: block;
  margin-bottom: 12px;
  font-family: 'Cormorant Garamond', serif;
}

.problem-box p {
  font-size: 1rem;
  color: #333;
  font-family: 'Poppins', sans-serif;
}


/* Masterclass Section */
.masterclass {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #0a1a2f, #ffffff);
  color: white;
}
.masterclass .container {
  max-width: 1000px;
  margin: 0 auto;
}
.masterclass-subtitle {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 10px;
}
.masterclass-title {
  font-size: 2.5rem;
  font-weight: bold;
}
.masterclass-desc {
  font-size: 1.1rem;
  margin-bottom: 40px;
}
.video-preview {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.video-img {
  width: 100%;
  height: auto;
}

/* Live Sessions Section */
.live-sessions {
  padding: 80px 20px;
  background: #fff;
}
.live-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}
.live-text {
  flex: 1;
  min-width: 300px;
}
.live-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.live-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}
.countdown-title {
  color: #e53935;
  font-weight: bold;
  margin: 20px 0 10px;
}
.countdown {
  display: flex;
  gap: 20px;
  font-family: monospace;
}
.countdown div {
  text-align: center;
}
.countdown span {
  font-size: 2rem;
  font-weight: bold;
  color: #000;
}
.countdown small {
  display: block;
  font-size: 0.8rem;
  color: #555;
}
.live-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}
.live-image img {
  max-width: 100%;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}



/* Mobile Responsive Tweaks */
@media (max-width: 768px) {
  .hero-content,
  .live-content {
    flex-direction: column;
    text-align: center;
  }

  .left, .right, .live-text, .live-image {
    width: 100%;
    padding: 0 10px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .features li {
    font-size: 0.95rem;
  }

  .cta-button {
    width: 100%;
    padding: 14px;
  }

  .logo-row {
    justify-content: center;
    gap: 15px;
  }

  .logo-row img {
    height: 30px;
    max-width: 70px;
  }

  .problems {
    flex-direction: column;
    gap: 20px;
  }

  .problem-box {
    max-width: 100%;
  }

  .masterclass-title {
    font-size: 2rem;
  }

  .masterclass-desc {
    font-size: 1rem;
  }

  .countdown {
    justify-content: center;
  }

  
}
.live-now {
  font-size: 1.5rem;
  font-weight: bold;
  color: #e53935;
  padding: 10px 20px;
  background: #fff3f3;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 40px;
}

.faq-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #f2f2f2;
  padding: 18px;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  transition: max-height 0.3s ease;
  padding: 0 18px;
}

.faq-answer p {
  padding: 15px 0;
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}
.masterclass-section {
  padding: 80px 20px;
  background: linear-gradient(to bottom, #0f1e2e, #ffffff);
  text-align: center;
  color: white;
}

.masterclass-section h3 {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.masterclass-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.masterclass-section p {
  font-size: 1.1rem;
  color: #d9d9d9;
  margin-bottom: 40px;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  border: none;
}
.testimonials {
  padding: 80px 20px;
  text-align: center;
  background-color: #fff;
}

.testimonials .tag {
  font-size: 14px;
  font-weight: 600;
  color: #888;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.testimonials .highlight {
  color: #f73333;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.testimonial-card {
  background-color: #f3f7ff;
  border-radius: 14px;
  padding: 25px 20px;
  text-align: left;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  font-size: 15px;
  line-height: 1.5;
  color: #222;
}

.testimonial-card h5 {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 16px;
}

.testimonial-card h5 span {
  font-weight: 500;
  color: #555;
  font-size: 14px;
  display: inline-block;
  margin-left: 5px;
}

.testimonial-card mark {
  background: yellow;
  font-weight: 600;
  padding: 0 2px;
}

.testimonial-card.youtube::after {
  content: url('https://upload.wikimedia.org/wikipedia/commons/9/9f/Youtube%28amin%29.png');
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
}

.testimonial-card.twitter::after {
  content: url('https://upload.wikimedia.org/wikipedia/en/9/9f/Twitter_bird_logo_2012.svg');
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
}
.learning-section {
  padding: 60px 20px;
  background-color: #fff;
}

.learning-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.sticky-graph {
  flex: 1;
  min-width: 300px;
  position: sticky;
  top: 100px;
}

.sticky-graph h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.highlight-red {
  color: #f44336;
}

.learning-graph {
  width: 100%;
  max-width: 300px;
}

.modules-container {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.module {
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.module h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.module h3 span {
  font-weight: normal;
  font-size: 18px;
  display: block;
  margin-top: 5px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
  margin-bottom: 12px;
  color: #333;
}

.module ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.module ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 20px;
  font-size: 15px;
}

.module ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: green;
}

.module-blue {
  background-color: #e7f0fb;
}

.module-yellow {
  background-color: #fff9d5;
}

.module-pink {
  background-color: #fcebf1;
}

/* ✅ Mobile-Friendly Styling */
@media screen and (max-width: 768px) {
  .learning-container {
    flex-direction: column;
    gap: 20px;
  }

  .sticky-graph {
    position: static;
    text-align: center;
  }

  .sticky-graph h2 {
    font-size: 28px;
  }

  .learning-graph {
    max-width: 80%;
    margin: 0 auto 20px;
  }

  .module {
    padding: 20px;
  }

  .module h3 {
    font-size: 18px;
  }

  .module h3 span {
    font-size: 16px;
  }

  .meta {
    flex-direction: column;
    gap: 8px;
    font-size: 13px;
  }

  .module ul li {
    font-size: 14px;
  }
}
.bonus-section {
  background: #fff2ec;
  padding: 60px 20px;
  text-align: center;
}

.bonus-header h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.bonus-header span {
  color: #e60000;
  font-size: 34px;
  text-decoration: underline;
}

.bonus-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.bonus-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bonus-title {
  background: #ff3b30;
  color: #fff;
  font-weight: bold;
  padding: 6px 16px;
  border-radius: 10px 10px 0 0;
  margin-bottom: 12px;
  font-size: 16px;
}

.bonus-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 16px;
}

.bonus-card h3 {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.subtext {
  color: #f44336;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 20px;
}

.bonus-price {
  display: flex;
  gap: 10px;
  font-size: 18px;
  align-items: center;
}

.original {
  text-decoration: line-through;
  color: #888;
}

.free {
  color: #f44336;
  font-weight: bold;
}

.highlight-red {
  color: #e60000;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .bonus-header h2 {
    font-size: 24px;
  }

  .bonus-container {
    flex-direction: column;
    align-items: center;
  }

  .bonus-card {
    width: 100%;
    max-width: 320px;
  }
}
.mentor-section {
  padding: 60px 20px;
  background: #ffffff;
}

.mentor-container {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.mentor-left {
  flex: 1;
  max-width: 420px;
  text-align: center;
}

.mentor-photo {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}

.mentor-card {
  background: #eef2ff;
  padding: 16px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 1.4;
}

.mentor-card h3 {
  margin: 10px 0 4px;
  font-size: 20px;
  font-weight: bold;
}

.expert {
  color: #f59e0b;
  font-weight: 600;
}

.mentor-right {
  flex: 2;
  min-width: 280px;
}

.mentor-right h2 {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: bold;
}

.mentor-right p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.social-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-stats div {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 14px;
}

.social-stats img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .mentor-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mentor-left,
  .mentor-right {
    width: 100%;
    max-width: 100%;
  }

  .social-stats {
    justify-content: center;
  }
}
.certification-section {
  background: #ffffff;
  padding: 60px 20px;
}

.certification-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.certification-left {
  flex: 1;
  min-width: 280px;
}

.certification-left h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.certification-left .highlight {
  color: #f44336;
  border-bottom: 2px solid #000;
}

.certification-points {
  list-style: none;
  padding: 0;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.enroll-btn {
  background-color: #f44336;
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
  transition: background 0.3s ease;
}

.enroll-btn:hover {
  background-color: #d32f2f;
}

.certification-right {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.certification-right img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* ✅ Responsive */
@media (max-width: 768px) {
  .certification-container {
    flex-direction: column;
    text-align: center;
  }

  .certification-left h2 {
    font-size: 28px;
  }

  .certification-points {
    font-size: 16px;
  }
}
/* Quote Section */
.quote-section {
  background-color: #0d1b2a;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-icon {
  font-size: 60px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #fff;
}

.quote-text {
  font-size: 22px;
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 20px;
}

.quote-author {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 30px;
  color: #ccc;
}

.quote-btn {
  background-color: #ff3c3c;
  padding: 14px 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.quote-btn:hover {
  background-color: #d32f2f;
}

/* Contact Section */
.contact-note {
  background: #fff;
  padding: 30px 20px;
  text-align: center;
  font-size: 14px;
  color: #333;
}

.contact-note a {
  color: #ff3c3c;
  font-weight: bold;
  text-decoration: none;
}

.contact-note a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .quote-text {
    font-size: 18px;
  }

  .quote-btn {
    width: 100%;
    display: inline-block;
    padding: 14px 0;
  }
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Default desktop layout */
.left {
  flex: 1;
  order: 0;
}

.right {
  flex: 1;
  text-align: center;
  order: 1;
}

/* 📱 Mobile layout: image first */
@media (max-width: 768px) {
  .hero-content {
    flex-direction: column;
  }

  .right {
    order: -1; /* ⬆ Show image first */
  }

  .left {
    order: 0;
  }

  .cta-button {
    width: 100%;
    margin-top: 20px;
  }

  .profile-img {
    max-width: 80%;
  }
  @media (max-width: 768px) {
  .profile-img {
    max-width: 95%;
    margin-bottom: 20px; /* 👈 this adds the spacing you need */
  }
}
@media (max-width: 768px) {
  .mentor-name {
    margin-bottom: 20px;
  }
}


}

/* Sticky Bar Container */
.sticky-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #0d1b2a;
  z-index: 9999;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.15);
  font-family: 'Segoe UI', sans-serif;
}

/* Price + Enroll Button Container */
.sticky-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 12px 16px;
}

/* Price Styles */
.price-box {
  display: flex;
  gap: 10px;
  align-items: center;
  color: white;
  font-size: 16px;
  justify-content: center;
}

.price-box del {
  color: #cccccc;
  font-size: 14px;
}

.price-box ins {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 600;
}

/* Enroll Now Button */
.enroll-button {
  position: relative;
  background: linear-gradient(to right, #f44336, #ff6a00);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 999px;
  font-weight: bold;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: background 0.3s ease;
}

.enroll-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0.2) 100%
  );
  transform: skewX(-20deg);
  animation: shine 2.5s infinite linear;
  z-index: 2;
}

@keyframes shine {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}


.enroll-button:hover {
  background-color: #d52f2f;
}

/* Red Offer Strip Below */
.sticky-offer {
  background-color: #ff3c3c;
  color: #ffffff;
  text-align: center;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
}

/* Responsive Styling */
@media (max-width: 480px) {
  .sticky-content {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .price-box {
    justify-content: center;
  }


}

