				


   /* Section-5 Styles */
.section-5 {
    padding: 60px 0;
}

.section-5 h1 {
    font-size: 50px;
    font-weight: bold;
    color: #000;
    opacity: .9;
    line-height: 1.2em;
}

.section-5 h2 {
    font-size: 24px;
    line-height: 35px;
    font-weight:600;
    color: #b89841;
}

.section-5 .list-style-none li {
    list-style: none;
}

   
        a{text-decoration: none;}
        .cta-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 18px 40px;
            font-size: 26px;
            font-weight: bold;
            background: rgba(147,5,4,255);
            color: #fff;
            border-radius: 50px;
            text-decoration: none;
            transition: 0.3s ease-in-out;
        }

        .cta-btn:hover {
            transform: scale(1.1);
           background:#b89841;
           color:#fff;
        }

/* Section-6 Styles */
.section-6 {
    background-color: #f9f9f9;
    text-align: center;
    padding: 60px 0;
}

.section-6 h1 {
    font-size: 80px;
    font-weight: bold;
    color: #000;
    opacity: .9;
    margin-bottom: 15px;
    margin-top: 100px;
    line-height: 100px;
}

.section-6 h1 span, 
.section-5 h1 span {
    color: rgba(147,5,4,255);
    opacity: .9;
}

.section-6 p {
    font-size: 21px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 35px;
}

.section-5 p {
    font-size: 15px;
    max-width: 900px;
    margin: 0 auto 4px;
    line-height: 24px;
}


.section-6 img {
    max-width: 100%;
    margin-top: 30px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .section-5 h1 {
        font-size: 45px;
    }
    .section-6 h1 {
        font-size: 70px;
        line-height: 90px;
    }
}

@media (max-width: 992px) {
    .section-5 h1 {
        font-size: 40px;
    }
    .section-5 h2 {
        font-size: 20px;
        line-height: 30px;
    }
    .section-6 h1 {
        font-size: 60px;
        line-height: 80px;
        margin-top: 80px;
    }
    .section-6 p {
        font-size: 18px;
        line-height: 30px;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .section-5 h1 {
        font-size: 35px;
    }
    .section-5 h2 {
        font-size: 18px;
        line-height: 28px;
    }
    .section-6 h1 {
        font-size: 45px;
        line-height: 65px;
        margin-top: 60px;
    }
    .section-6 p {
        font-size: 16px;
        line-height: 28px;
        max-width: 600px;
    }
    
}

@media (max-width: 576px) {
    .section-5 h1 {
        font-size: 30px;
    }
    .section-5 h2 {
        font-size: 16px;
        line-height: 24px;
    }
    .section-6 h1 {
        font-size: 35px;
        line-height: 50px;
        margin-top: 60px;
    }
    .section-6 p {
        font-size: 14px;
        line-height: 24px;
        max-width: 100%;
    }
    
}

 
/* Course Section */
.section-7 {
    background: linear-gradient(135deg, #fff4f4, #f9f9f9);
    padding: 60px 0;
}

/* Headings */
.section-7 h2 {
    font-size: clamp(28px, 5vw, 50px);
    font-weight: bold;
    color: #222;
    opacity: 0.95;
    line-height: 1.2em;
    margin-bottom: 20px;
}

.section-7 h2 span {
    color: #930504;
}

/* Section List */
.section-list {
    list-style: none;
    padding: 0;
}

.section-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease-in-out;
    margin-bottom: 10px;
}

.section-item:hover {
    transform: translateY(-3px);
}


.section-item a::before  {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: rgba(147, 5, 4, 1);
  mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 512 512" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-52 360V144l176 112-176 112z"/></svg>') no-repeat center;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 512 512" fill="white" xmlns="http://www.w3.org/2000/svg"><path d="M256 8C119 8 8 119 8 256s111 248 248 248 248-111 248-248S393 8 256 8zm-52 360V144l176 112-176 112z"/></svg>') no-repeat center;
  mask-size: cover;
  -webkit-mask-size: cover;
  vertical-align: middle;
  margin-right: 8px;
}


