/* ========================================
   Header Section
   ======================================== */
   .course-page-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .course-page-header .header-box {
    padding: 15px 0;
  }
  
  .course-page-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .course-page-header .head-left,
  .course-page-header .head-right {
    display: flex;
    align-items: center;
  }
  
  .course-page-header .logoBox {
    line-height: 0;
  }
  
  .course-page-header .logo img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
  }
  
  .course-page-header .header-cta {
    margin-left: 20px;
  }
  
  .course-page-header .header-cta .btn {
    padding: 10px 25px;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  
  /* ========================================
     Top Promotional Banner
     ======================================== */
  .top-promo-banner {
    background: #c62828;
    color: white;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
  }
  
  .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap; /* Keep on one line for desktop */
    max-width: 1400px; /* Increased to use more width */
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .banner-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    flex-shrink: 1; /* Allow shrinking if needed */
  }
  
  .banner-icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
  }
  
  .banner-text {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    line-height: 1.3;
    white-space: nowrap; /* Keep text on one line on desktop */
    overflow: hidden;
    text-overflow: ellipsis; /* Add ellipsis if text is too long */
  }
  
  .banner-cta-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(255, 255, 255, 0.3),
                0 0 20px rgba(255, 255, 255, 0.1);
    animation: glassPulse 3s ease-in-out infinite;
  }
  
  /* Glass shimmer/shine animation */
  .banner-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent
    );
    animation: glassShimmer 3s ease-in-out infinite;
    z-index: 0;
  }
  
  /* Glass glow animation */
  .banner-cta-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent);
    transform: translate(-50%, -50%);
    animation: glassGlow 2s ease-in-out infinite;
    z-index: 0;
  }
  
  .banner-cta-btn > * {
    position: relative;
    z-index: 1;
  }
  
  .banner-cta-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3), 
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                0 0 30px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
  }
  
  .banner-cta-btn:active {
    transform: translateY(0) scale(1.02);
  }
  
  /* Keyframe animations */
  @keyframes glassShimmer {
    0% {
      left: -100%;
    }
    50% {
      left: 100%;
    }
    100% {
      left: 100%;
    }
  }
  
  @keyframes glassPulse {
    0%, 100% {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2), 
                  inset 0 1px 0 rgba(255, 255, 255, 0.3),
                  0 0 20px rgba(255, 255, 255, 0.1);
    }
    50% {
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 
                  inset 0 1px 0 rgba(255, 255, 255, 0.4),
                  0 0 30px rgba(255, 255, 255, 0.2);
    }
  }
  
  @keyframes glassGlow {
    0%, 100% {
      width: 0;
      height: 0;
      opacity: 0;
    }
    50% {
      width: 200px;
      height: 200px;
      opacity: 0.3;
    }
  }
  
  /* ========================================
     Hero Section (Home Banner Style)
     ======================================== */
  
  /* CTA Button */
  .home-banner {
    padding: 80px 0;
  }
  .main-head {
    line-height: 1.1;
  }
  .button {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    background: #c62828;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .button:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(198, 40, 40, 0.3);
  }
  
  /* Price Badge */
  .price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1a1a1a;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
  }
  
  .price-original {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
  }
  
  .price-discounted {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
  }
  
  .price-icon {
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%,
    100% {
      opacity: 1;
    }
    50% {
      opacity: 0.6;
    }
  }
  
  /* Stats Bar */
  .separator {
    color: #ddd;
  }
  
  .highlight-count {
    font-weight: 600;
    color: #1a1a1a;
  }
  
  .stars {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    color: #ddd;
  }
  
  .stars::before {
    content: "★★★★★";
    letter-spacing: 3px;
  }
  
  .stars::after {
    content: "★★★★★";
    position: absolute;
    left: 0;
    top: 0;
    width: calc(var(--rating) / 5 * 100%);
    overflow: hidden;
    color: #ffd700;
    letter-spacing: 3px;
  }
  
  .reviews-count {
    font-size: 14px;
    color: #666;
  }
  
  /* Home Banner Right (Image Section) */
  .home-banner-right {
    position: relative;
  }
  
  .banner-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .banner-img {
    width: 100%;
    max-width: 500px;
  }
  
  .banner-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
    object-fit: cover;
  }
  
  /* ========================================
     Master Modules Section
     ======================================== */
  .master-modules-section {
    padding: 80px 0;
    position: relative;
  }
  
  /* White gradient overlay for bottom section - strong fade */
  .master-modules-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.5) 30%,
      rgba(255, 255, 255, 0.85) 70%,
      rgba(255, 255, 255, 0.95) 100%
    );
    pointer-events: none;
    z-index: 5;
  }
  .section-subtitle {
    font-size: 15px;
    text-align: center;
    color: #666;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }
  
  .module-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
  }
  
  /* Dark gradient overlay for text readability */
  .module-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.6) 0%,
      rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
    pointer-events: none;
  }
  
  /* Full Width Module */
  .module-card.full-width {
    grid-column: span 2;
    height: 320px;
  }
  
  /* Module text content overlay */
  .module-content {
    position: relative;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
    color: white;
  }
  
  .module-tag {
    display: inline-block;
    font-size: 25px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.75);
  }
  
  /* Main large title - this is the actual module name */
  .module-main-title {
    font-size: 50px;
    font-family: "Georgia", "Times New Roman", serif;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
  }
  
  .module-description {
    font-size: 22px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 90%;
  }
  
  .view-curriculum-btn-wrap {
    position: relative;
    z-index: 10;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
  }
  
  .btn-dark {
    background: #1a1a1a;
    color: white;
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }
  
  .btn-dark:hover {
    background: #2a2a2a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  
  .btn-dark svg {
    width: 22px;
    height: 22px;
  }
  
  /* ========================================
     Promotional Banner
     ======================================== */
  .promotional-banner {
    background: #c62828;
    color: white;
    overflow: hidden;
  }
  
  .promo-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .promo-content {
    padding-right: 40px;
  }
  
  .promo-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 40px;
    color: white;
  }
  
  .promo-title span {
    color: #fdb913 !important;
    display: inline;
    font-weight: 700;
  }
  
  .btn-yellow {
    background: #fdb913;
    color: #1a1a1a;
    font-weight: 700;
    padding: 18px 42px;
    font-size: 1.15rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }
  
  .btn-yellow:hover {
    background: #fdc82f;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 185, 19, 0.4);
  }
  
  .promo-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  
  .promo-image img {
    width: 538.66px;
    height: 486px;
    border-radius: 0;
    object-fit: cover;
    max-width: 100%;
  }
  /* ========================================
     Instructors Section
     ======================================== */
  .instructors-section {
    padding: 80px;
  }
  
  .instructors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  
  .instructor-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #000000;
  }
  
  .instructor-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
  }
  
  .instructor-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
  }
  
  .instructor-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 20px;
  }
  
  .instructor-name {
    font-size: 30px;
    font-weight: 700;
    margin: 0;
    color: #1a1a1a;
    line-height: 1.2;
  }
  
  .instructor-designation {
    font-size: 20px;
    color: #666;
    margin-bottom: 10px;
  }
  
  .instructor-companies {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 30px;
  }
  
  .company-logo {
    display: flex;
    align-items: center;
    width: 130px;
    height: 130px;
  }
  
  .instructor-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
  }
  
  /* ========================================
     FAQ Section
     ======================================== */
  .faq-section-landing {
    padding: 80px 0;
    background: white;
  }
  
  .faq-container {
    max-width: 900px;
    margin: 0 auto;
  }
  
  .faq-item {
    background: #f9f9f9;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a1a1a;
  }
  
  .faq-icon {
    font-size: 28px;
    font-weight: 300;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
  }
  
  .faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
  }
  
  /* ========================================
     Responsive Design
     ======================================== */
  
  @media (max-width: 992px) {
    .home-banner-wrap,
    .promo-grid,
    .instructors-grid {
      grid-template-columns: 1fr;
      gap: 25px;
    }
  
    .top-promo-banner {
      top: 0;
    }
  
    .instructor-card {
      padding: 30px;
    }
  
    .instructor-photo {
      width: 90px;
      height: 90px;
    }
  
    .instructor-name {
      font-size: 24px;
    }
  
    .instructor-designation {
      font-size: 15px;
    }
  
    .company-logo {
      height: 35px;
    }
  
    .modules-grid {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  
    .module-card.full-width {
      grid-column: span 1;
      height: 320px;
    }
  
    .module-card {
      height: 280px;
    }
  
    .module-content {
      padding: 30px;
    }
  
    .module-tag {
      font-size: 22px;
    }
  
    .module-main-title {
      font-size: 42px !important;
    }
  
    .module-description {
      font-size: 18px;
      max-width: 100%;
    }
  
    .home-banner-left {
      max-width: 100%;
    }
  
    .main-head {
      font-size: 2.8rem;
    }
  
    .divider {
      display: none;
    }
  
    .section-title {
      font-size: 34px;
    }
  
    .promo-title {
      font-size: 32px;
    }
  }
  
  @media (max-width: 768px) {
    .home-banner {
      padding: 60px 0;
    }
  
    .main-head {
      font-size: 2.2rem;
    }
  
    .comm-para p {
      font-size: 1rem;
    }
  
    .button {
      width: 100%;
      text-align: center;
    }
  
    .experience-number,
    .rating-number {
      font-size: 1.5rem;
    }
  
    .section-title {
      font-size: 28px;
    }
  
    .top-promo-banner {
      top: 0;
      padding: 10px 0;
    }
  
    .banner-content {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      padding: 0 15px;
    }
  
    .banner-left {
      flex-wrap: wrap;
      gap: 8px;
    }
  
    .banner-icon {
      font-size: 18px;
    }
  
    .banner-text {
      font-size: 14px;
      flex: 1;
      white-space: normal; /* Allow wrapping on mobile */
      overflow: visible;
      text-overflow: clip;
    }
  
    .banner-cta-btn {
      width: 100%;
      padding: 12px 20px;
      font-size: 14px;
      text-align: center;
      justify-content: center;
    }
  
    .master-modules-section,
    .instructors-section,
    .testimonials-section-landing,
    .faq-section-landing {
      padding: 50px 0;
    }
    .promo-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    .promo-content {
      padding-right: 0;
      text-align: center;
    }
    .promo-title {
      font-size: 42px;
    }
    .promo-image {
      justify-content: center;
    }
  
    .promo-image img {
      width: 100%;
      height: auto;
    }
    .btn-dark{
      padding: 10px 38px;
    }
    .course-page-header .logo img {
      max-height: 40px;
    }
  
    .course-page-header .header-cta .btn {
      padding: 8px 18px;
      font-size: 0.85rem;
    }
  
    .top-promo-banner {
      top: 0;
    }
    .view-curriculum-btn-wrap {
      margin-top: 0px;
      margin-bottom: 0px;
    }
  }
  
  @media (max-width: 480px) {
    .course-page-header .header-box {
      padding: 10px 0;
    }
  
    .course-page-header .logo img {
      max-height: 35px;
    }
  
    .course-page-header .header-cta .btn {
      padding: 6px 15px;
      font-size: 0.8rem;
    }
  
    .top-promo-banner {
      top: 0;
      padding: 10px 0;
    }
  
    .banner-content {
      padding: 0 15px;
      gap: 10px;
    }
  
    .banner-text {
      font-size: 13px;
      white-space: normal; /* Allow wrapping on small mobile */
      overflow: visible;
      text-overflow: clip;
    }
  
    .banner-cta-btn {
      padding: 11px 16px;
      font-size: 13px;
      min-height: 44px;
    }
  
    .banner-icon {
      font-size: 16px;
    }
  
    .home-banner {
      padding: 40px 0;
    }
  
    .main-head {
      font-size: 1.8rem;
    }
  
    .promo-title {
      font-size: 32px;
    }
  
    .btn-yellow {
      padding: 14px 32px;
      font-size: 1rem;
    }
  
    .instructor-card {
      padding: 24px;
    }
  
    .instructor-name {
      font-size: 20px;
    }
  
    .instructor-designation {
      font-size: 14px;
    }
  
    .instructor-companies {
      gap: 12px;
    }
  
    .company-logo {
      height: 30px;
    }
  
    .comm-para p {
      font-size: 0.95rem;
    }
  
    .button {
      padding: 12px 24px;
      font-size: 0.95rem;
    }
  
    .experience-number,
    .rating-number {
      font-size: 1.3rem;
    }
  
    .logo-container img {
      max-height: 40px;
    }
  
    .wheat-icon-wrapper {
      width: 20px;
      height: 20px;
    }
  
    .module-card {
      height: 240px;
    }
  
    .module-card.full-width {
      height: 240px;
    }
  
    .module-content {
      padding: 24px;
    }
  
    .module-tag {
      font-size: 18px;
      letter-spacing: 2px;
    }
  
    .module-main-title {
      font-size: 32px !important;
    }
  
    .module-description {
      font-size: 16px;
    }
  
    .instructor-header {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }
    /* Sticky Enroll Now Button Styles */
    .sticky-enroll-button {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9999;
      padding: 15px 20px;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.9));
      backdrop-filter: blur(10px);
      box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
      display: none;
      opacity: 0;
      transform: translateY(100%);
      transition: all 0.3s ease;
    }

    .sticky-enroll-button.show {
      display: block;
      opacity: 1;
      transform: translateY(0);
    }

    .sticky-enroll-button .sticky-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 600px;
      margin: 0 auto;
      padding: 16px 32px;
      background: linear-gradient(135deg, #dc2626, #b91c1c);
      color: #fff;
      font-size: 18px;
      font-weight: 700;
      text-decoration: none;
      border-radius: 50px;
      box-shadow: 0 4px 15px rgba(220, 38, 38, 0.4);
      transition: all 0.3s ease;
      gap: 10px;
    }

    .sticky-enroll-button .sticky-btn:hover {
      background: linear-gradient(135deg, #b91c1c, #991b1b);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(220, 38, 38, 0.5);
    }

    .sticky-enroll-button .sticky-btn:active {
      transform: translateY(0);
    }

    .sticky-enroll-button .btn-text {
      flex: 1;
      text-align: center;
    }

    .sticky-enroll-button .btn-icon {
      font-size: 20px;
      transition: transform 0.3s ease;
    }

    .sticky-enroll-button .sticky-btn:hover .btn-icon {
      transform: translateX(5px);
    }

    /* Mobile Styles */
    @media (max-width: 639px) {
      .sticky-enroll-button {
        padding: 12px 15px;
      }

      .sticky-enroll-button .sticky-btn {
        padding: 14px 24px;
        font-size: 16px;
        border-radius: 40px;
      }

      .sticky-enroll-button .btn-icon {
        font-size: 18px;
      }
    }

    /* Tablet Styles */
    @media (min-width: 640px) and (max-width: 991px) {
      .sticky-enroll-button {
        padding: 14px 18px;
      }

      .sticky-enroll-button .sticky-btn {
        padding: 15px 28px;
        font-size: 17px;
      }
    }

    /* Prevent body scrollbar jump when sticky button appears */
    body.sticky-button-active {
      padding-bottom: 80px;
    }

    @media (max-width: 639px) {
      body.sticky-button-active {
        padding-bottom: 70px;
      }
    }
  