section.video-page-main img {
    width: 100%;
    border-radius: 10px;
}
      /* ====== RESET & BASE STYLES ====== */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        /* Typography */
        --font-heading: "Montserrat", sans-serif;
        --font-body: "Poppins", sans-serif;

        /* Spacing */
        --spacing-xs: 4px;
        --spacing-sm: 8px;
        --spacing-md: 16px;
        --spacing-lg: 24px;
        --spacing-xl: 32px;
        --spacing-2xl: 48px;
        --spacing-3xl: 64px;

        /* Border Radius */
        --radius-sm: 4px;
        --radius-md: 8px;
        --radius-lg: 16px;
        --radius-xl: 24px;
        --radius-full: 9999px;

        /* Shadow */
        --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
          0 2px 4px -1px rgba(0, 0, 0, 0.06);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
          0 4px 6px -2px rgba(0, 0, 0, 0.05);
        --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
          0 10px 10px -5px rgba(0, 0, 0, 0.04);

        /* Transitions */
        --transition-fast: 0.2s ease;
        --transition-normal: 0.3s ease;
        --transition-slow: 0.5s ease;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: var(--font-body);
        font-size: 16px;
        line-height: 1.5;
        color: var(--color-gray-800);
        background-color: var(--color-gray-100);
        overflow-x: hidden;
      }

      h1,
      h2,
      h3,
      h4,
      h5,
      h6 {
        font-family: var(--font-heading);
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: var(--spacing-md);
        color: var(--color-gray-900);
      }

      p {
        margin-bottom: var(--spacing-md);
      }

      img {
        max-width: 100%;
        height: auto;
        display: block;
      }

      ul,
      ol {
        list-style: none;
      }
      .course-cta:hover a {
    color: white;
}

      .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 var(--spacing-md);
      }
      .faq-item {
    max-width: 75%;
    margin: 0 auto;
    margin-bottom: 30px;
}
.faq-header h1 {
    text-align: center;
    padding-bottom: 30px;
    margin-top: 50px;
}
      /* Button Styles */
      .hero-btns a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 12px 28px;
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: 16px;
        border-radius: var(--radius-md);
        border: none;
        cursor: pointer;
        transition: all var(--transition-normal);
        text-align: center;
      }

      .hero-btns a {
        background-color: transparent;
        color: white;
        border: 2px solid white;
      }
      .btn-submit {
        width: 100%;
        padding: 14px 28px;
        margin-top: var(--spacing-md);
        font-size: 16px;
        position: relative;
        overflow: hidden;
        z-index: 1;
        background: #1e5c82;
        color: white;
        border-radius: 10px;
      }

      .btn-submit::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
        );
        transition: left 0.7s ease;
        z-index: -1;
      }

      .btn-submit:hover::before {
        left: 100%;
      }

      .btn-submit i {
        margin-left: var(--spacing-sm);
        transition: transform var(--transition-normal);
      }

      .btn-submit:hover i {
        transform: translateX(4px);
      }

      /* Section Styles */
      section {
        position: relative;
      }
      section.training-section p {
        color: white;
      }
      .section-header {
        text-align: center;
        margin-bottom: var(--spacing-2xl);
      }

      .section-header h2 {
        text-transform: capitalize !important;
        font-size: 30px;
        margin-bottom: var(--spacing-sm);
        position: relative;
        display: inline-block;
        color: #1e5c82;
      }

      .section-header p {
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
        line-height: 1.6;
      }

      /* ====== HERO BANNER STYLES ====== */
     .hero-banner {
    background: #0b5176;
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
/*    margin-top: -20px !important;*/
}

      .hero-banner::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url("https://images.pexels.com/photos/7130560/pexels-photo-7130560.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1")
          center/cover no-repeat;
        opacity: 0.1;
      }

      .hero-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 2;
      }

      .hero-text {
        flex: 1;
        max-width: 600px;
      }

      .hero-text h1 {
        font-size: 1.8rem;
        color: var(--color-accent-light);
        margin-bottom: var(--spacing-sm);
      }

      .hero-text h2 {
        color: white !important;
        text-transform: capitalize !important;
        font-size: 34px;
        font-weight: 700;
        margin-bottom: var(--spacing-md);
        color: var(--color-white);
      }
      .hero-text h2 span {
        color: var(--color-accent);
        position: relative;
        z-index: 1;
      }

      .hero-text h2 span::after {
        content: "";
        position: absolute;
        bottom: 8px;
        left: 0;
        width: 100%;
        height: 10px;
        background-color: rgba(249, 115, 22, 0.3);
        z-index: -1;
      }

      .hero-text p {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-lg);
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6;
        padding-bottom: 20px;
        font-weight: 400;
      }

      .hero-btns {
        display: flex;
        gap: var(--spacing-md);
      }

      .hero-image {
        flex: 1;
        max-width: 590px;
        position: relative;
      }

      .image-container {
        position: relative;
        z-index: 2;
      }

      .image-container img {
        width: 100%;
        height: auto;
      }
      .image-container img {
    animation: none !important;
}
.bottom-cta a:hover {
    color: black;
}
.image-container {
    position: relative;
    width: 100%;
    max-width: 100% !important;
}

      .floating-card {
        position: absolute;
        background-color: white !important;
        border-radius: var(--radius-md);
        padding: var(--spacing-sm) var(--spacing-md);
        box-shadow: var(--shadow-lg);
        animation: float 6s ease-in-out infinite;
        z-index: 3;
      }

      .floating-card i {
        color: #235b7f;
        font-size: 1.2rem;
      }
      .floating-card span {
        font-weight: 600;
        color: black;
        font-size: 14px;
      }
      ul.sub-points {
        margin-top: 5px;
      }
      .card-1 {
        top: 34%;
        left: 18%;
        animation-delay: 0s;
      }

      .card-2 {
        bottom: 12%;
        left: 16%;
        animation-delay: 1s;
      }

      .card-3 {
        top: 45%;
        right: -4%;
        animation-delay: 2s;
      }

      @keyframes float {
        0%,
        100% {
          transform: translateY(0);
        }
        50% {
          transform: translateY(-15px);
        }
      }

      .wave-bottom {
        display: none !important;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        line-height: 0;
        z-index: 1;
      }

      .wave-bottom svg {
        width: 100%;
        height: 70px;
      }
      .sub-points li {
        color: black !important;
        margin: 0;
        font-size: 13px;
        padding-bottom: 4px;
        font-weight: 500;
      }
