/* ===== Navbar ===== */
.navbar {
    background-color: #f5f5f5;
}

.navbar-nav .nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.navbar-nav .nav-link:hover {
    color: #000;
}

/* ===== Hero Section ===== */
.hero-section {
    background-color: #16375b;   /* Dark Blue */
    min-height: 50vh;
    padding: 120px 20px 80px;
    text-align: center;
    color: #fff;
}

/* Yellow Bar */
.highlight-yellow {
    background-color: #f4c400;
    color: #000;
    font-weight: 700;
    padding: 16px 25px;
    font-size: 26px;
    max-width: 900px;
    margin: 0 auto 15px;
}

/* Red Bar */
.highlight-red {
    background-color: #b00000;
    color: #fff;
    font-weight: 600;
    padding: 14px 25px;
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto 25px;
}

/* Sub Text */
.hero-subtext {
    font-size: 15px;
    opacity: 0.9;
}

.price-section {
  margin: 15px 0;
}

.old-price {
  text-decoration: line-through;
  color: gray;
  font-size: 18px;
  margin-right: 10px;
}

.new-price {
  color: black;        /* Sirf text red hoga */
  font-size: 28px;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {

    .highlight-yellow {
        font-size: 18px;
        padding: 12px;
    }

    .highlight-red {
        font-size: 16px;
        padding: 10px;
    }

    .hero-subtext {
        font-size: 14px;
    }

}


/* ===== Straight Big Book Section ===== */

.book-section {
    background: #f4f4f4;
    padding: 120px 0;
}

.book-wrapper {
    display: flex;
    justify-content: center;
}

.book {
    width: 500px;          /* Desktop size */
    max-width: 90%;
    transition: 0.3s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.book img {
    width: 100%;           /* Important */
    height: auto;
}

/* Tablet */
@media (max-width: 992px) {
    .book {
        width: 420px;
    }
}

/* 📱 Mobile */
@media (max-width: 768px) {
    .book {
        width: 100%;        /* Mobile par bada */
    }
}

/* Hover Effect */
.book:hover {
    transform: scale(1.05);
}

/* Carousel Dots */
.carousel-indicators [data-bs-target] {
    background-color: #999;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #16375b;
}

/* ===== Jiggle Animation ===== */

/* ===== Horizontal Jiggle Animation ===== */

.jiggle-btn {
  animation: jiggleX 1.2s infinite;
}

/* Left-Right Keyframes */
@keyframes jiggleX {

  0%   { transform: translateX(0); }

  15%  { transform: translateX(-6px); }

  30%  { transform: translateX(6px); }

  45%  { transform: translateX(-5px); }

  60%  { transform: translateX(5px); }

  75%  { transform: translateX(-3px); }

  100% { transform: translateX(0); }

}

/* Responsive */
@media (max-width: 768px) {
    .book-title {
        font-size: 24px;
    }

    .book-subtitle {
        font-size: 16px;
    }
}

/* ===== Section Styling ===== */

.value-section {
  background: #0e2b4f;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
}

.main-heading {
  color: #ff6a3d;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sub-heading {
  color: #ff6a3d;
  margin-bottom: 30px;
}

.course-negatives {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 40px;
  font-size: 15px;
}

/* Highlight Box */
.highlight-box {
  background: #f4c542;
  padding: 30px;
  border-radius: 10px;
  margin: 40px auto;
  max-width: 700px;
  color: #000;
}

.highlight-box h3 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 10px;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  border: 1px solid #3b5c85;
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
  background: rgba(255,255,255,0.05);
}

/* Value Text */
.value-text {
  color: #ff6a3d;
  margin: 50px 0 20px;
  font-weight: 700;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: #00a000;
  padding: 15px 40px;
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-button:hover {
  background: #00c000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .main-heading {
    font-size: 24px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .highlight-box {
    padding: 20px;
  }

  .cta-button {
    width: 100%;
  }
}

/* ===== Section Base ===== */

.mentorship-section {
  background: #000;
  color: #fff;
  padding-bottom: 80px;
}

/* Top Strip */
.top-strip {
  background: #f4c400;
  text-align: center;
  padding: 12px;
  font-weight: 600;
  color: #000;
  font-size: 16px;
}

/* Layout */
.mentor-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 20px 0;
}

/* Left Image */
.mentor-image {
  max-width: 420px;
  text-align: left;
}

.mentor-image img {
  width: 100%;
  border-radius: 10px;
  border: 3px solid #f4c400;
  box-shadow: 0 0 25px #f4c400;
}

.mentor-info {
  margin-top: 15px;
}

.mentor-info h5 {
  margin: 0;
  font-weight: 600;
}

.mentor-info p {
  margin: 0;
  font-size: 14px;
  color: #ccc;
}

/* Right Content */
.mentor-content {
  max-width: 520px;
}

.mentor-content h3 {
  color: #f4c400;
  font-weight: 700;
}

.mentor-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mentor-content h2 span {
  color: #ff4040;
}

.mentor-content p {
  color: #ccc;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 30px;
}

/* Button */
.mentor-btn {
  background: #007bff;
  padding: 12px 30px;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.mentor-btn:hover {
  background: #0095ff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .mentor-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .mentor-image {
    max-width: 300px;
  }

  .mentor-content {
    max-width: 100%;
  }

}

@media (max-width: 576px) {

  .mentor-content h2 {
    font-size: 22px;
  }

  .top-strip {
    font-size: 14px;
  }

  .mentor-btn {
    width: 100%;
    display: inline-block;
  }

}

/* ===== Experience Section ===== */

.experience-section {
  background: #12325b;
  padding: 80px 20px;
  color: #fff;
}

.exp-main-heading {
  text-align: center;
  color: #ff6a3d;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 60px;
}

.exp-wrapper {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.exp-column {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
}

.exp-sub-heading {
  color: #ffd400;
  font-weight: 600;
  margin-bottom: 20px;
}

.exp-box {
  background: #000;
  padding: 30px;
  border-radius: 6px;
}

.exp-box p {
  line-height: 1.8;
  font-size: 15px;
}

.exp-box ul {
  padding-left: 20px;
  margin: 0;
}

.exp-box ul li {
  margin-bottom: 12px;
  font-size: 15px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .exp-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .exp-main-heading {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .experience-section {
    padding: 60px 15px;
  }

  .exp-box {
    padding: 20px;
  }

  .exp-main-heading {
    font-size: 22px;
  }
}


/* ===== Mentorship Proof Section ===== */

.proof-section {
  background: #f4c400; /* Yellow Background */
  padding: 70px 20px;
  text-align: center;
}

/* Black Heading Strip */
.proof-heading {
  background: #000;
  color: #ffd400;
  display: inline-block;
  padding: 14px 30px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 40px;
}

/* Image Center */
.proof-wrapper {
  display: flex;
  justify-content: center;
}

.proof-wrapper img {
  max-width: 420px;
  width: 100%;
  border: 3px solid #222;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {

  .proof-heading {
    font-size: 16px;
    padding: 10px 15px;
  }

  .proof-wrapper img {
    max-width: 280px;
  }
}

/* ===== Offer Section ===== */

.offer-section {
  background: #14365c;
  padding: 80px 20px;
  color: #fff;
}

/* Heading */
.offer-heading {
  text-align: center;
  color: #ff6a3d;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
}

/* Grid Layout */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: auto;
}

/* Cards */
.offer-card {
  border: 1px solid #4c6f97;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  transition: 0.3s;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: #ffd400;
}

/* Card Heading */
.offer-card h5 {
  color: #ffd400;
  font-weight: 700;
  margin-bottom: 15px;
}

/* List */
.offer-card ul {
  padding-left: 0;
  list-style: none;
}

.offer-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 14px;
}

/* Green Tick */
.offer-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {

  .offer-heading {
    font-size: 22px;
  }

  .offer-card {
    padding: 18px;
  }

}

/* ===== Future Section ===== */

.future-section {
  background: #f4c400;
  padding: 70px 20px;
}

/* Headings */
.future-top {
  color: #ff6a3d;
  font-weight: 600;
  margin-bottom: 10px;
}

.future-main {
  color: #ff6a3d;
  font-weight: 700;
  margin-bottom: 35px;
}

/* Points Layout */
.future-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 28px;
  max-width: 1000px;
  margin: auto;
}

