
      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }

      body {
        background-color: #f8f9ff;
        color: var(--dark);
        line-height: 1.7;
      }

      @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

   .about-training {
    padding: 0px 20px;
    position: relative;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 50px;
}
      .section-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
      }

      .content-left {
        flex: 1 1 45%;
        min-width: 300px;
        position: relative;
      }

      .main-image {
        width: 100%;
        border-radius: 15px;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        transition: transform 0.3s ease;
        min-height: 460px;
        object-fit: cover;
      }

      .main-image:hover {
        transform: translateY(-5px);
      }

      .image-badge {
        position: absolute;
        left: -20px;
        top: -20px;
        background: white;
        padding: 15px 20px;
        border-radius: 10px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 2;
      }

      .image-badge i {
        font-size: 24px;
        color: #095075;
      }

      .image-badge-text {
        font-weight: 600;
        color: var(--dark);
      }

      .content-right {
        flex: 1 1 45%;
        min-width: 300px;
      }

      .section-tag {
        display: inline-block;
        background: #0950752e;
        color: #095075;
        padding: 6px 15px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 15px;
      }

      .section-title {
        text-transform: capitalize !important;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 7px;
        line-height: 1.3;
        color: var(--dark);
      }

.section-description {
    margin-bottom: 8px;
    font-size: 16px;
}
    .features-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: 12px;
      }

      .feature-item {
        align-items: center;
        display: flex;
        align-items: flex-start;
        gap: 15px;
      }

      .feature-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: #0950751f;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #095075;
        font-size: 20px;
      }

   .feature-text strong {
    color: var(--dark);
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
}
.content-right h6 {
    font-size: 20px;
    text-transform: capitalize !important;
    margin-block: 14px;
}

      .feature-text p {
    font-size: 16px;
}
      /* tab css start */
      :root {
        --primary-color: #4361ee;
        --secondary-color: #3f37c9;
        --accent-color: #4895ef;
        --light-color: #f8f9fa;
        --dark-color: #212529;
        --text-color: #495057;
        --border-radius: 8px;
        --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        --transition: all 0.3s ease;
      }

      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      }

      body {
        background-color: #f5f7fb;
        color: var(--text-color);
        line-height: 1.6;
      }

    .course-container {
    max-width: 1200px;
    padding: 0 1.5rem;
    margin: 0 auto;
    padding-top: 50px;
}
      .section-header {
        text-align: center;
        margin-bottom: 3rem;
      }

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

      .section-header p {
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
        color: var(--text-color);
      }

      .tabs {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 2rem;
        gap: 0.5rem;
      }

      .tab-btn {
        padding: 0.8rem 1.5rem;
        background: white;
        border: none;
        border-radius: var(--border-radius);
        cursor: pointer;
        font-weight: 600;
        color: var(--dark-color);
        transition: var(--transition);
        box-shadow: var(--box-shadow);
        margin: 0.2rem;
        font-size: 0.95rem;
      }

      .tab-btn:hover {
        background: #095075;
        color: white;
      }

      .tab-btn.active {
        background: #095075;
        color: white;
      }

      .tab-content {
        display: none;
        background: white;
        border-radius: var(--border-radius);
        padding: 2rem;
        box-shadow: var(--box-shadow);
        animation: fadeIn 0.5s ease;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
          transform: translateY(10px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .tab-content.active {
        display: block;
      }
      .unit-title {
        text-transform: capitalize !important;
        font-size: 22px;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #eee;
      }

      .module-container {
        margin-bottom: 2.5rem;
      }

      .module-title {
        text-transform: capitalize !important;
        font-size: 1.2rem;
        color: #095075;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
      }

      .module-title::before {
        content: "▹";
        margin-right: 0.5rem;
        color: #095075;
      }

      .topic-list {
        list-style-type: none;
        padding-left: 1.5rem;
      }

      .topic-item {
        margin-bottom: 0.8rem;
        position: relative;
        padding-left: 1.5rem;
      }

      .topic-item::before {
        content: "•";
        position: absolute;
        left: 0;
        color: var(--accent-color);
        font-weight: bold;
      }
      /* services css start */
      .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
      }

      /* Section Styles */
      .join-section {
        padding: 20px 0;
      }

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

      .section-header h2 {
        text-transform: capitalize !important;
        font-size: 30px;
        color: #2c3e50;
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
      }

      .section-header p {
        font-size: 1.1rem;
        color: #7f8c8d;
        max-width: 700px;
        margin: 0 auto;
      }

      /* Cards Grid */
      .audience-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
      }

      .audience-card {
        background: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        border-top: 4px solid #095075;
      }

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

      .card-icon {
        font-size: 2.5rem;
        margin-bottom: 20px;
        color: #095075;
      }

      .audience-card h3 {
        text-transform: capitalize !important;
        font-size: 18px;
        margin-bottom: 15px;
        color: #2c3e50;
      }
      .audience-card p {
        color: #7f8c8d;
        font-size: 1rem;
      }
      /* slider css start */

      .opportunities-section {
        padding: 30px 0;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        position: relative;
        overflow: hidden;
      }
      .section-header {
        text-align: center;
        margin-bottom: 40px;
      }

      .section-header h2 {
        text-transform: capitalize !important;
        font-size: 32px;
        color: #2c3e50;
        margin-bottom: 15px;
        font-weight: 700;
      }

      .section-header p {
        color: #7f8c8d;
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
      }

      /* Slider Styles */
      .opportunities-slider {
        width: 90%;
        margin: 0 auto;
        position: relative;
      }

      .opportunity-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        margin: 15px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        height: 400px;
        position: relative;
      }

      .opportunity-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      }

      .card-image {
        height: 220px;
        overflow: hidden;
        position: relative;
      }

      .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
      }

      .opportunity-card:hover .card-image img {
        transform: scale(1.05);
      }

      .card-content {
        padding: 25px;
        position: relative;
        z-index: 1;
      }

      .card-content h3 {
        text-transform: capitalize !important;
        color: #2c3e50;
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 600;
      }

      .card-content p {
        color: #7f8c8d;
        font-size: 0.95rem;
        line-height: 1.5;
      }

      .role-tag {
        display: inline-block;
        background: #3498db;
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        margin-top: 15px;
        font-weight: 600;
      }

      /* Slider Navigation */
      .slick-prev,
      .slick-next {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        z-index: 10;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
      }

      .slick-prev:hover,
      .slick-next:hover {
        background: white;
      }

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

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

      .slick-prev:before,
      .slick-next:before {
        color: #2c3e50;
        font-size: 24px;
        opacity: 1;
      }

      /* Dots */
      .slick-dots li button:before {
        font-size: 10px;
        color: #bdc3c7;
      }

      .slick-dots li.slick-active button:before {
        color: #3498db;
      }
      /* enroll css start */