/*  2nd section css start    */
    .course-section1 {
    max-width: 1200px;
    margin: 0rem auto;
    padding: 2rem;
    margin-bottom: 35px;
}
      .course-header {
        text-align: center;
        margin-bottom: 3rem;
      }
      .course-header h1 {
        text-transform: capitalize !important;
        font-size: 30px;
        margin-bottom: 1rem;
        font-weight: 700;
      }

      .course-header p {
        font-size: 1.1rem;
        color: var(--gray);
        max-width: 800px;
        margin: 0 auto;
      }

      .course-content {
        display: flex;
        flex-wrap: wrap;
        gap: 2rem;
      }

      .course-description {
        flex: 1;
        min-width: 300px;
      }

      .course-description h2 {
        font-size: 1.8rem;
        color: var(--dark);
        margin-bottom: 1.5rem;
        font-weight: 600;
      }

    .course-description p {
    margin-bottom: 20px;
    color: #00000094;
    font-size: 16px;
    line-height: 1.9;
}
     .challenges-list {
    flex: 1;
    min-width: 300px;
    background: #f8fafc;
    padding: 20px 35px;
    border-radius: 0.75rem;
    border-left: 4px solid #095075;
}
      .challenges-list h3 {
    font-size: 20px;
    color: #095075 !important;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: capitalize !important;
}

      .challenges-list ul {
        list-style-type: none;
      }

     .challenges-list li {
    margin-bottom: 8px;
    padding-left: 1.5rem;
    position: relative;
    color: var(--dark);
}

      .challenges-list li:before {
        content: "•";
        color: #095075;
        font-weight: bold;
        position: absolute;
        left: 0;
      }

      .course-cta {
        text-align: center;
        margin-top: 3rem;
        padding-top: 2rem;
        border-top: 1px solid #e2e8f0;
      }

      .course-cta p {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        color: var(--dark);
      }

      .cta-button {
        display: inline-block;
        background: #095075 !important;
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 0.5rem;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        font-size: 1rem;
      }