/* Each Point */
.future-points span {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  font-weight: 500;
  color: #000;
}

/* Green Tick */
.future-points span::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-weight: bold;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .future-main {
    font-size: 22px;
  }

  .future-points {
    gap: 12px;
  }

  .future-points span {
    width: 100%;
    text-align: left;
  }

}

/* ===== Value Calculation Section ===== */

.value-calc-section {
  background: #12325b;
  padding: 90px 20px;
  color: #fff;
}

.value-heading {
  color: #ff6a3d;
  font-weight: 700;
  margin-bottom: 35px;
}

/* Value List */
.value-list {
  max-width: 420px;
  margin: auto;
}

.value-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 17px;
}

/* Yellow Total Bar */
.total-value {
  background: #f4c400;
  color: #000;
  font-weight: 700;
  padding: 12px;
  margin: 35px auto 15px;
  max-width: 480px;
}

/* Red Offer Bar */
.offer-price {
  background: #CF0000;   /* jo pehle tha woh color */
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  padding: 12px;
  margin: 20px auto;
  max-width: 480px;
  text-align: center;
  border-radius: 6px;
}

.offer-price a {
  text-decoration: none;
  color: inherit;
  display: block;   /* important */
}

/* ===== Reusable Horizontal Jiggle ===== */

.jiggle {
  display: inline-block;   /* IMPORTANT for div animation */
  animation: jiggleX 1.2s infinite;
}