/* Text */
.section-item a {
    text-decoration: none;
    color: #333;
    font-size: clamp(14px, 3vw, 16px);
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    flex-grow: 1;
    flex-basis: 80%;
    word-break: break-word;
    white-space: normal;
}
.section-item a:hover{ color: #333;}

/* Force long text to break into 2-3 lines */
.section-item a span {
    display: block;
    max-width: 80%;
    word-wrap: break-word;
}

/* Start Button */
.start-btn {
    background: rgba(147,5,4,255);
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 100px;
    flex-shrink: 0;
}

.start-btn:hover {
    background: #b89841;
    color: #fff;
}

/* Responsive Adjustments */
@media screen and (max-width: 768px) {
    .section-item {
        flex-direction: row;
        align-items: center;
    }

    .section-item a {
        flex: 1;
    }

    /* Smaller Start Button on Mobile */
    .start-btn {
        font-size: 12px;
        padding: 5px 10px;
        min-width: 80px;
        border-radius: 4px;
    }
}


/* ========================================= */
/* SECOND SECTION - Course Overview Styling */
/* ========================================= */

.section-8 {
    padding: 60px 0;
    background: rgba(250, 220, 220, 1);
    text-align: center;
}

.section-8 .container {
    max-width: 1000px;
    margin: auto;
}

/* Headings */
.section-8 h1 {
    font-size: clamp(30px, 5vw, 42px);
    font-weight: bold;
    color: #000;
    line-height: 1.2em;
    margin-bottom: 15px;
}

.section-8 h1 span {
    color: #b89841;
}

/* Subheading */
.section-8 p.sub-heading {
    font-size: clamp(16px, 4vw, 20px);
    color: #333;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

/* Course Items */
.course-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.course-box:hover {
    transform: translateY(-5px);
}


.course-box::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 5px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='rgba(147, 5, 4, 1)' d='M256 32C114.6 32 0 125.1 0 240c0 49.1 23.8 94.3 63.7 129.4C53 420.2 27.6 454.6 27.3 455c-2.5 3.4-2.8 8-.7 11.8S32.3 480 37.3 480c61.1 0 110.8-25.2 139.1-44.2 24.3 5.6 49.5 8.2 75.6 8.2 141.4 0 256-93.1 256-208S397.4 32 256 32z'/%3E%3C/svg%3E") no-repeat center center;
  background-size: contain;
}


/* Text Content */
.course-content {
    text-align: left;
}

.course-content h2 {
    font-size: clamp(18px, 3.5vw, 22px);
    color: #b89841;
    margin-bottom: 8px;
    font-weight:600;
}

.course-content p {
    font-size: clamp(14px, 3vw, 16px);
    color: #555;
    margin: 0;
}

/* Image */
.section-8 img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .course-box {
        flex-direction: column;
        text-align: center;
    }
    .course-content {
    text-align: center;
}
}


       /* Manifest Section */
.manifest-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    padding: 50px;
    text-align: center;
    background: url('/dsc_3946editwithoughletter1636351188628-1-1662166831084.webp') center/cover no-repeat; /* Background Image */
}

/* Light Overlay */
.manifest-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5); /* Very Light Overlay */
}

/* Text Content */
.text-content {
    position: relative;
    max-width: 700px;
    z-index: 2; /* Ensure text appears above the overlay */
}

.text-content h1 {
    font-size: 42px; /* Increased for better readability */
    font-weight: bold;
    color: #940504;
    margin-bottom: 15px;
}

.text-content p {
    font-size: 24px; /* Increased for better readability */
    line-height: 1.8;
    color: #231f20;
    margin-bottom: 20px;
    font-weight: 500;
}

/* CTA Button */
.manifest-section .cta-btn {
    display: inline-block;
    padding: 14px 24px;
    background:rgba(147,5,4,255);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 20px;
    transition: 0.3s;
    width: 300px;
}

.manifest-section .cta-btn:hover {
    background-color: #b89841;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .manifest-section {
        padding: 40px;
        height: auto;
        min-height: 100vh;
        flex-direction: column;
    }
    
    .text-content {
        width: 90%;
    }

    .text-content h1 {
        font-size: 38px;
    }

    .text-content p {
        font-size: 22px;
    }

    .manifest-section .cta-btn {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 768px) {
    .text-content h1 {
        font-size: 34px; /* Bigger for better visibility */
    }

    .text-content p {
        font-size: 20px; /* Increased size */
    }

    .manifest-section .cta-btn {
        padding: 12px 20px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .manifest-section {
        padding: 25px;
    }

    .text-content h1 {
        font-size: 32px; /* Still large on small screens */
    }

    .text-content p {
        font-size: 18px;
        line-height: 1.6;
    }

    .manifest-section .cta-btn {
        font-size: 16px;
        padding: 10px 16px;
        width: 100%;
        max-width: 260px;
    }
}

    /* General Styles */
.section-last {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensures it covers full screen height */
    text-align: center;
    padding: 20px;
}

/* Bonus Section */
.bonus-container {
    max-width: 800px;
    background: rgba(255, 255, 255, 0.15); /* Light overlay effect */
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    animation: fadeIn 1.5s ease-in-out;
    width: 100%;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.bonus-container h2 {
    font-size: 52px;
    color: #940504;
    margin-bottom: 20px;
}

.bonus-container p {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Bonus List */
.bonus-list {
    text-align: left;
    font-size: 26px;
    line-height: 2;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.bonus-list li {
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.bonus-list li::before {
        content: "🌟";
    margin-right: 15px;
    font-size: 28px;
    color: #ffddcc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .bonus-container {
        padding: 40px;
        max-width: 90%;
    }

    .bonus-container h2 {
        font-size: 42px;
    }

    .bonus-container p {
        font-size: 22px;
    }

    .bonus-list {
        font-size: 22px;
    }

    .bonus-list li::before {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .bonus-container {
        padding: 20px;
         max-width: 100%;
    }

    .bonus-container h2 {
        font-size: 36px;
    }

    .bonus-container p {
        font-size: 20px;
    }

    .bonus-list {
        font-size: 20px;
    }

    .bonus-list li::before {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .bonus-container {
        padding: 5px;
        max-width: 100%;
    }
    

    .bonus-container h2 {
        font-size: 27px;
    }

    .bonus-container p {
        font-size: 18px;
    }

    .bonus-list {
        font-size: 18px;
    }

    .bonus-list li::before {
        font-size: 20px;
    }
}

a:hover {
    color: #fff;
}
a:not(.btn):hover {
    text-decoration: none;
}