/*  3rd section start    */
.courses-container {
    margin-bottom: 35px;
}

      .courses-header {
        text-align: center;
        margin-bottom: 50px;
      }

      .courses-header h2 {
        font-size: 32px;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        text-transform: capitalize !important;
      }
      .courses-header p {
        font-size: 1.1rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
      }

      .courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(348px, 1fr));
    gap: 30px;
}
      .course-card {
        padding-inline: 0px !important;
        padding-block: 0px !important;
        padding: 0px !important;
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      .course-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
      }

      .course-header1 {
        padding: 15px 25px;
        background: #095075 !important;
        color: white;
      }
      .course-header1 h3 {
        font-size: 20px !important;
        margin-bottom: 10px;
        font-size: 20px !important;
        text-transform: capitalize !important;
      }

      .course-body {
        padding: 25px;
      }

      .best-for {
        font-weight: 600;
        color: #095075;
        margin-bottom: 15px;
        display: flex;
        align-items: center;
      }

      .best-for::before {
        content: "★";
        margin-right: 8px;
        color: #095075;
      }
      a.explore-btn {
        background: #095075 !important;
      }

      .course-description {
        margin-bottom: 25px;
        color: var(--text);
      }

      .explore-btn {
        display: inline-block;
        padding: 12px 25px;
        background: var(--primary);
        color: white;
        text-decoration: none;
        border-radius: 5px;
        font-weight: 600;
        transition: background 0.3s ease;
        border: none;
        cursor: pointer;
        width: 100%;
        text-align: center;
      }
     

      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-header h2 {
        color: black;
        font-size: 30px;
        text-transform: capitalize !important;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }
      .section-header p {
        font-size: 1.1rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
      }
      .career-card {
        height: 100%;
        min-height: 300px;
      }

      .career-slider {
        margin: 0 -15px;
      }

      .career-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
/*        margin: 15px;*/
        padding: 30px;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid rgba(0, 0, 0, 0.05);
      }
      .career-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      }

      .career-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 32px;
        color: white;
        background: linear-gradient(135deg, var(--secondary), var(--primary));
      }
      .career-title {
        text-transform: capitalize !important;
        font-size: 20px !important;
        margin-bottom: 15px;
        color: var(--primary);
      }

      .career-description {
        color: var(--text-light);
        font-size: 0.95rem;
      }

      /* Slick slider customization */
      .slick-dots {
        bottom: -40px;
      }

      .slick-dots li button:before {
        font-size: 10px;
        color: var(--secondary);
      }

      .slick-dots li.slick-active button:before {
        color: var(--primary);
      }

      .slick-prev:before,
      .slick-next:before {
        color: var(--primary);
        font-size: 24px;
      }

      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-header h2 {
        font-size: 30px;
        text-transform: capitalize !important;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }
      .section-header p {
        font-size: 1.1rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
      }
      .career-card {
        height: 100%;
        min-height: 300px;
      }

      .career-slider {
        margin: 0 -15px;
      }

      .career-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin: 15px;
        padding: 30px;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid rgba(0, 0, 0, 0.05);
      }

      .career-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      }

      .career-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 32px;
        color: white;
        background: linear-gradient(135deg, var(--secondary), var(--primary));
      }
      .career-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: var(--primary);
      }

      .career-description {
        color: var(--text-light);
        font-size: 0.95rem;
      }

      /* Slick slider customization */
      .slick-dots {
        bottom: -40px;
      }

      .slick-dots li button:before {
        font-size: 10px;
        color: var(--secondary);
      }

      .slick-dots li.slick-active button:before {
        color: var(--primary);
      }

      .slick-prev:before,
      .slick-next:before {
        color: var(--primary);
        font-size: 24px;
      }

      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-header h2 {
        font-size: 30px;
        text-transform: capitalize !important;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }
      .section-header p {
        font-size: 1.1rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
      }
      .career-card {
        height: 100%;
        min-height: 300px;
      }

      .career-slider {
        margin: 0 -15px;
      }

      .career-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin: 15px;
        padding: 30px;
        text-align: center;
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid rgba(0, 0, 0, 0.05);
      }

      .career-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      }

      .career-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 32px;
        color: white;
        background: linear-gradient(135deg, var(--secondary), var(--primary));
      }
      .career-title {
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: var(--primary);
      }

      .career-description {
        color: var(--text-light);
        font-size: 0.95rem;
      }

      /* Slick slider customization */
      .slick-dots {
        bottom: -40px;
      }

      .slick-dots li button:before {
        font-size: 10px;
        color: var(--secondary);
      }

      .slick-dots li.slick-active button:before {
        color: var(--primary);
      }

      .slick-prev:before,
      .slick-next:before {
        color: var(--primary);
        font-size: 24px;
      }