@keyframes jiggleX {

  0%   { transform: translateX(0); }

  15%  { transform: translateX(-6px); }

  30%  { transform: translateX(6px); }

  45%  { transform: translateX(-5px); }

  60%  { transform: translateX(5px); }

  75%  { transform: translateX(-3px); }

  100% { transform: translateX(0); }

}

/* Message */
.pricing-message {
  color: #ffd400;
  font-weight: 700;
  margin: 40px 0;
}

/* CTA Button */
.secure-btn {
  display: inline-block;
  background: #f4c400;
  color: #12325b;
  font-weight: 700;
  padding: 16px 45px;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s;
}

.secure-btn:hover {
  background: #ffd633;
  color: #000;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .value-row {
    font-size: 15px;
  }

  .pricing-message {
    font-size: 22px;
  }

  .secure-btn {
    width: 100%;
  }
}

/* ===== Perfect For Section ===== */

.perfect-section {
  background: #f4c400;
  padding: 70px 20px;
}

/* Heading */
.perfect-heading {
  color: #12325b;
  font-weight: 800;
  margin-bottom: 30px;
}

/* Black Box */
.perfect-box {
  background: #000;
  max-width: 700px;
  margin: auto;
  padding: 30px 35px;
  text-align: left;
}

/* List */
.perfect-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.perfect-box ul li {
  color: #ffd400;
  padding-left: 22px;
  margin-bottom: 12px;
  position: relative;
  font-size: 15px;
}

/* Yellow Bullet */
.perfect-box ul li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: #ffd400;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

  .perfect-heading {
    font-size: 22px;
  }

  .perfect-box {
    padding: 22px;
  }

  .perfect-box ul li {
    font-size: 14px;
  }
}

/* ===== FAQ Section ===== */

.faq-section {
  background: #16375b;
  padding: 90px 20px;
  text-align: center;
}

.faq-heading {
  color: #ff6a3d;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-box {
  max-width: 850px;
  margin: auto;
  background: #0e2b4f;
  padding: 40px;
  border-radius: 8px;
  text-align: left;
  border: 1px solid #3b5c85;
}

.question {
  color: #ffd400;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 5px;
}

.answer {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {

  .faq-heading {
    font-size: 22px;
  }

  .faq-box {
    padding: 25px;
  }

  .answer {
    font-size: 14px;
  }
}

/* ===== Footer Section ===== */

.footer-section {
  background: linear-gradient(to right, #1a1a1a, #222);
  color: #fff;
  padding: 80px 20px 0;
}

.footer-heading {
  color: #ffd400;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-left: 12px;
}

.footer-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 18px;
  background: #ffd400;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 6px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ffd400;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  border: 1px solid #ffd400;
  padding: 6px 10px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ffd400;
  color: #000;
}

.contact-info p {
  font-size: 14px;
  margin-bottom: 15px;
  color: #ccc;
}

/* Bottom Bar */
.footer-bottom {
  background: #111;
  padding: 20px 0;
  margin-top: 60px;
}

.footer-bottom p {
  font-size: 13px;
  color: #aaa;
}

.bottom-links a {
  color: #aaa;
  font-size: 13px;
  margin-left: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.bottom-links a:hover {
  color: #ffd400;
}

/* Responsive */
@media (max-width: 768px) {

  .footer-section {
    padding: 60px 20px 0;
  }

  .bottom-links {
    text-align: center;
  }

  .bottom-links a {
    display: inline-block;
    margin: 5px 8px;
  }

}

.logo-img {
  height: 60px;   /* Yahan se size control karo */
  width: auto;    /* Image proportion maintain karega */
}