.enroll-section {
    position: relative;
    overflow: hidden;
    background: white;
    padding-top: 50px;
}
      .enroll-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        text-align: center;
      }

      .enroll-content {
        flex: 1;
        padding-right: 40px;
      }

      .enroll-heading {
        text-transform: capitalize !important;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 20px;
        line-height: 1.2;
      }
      .enroll-subheading {
        font-size: 1.2rem;
        margin-bottom: 30px;
        line-height: 1.6;
        opacity: 0.9;
      }

      .enroll-cta {
        display: inline-block;
        background: #ffffff;
        color: black;
        padding: 15px 35px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
      }

      .enroll-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
      }

      .enroll-cta i {
        margin-right: 10px;
      }

      .enroll-image {
        flex: 1;
        position: relative;
        text-align: center;
      }

      .enroll-image img {
        max-width: 100%;
        height: auto;
        border-radius: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        animation: float 6s ease-in-out infinite;
      }

      .enroll-badge {
        position: absolute;
        top: -20px;
        right: -20px;
        background: #ffd700;
        color: #333;
        padding: 15px;
        border-radius: 50%;
        width: 80px;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        animation: pulse 2s infinite;
      }

      .enroll-badge span {
        display: block;
        font-size: 0.7rem;
        font-weight: 400;
      }

      /* Background Elements */
      .enroll-circle {
        position: absolute;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
      }

      .circle-1 {
        width: 300px;
        height: 300px;
        top: -150px;
        right: -150px;
      }

      .circle-2 {
        width: 200px;
        height: 200px;
        bottom: -100px;
        left: -100px;
      }

      /* Animations */
      @keyframes float {
        0% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-20px);
        }
        100% {
          transform: translateY(0px);
        }
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
        100% {
          transform: scale(1);
        }
      }

      .section-header h1 {
        text-transform: capitalize !important;
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 20px;
      }

      .section-header .tagline {
        font-size: 1.25rem;
        color: #4b5563;
        max-width: 700px;
        margin: 0 auto;
        font-weight: 500;
      }

      /* Features Grid */
     .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

    .feature-card {
    background: white;
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #094e72;
}

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

      .feature-title {
        text-transform: capitalize !important;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
        color: #111827;
      }

      .feature-desc {
        color: #4b5563;
        margin-bottom: 20px;
      }

      .tools-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 15px;
      }

     .tool-pill {
    background-color: #e0e7ff;
    color: #095075;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

      /* Responsive Adjustments */
      @media (max-width: 768px) {
        .container {
          padding: 60px 15px;
        }

        .section-header h1 {
          font-size: 2rem;
        }

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

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

        .feature-card {
          padding: 30px 25px;
        }
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .enroll-container {
          flex-direction: column;
          text-align: center;
        }

        .enroll-content {
          padding-right: 0;
          margin-bottom: 40px;
        }

        .enroll-heading {
          font-size: 2.4rem;
        }

        .enroll-image {
          margin-top: 30px;
        }
      }

      @media (max-width: 768px) {
      

        .enroll-heading {
          font-size: 2rem;
        }

        .enroll-subheading {
          font-size: 1rem;
        }

        .enroll-cta {
          padding: 12px 30px;
          font-size: 1rem;
        }

        .enroll-badge {
          width: 60px;
          height: 60px;
          font-size: 1rem;
          top: -15px;
          right: -15px;
        }
      }

      @media (max-width: 576px) {
      
        .enroll-heading {
          font-size: 1.8rem;
        }

        .enroll-badge {
          width: 50px;
          height: 50px;
          font-size: 0.8rem;
        }
      }

      /* Responsive Styles */
      @media (max-width: 992px) {
        .opportunity-card {
          height: 380px;
        }

        .card-image {
          height: 200px;
        }
      }

      /* Responsive Adjustments */

      @media (max-width: 768px) {
        .opportunities-slider {
          width: 85%;
        }

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

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

        .audience-grid {
          grid-template-columns: 1fr;
          gap: 20px;
        }

        .audience-card {
          padding: 25px;
        }

        .tabs {
          flex-direction: column;
          align-items: stretch;
        }

        .tab-btn {
          width: 100%;
          margin: 0.2rem 0;
        }

        .tab-content {
          padding: 1.5rem;
        }
        .section-title {
          font-size: 2rem;
        }

        .image-badge {
          right: 0;
          bottom: -30px;
          position: static;
        }
        .content-left,
        .content-right {
          flex: 1 1 100%;
        }
      }

      @media (max-width: 550px) {
        .section-header h2 {
          font-size: 26px;
        }
        .unit-title {
          font-size: 18px;
        }

        .opportunities-slider {
          width: 80%;
        }

        .opportunity-card {
          height: 350px;
          margin: 10px;
        }

        .card-image {
          height: 180px;
        }

        .card-content {
          padding: 20px;
        }

        .card-content h3 {
          font-size: 1.3rem;
        }
        .section-title {
          font-size: 23px;
        }
      }