/*5th section cs start */
      .section-header {
        text-align: center;
        margin-bottom: 60px;
      }

      .section-header h2 {
        font-size: 32px;
        text-transform: capitalize;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }
      .section-header p {
        font-size: 1.1rem;
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
      }

      .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(254px, 1fr));
    gap: 12px;
    margin-bottom: 50px;
}

      .benefit-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        padding: 30px;
        position: relative;
        z-index: 1;
        border: 1px solid rgba(0, 0, 0, 0.05);
      }

      .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      }

      .benefit-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 24px;
        color: white;
        background: linear-gradient(135deg, var(--secondary), var(--primary));
      }
      .benefit-title {
        text-transform: capitalize !important;
        font-size: 18px;
        margin-bottom: 15px;
        color: var(--primary);
      }

      .benefit-description {
        color: #7f8c8d;
        font-size: 0.95rem;
      }

      .outro-section {
        background: white;
        border-radius: 10px;
        padding: 40px;
        text-align: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        max-width: 800px;
        margin: 0 auto;
        border: 1px solid rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
      }

      .outro-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--secondary), var(--primary));
      }

      .outro-text {
        font-size: 1.1rem;
        color: #7f8c8d;
        margin-bottom: 0;
      }
/*   6th section css start   */

      .section-header {
        text-align: center;
        margin-bottom: 70px;
      }

      .section-header h2 {
        font-size: 32px;
        font-weight: 700;
        position: relative;
        display: inline-block;
      }
      .section-header p {
        font-size: 1.2rem;
        color: var(--text-light);
        max-width: 800px;
        margin: 10px auto 0;
        font-weight: 300;
      }

      .outcomes-slider {
        margin: 0 -15px 60px;
      }

      .outcome-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
        padding: 40px 30px;
        margin: 0 15px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        z-index: 1;
        border: none;
        height: 100%;
        min-height: 272px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        margin: 10px;
      }
      .outcome-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
      }
      .outcome-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 20px;
        font-size: 30px;
        color: white;
        background: linear-gradient(135deg, var(--secondary), var(--primary));
        box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
        margin: 0 auto;
        margin-bottom: 30px;
      }

      .outcome-title {
        text-transform: capitalize !important;
        font-size: 18px;
        margin-bottom: 15px;
        font-weight: 600;
        line-height: 1.4;
      }

      .certification-section {
    background: #095075 !important;
    padding: 50px;
    text-align: center;
    color: white;
    margin-top: 70px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}
.outcomes-container {
    margin-top: 30px;
}

      .certification-section::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
          circle,
          rgba(255, 255, 255, 0.1) 0%,
          rgba(255, 255, 255, 0) 70%
        );
        transform: rotate(30deg);
      }

      .certification-icon {
        font-size: 60px;
        margin-bottom: 25px;
        color: white;
        position: relative;
        z-index: 2;
      }

      .certification-text {
        font-size: 1.3rem;
        margin-bottom: 0;
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
        font-weight: 300;
        line-height: 1.6;
      }

      .cta-section {
        text-align: center;
        padding: 0 20px;
      }

      .cta-text {
        font-size: 1.5rem;
        margin-bottom: 20px;
        font-weight: 600;
        margin-top: 30px;
      }

      .cta-button1 {
        display: inline-block;
        padding: 12px 27px;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.2rem;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        background: white;
        color: black;
      }

      .cta-button1::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          135deg,
          rgba(255, 255, 255, 0.2) 0%,
          rgba(255, 255, 255, 0) 100%
        );
      }
      /* Slick slider customization */
      .slick-dots {
        bottom: -40px;
      }

      .slick-dots li button:before {
        font-size: 12px;
        color: var(--secondary);
        opacity: 0.5;
      }

      .slick-dots li.slick-active button:before {
        color: var(--primary);
        opacity: 1;
      }

      .slick-prev:before,
      .slick-next:before {
        color: var(--primary);
        font-size: 30px;
        opacity: 1;
      }

      .slick-prev {
        left: -40px;
      }

      .slick-next {
        right: -40px;
      }

      @media (max-width: 1200px) {
        .slick-prev {
          left: -20px;
        }

        .slick-next {
          right: -20px;
        }
      }

      @media (max-width: 992px) {
        .section-header h2 {
          font-size: 2.4rem;
        }

        .outcome-card {
          padding: 35px 25px;
        }
      }

   
      @media (max-width: 768px) {
        .section-header h2 {
          font-size: 24px;
        }

        .section-header p {
          font-size: 1.1rem;
        }

        .certification-section {
          padding: 40px 25px;
        }

        .certification-text {
          font-size: 1.1rem;
        }

        .cta-text {
          font-size: 1.3rem;
        }

        .cta-button {
          padding: 15px 40px;
          font-size: 1.1rem;
        }

        .slick-prev:before,
        .slick-next:before {
          font-size: 24px;
        }
                .section-header h2 {
          font-size: 24px;
        }
          .section-header h2 {
          font-size: 2rem;
        }

        .benefits-grid {
          grid-template-columns: 1fr;
        }

        .benefit-card {
          padding: 25px;
        }

        .outro-section {
          padding: 30px 20px;
        }

        .career-card {
          padding: 25px 20px;
        }

        .career-icon {
          width: 60px;
          height: 60px;
          font-size: 24px;
          margin-bottom: 15px;
        }

        .career-title {
          font-size: 1.2rem;
        }
        .courses-grid {
          grid-template-columns: 1fr;
        }

        .courses-header h2 {
          font-size: 2rem;
        }
      }

      /* ====== RESPONSIVE STYLES ====== */
      @media (max-width: 1042px) {
        .card-3 {
          right: 2%;
        }
        .hero-text h2 {
          font-size: 28px;
        }

        .floating-card {
          transform: scale(0.9);
        }
      }

      @media (max-width: 991px) {
        .hero-content {
          flex-direction: column;
          gap: var(--spacing-2xl);
          text-align: center;
        }

        .hero-text {
          max-width: 100%;
        }

        .hero-btns {
          justify-content: center;
        }


        .section-header.left-align {
          text-align: center;
        }

        .section-header.left-align p {
          margin: 0 auto;
        }
      }

      @media (max-width: 768px) {
        .hero-text h1 {
          font-size: 1.5rem;
        }

        .hero-text p {
          font-size: 1rem;
        }

        .floating-card {
          display: none;
        }
      }

      @media (max-width: 576px) {
           .section-header h2 {
          font-size: 24px;
        }
        .courses-header h2 {
    font-size: 26px;
}

        .outcome-icon {
          width: 60px;
          height: 60px;
          font-size: 25px;
        }

        .cta-text {
          font-size: 1.2rem;
        }

        .slick-prev {
          left: -10px;
        }

        .slick-next {
          right: -10px;
        }
        .main {
    margin-bottom: 0px !important;
}
        .faq-item {
    max-width: 100%;
}
        .course-header h1 {
    font-size: 24px !important;
}
        .course-header1 h1 {
    font-size: 24px;
}
        .hero-btns a {
          max-width: 100%;
          margin: 0 auto;
        }

        .hero-text h2 {
          font-size: 26px;
        }

        .hero-btns {
          flex-direction: column;
          gap: var(--spacing-md);
        }

        .btn-primary,
        .btn-secondary {
          width: 100%;
        }
      }
      section.hero-banner .container {
    padding-bottom: 0px !important;
}

      @media (max-width: 768px) {
        .course-header1 h1 {
          font-size: 2rem;
        }

        .course-content {
          flex-direction: column;
        }

        .challenges-list {
          margin-top: 1rem;
        }
      }

