/* training US HERO SECTION */
.training-section {
  position: relative;
  width: 100%;
  height: 45vh; /* slightly shorter for balance */
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.training-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

.training-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.163); /* darker overlay for better contrast */
  z-index: 1;
}

.training-content {
    padding-top: 60px;
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
}

.training-content h1 {
  font-family: var(--font-primary);
  font-size: 42px;
  font-weight: 700;
  /* margin-bottom:30px; */
  margin: 16px 0;
}



/* Buttons */
.training-content .breadcrumb-btn {
  background: rgba(255, 255, 255, 0.35);
  border: none;
  color: #fff;
  padding: 12px 28px;
  font-size: 18px;
  letter-spacing: 0.5px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
 transition: transform 0.3s ease ;
  font-weight: 500; 
  text-decoration: none;
  cursor: text;
font-family: var(--font-secondary);

}
.training-content .breadcrumb-btn:hover {
 background: rgba(255, 255, 255, 0.25);
  transform: scale(1.01);
}


/* comprehensive section css  */

.comprehensive-section{
    padding: 80px 60px;
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}
.comprehensive-section-title{
    
    color: #091d3e;
    margin-bottom: 15px;
    text-align: center;
    font-family: var(--font-primary);
font-size: var(--h2-size);
font-weight: var(--h2-weight);
line-height: var(--h2-line-height);
}
.comprehensive-section-description{
    
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 40px;
    color: #000000;
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
}
.comprehensive-section-tabs{
    justify-content: space-between;
    color: #091d3e;
    background-color: #f0f0f0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    overflow-x: scroll;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    white-space: nowrap;
    display: flex;
    flex-wrap: nowrap;
}
.comprehensive-section-tabs .nav-link{
    font-size: 20px;
    font-weight: 600;
    color: #1c0d45;
    border-radius: 0%;
}
.comprehensive-section-tabs .nav-link.active{
    background-color:#f96e46;
    color: white;
}
.comprehensive-section-tabs .nav-item{
    width: 20%;
    border-right: 2px solid #b4b4b4 
}
.comprehensive-section-tabs .nav-link {
    width: 100%;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 15px;
}
.comprehensive-section-tabs .nav-item:first-child .nav-link {
    border-top-left-radius: 20px;
}
.comprehensive-section-tabs .nav-item:last-child .nav-link{
    border-top-right-radius: 20px;
}
.comprehensive-cards-main-container{
    padding: 30px 40px;
}
.comprehensive-section-tabs-content{
    border: 2px solid #b4b4b4;
    border-radius: 20px;
}
.comprehensive-section-tabs .nav-item:last-child{
    border: unset;
}



.card-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 35px;
    }

    .card {
      background: #fff;
      border-radius: 30px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: 0.3s;
      border: 1px solid #b4b4b4;
    }

    .card:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    }

    .card-header {
      background: #0a2146;
      padding: 0px;
      text-align: center;
      color: white;
      font-size: 14px;
      font-weight: bold;
    }

    .card-header img {
      width: 100%;
      height: 184px;
      object-fit: cover;
    }

    .card-body {
      padding: 20px;
      padding-bottom: 0px;
      display: flex;
      flex-direction: column;
      justify-content: space-around;
    }

    .category {
      font-size: 14px;
      background: #f0f0f0;
      padding: 4px 8px;
      border-radius: 12px;
      display: inline-block;
      margin-bottom: 10px;
font-family: var(--font-secondary);
    }

    .title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      font-family: var(--font-primary);
    }
.price-and-button a{
font-size:18px;
}

    .info {
        align-items: center;
        display: flex;
        margin-bottom: 10px;
        font-size: 18px;
        gap: 20px;
        color: #1c0d45;
    }
    .divider{
        border: 1px solid #f0f0f0;
    }
    .bi-people-fill{
        font-size: 17px;
    }
    .price-and-button{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 10px;
        margin-bottom: 10px;
    }
    .price-and-button a{
            background-color: transparent;
            border: 1px solid;
            color: #1c0d45;
            padding: 5px 10px;
font-family: var(--font-secondary);
    }

    .price {
        display: grid;
        margin-bottom: 10px;
    }
    .original-price{
        color: #717171;
font-size: 15px;
    color: #1c0d45;
    }
    .discount-price{
        font-size: 18px;
        color: #1c0d45;
        font-weight: 700;
    }

   

    .btn:hover {
      background: #173358;
      color: #fff;
    }

    .schedule {
      text-align: center;
      font-size: 12px;
      padding: 10px;
      border-top: 1px solid #eee;
      background-color: #173358;
      color: #fff;
font-family: var(--font-secondary);
    }

    /* Hide extra cards */
    .card.hidden {
      display: none;
    }

    .view-more-container {
      text-align: center;
      margin-top: 80px;
    }

    .view-more-btn {
      background: #173358;
      color: white;
      border: none;
      padding: 12px 25px;
      border-radius: 20px;
      cursor: pointer;
      
      transition: 0.3s;
font-family: var(--font-secondary);
font-size: var(--button-font-size);
line-height: var(--button-line-height);
font-weight: var(--button-font-weight);
max-width: fit-content;
    }

    .view-more-btn:hover {
      background: #10356c;
    }

    /* Responsive */
    @media(max-width: 1024px) {
      .card-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media(max-width: 600px) {
      .card-container {
        grid-template-columns: 1fr;
      }
    }


/* testimonial section  */
    

    section.testimonials {
      padding: 60px 60px;
      text-align: center;
      background: #f7f7f7;
    }
    .testimonial-inner-container{
        max-width: 1600px;
        width: 100%;
        margin: 0 auto;
    }

    section.testimonials h2 {
      
      margin-bottom: 40px;
      color: #1c0d45;
      
font-family: var(--font-primary);
font-size: var(--h2-size);
font-weight: var(--h2-weight);
line-height: var(--h2-line-height); 
    }

    .swiper {
      /* padding-bottom: 60px; */
    }

    .testimonial-card {
      background: #fff;
      border-radius: 30px;
      padding: 30px;
      text-align: left;
      box-shadow: 0px 4px 15px rgba(0,0,0,0.06);
      height: 100%;
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }

    .testimonial-header img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      margin-right: 15px;
      object-fit: cover;
    }

    .testimonial-header h4 {
      margin: 0;
     
      font-weight: 700;
      color: #1c0d45;
      font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
    }

    .testimonial-header p {
      margin: 0;
     
      color: #173358;
 font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
    }

    .testimonial-body {
      
      color: #091d3e;
      margin-bottom: 20px;

 font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
    }
    .testiminial-divider{
        border: 1px dashed #999;
    }

    .testimonial-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 10px;
    }

    .stars {
      color: #fbbf24;
      font-size: 30px;
    }

    .google-logo {
      width: 80px;
    }

    /* Swiper nav */
    .swiper-button-prev,
    .swiper-button-next {
      background: transparent;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      position: static;
      margin-top: 0px;
      color: #000000;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
      display: none;
    }

   .testimonials-controls .swiper-pagination {
  display: flex;
  align-items: center;
  /* gap: 8px; */
  position: static !important; 
      width: auto !important;
      text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
}

.testimonials-controls .swiper-pagination-bullet {
  background: #0f1c35;
  opacity: 0.3;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.testimonials-controls .swiper-pagination-bullet-active {
  opacity: 1;
}

    /* Controls + Dots */
/* .testimonials-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; 
  gap: 15px;
} */
 .testimonials-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Space between arrows and the dots container */
    margin-top: 2rem;
    position: relative; /* Needed for Swiper to work correctly */
    height: 40px; /* Give it a fixed height */
}
.testimonials-controls .swiper-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ccc;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    color: #000;
}
.testimonials-controls .swiper-btn:hover {
    background-color: #f0f0f0;
    border-color: #999;
}

/* This targets the container for the dots specifically */
.workshop-pagination.swiper-pagination {
    position: static; /* Important: Prevents it from overlaying content */
    width: auto;      /* Allows it to shrink/grow as needed */
}

/* This styles each individual dot */
.workshop-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    opacity: 1;
    transition: all 0.2s ease-in-out;
}

/* This styles the currently active dot and the smaller "dynamic" dots */
.workshop-pagination .swiper-pagination-bullet-active,
.workshop-pagination .swiper-pagination-bullet-active-main {
    background-color: #091d3e; /* Your primary dark blue color */
    transform: scale(1.2);
}

/* This makes the dots on the far edges smaller, as seen in your screenshot */
.workshop-pagination .swiper-pagination-bullet-active-prev,
.workshop-pagination .swiper-pagination-bullet-active-next {
    transform: scale(0.8);
}
.workshop-pagination .swiper-pagination-bullet-active-prev-prev,
.workshop-pagination .swiper-pagination-bullet-active-next-next {
    transform: scale(0.6);
}
.swiper-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #000000;
  /* background: #fff; */
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 auto;
  
  position: relative; /* make sure they’re above slider */
  z-index: 10;
  cursor: pointer;

}
.swiper-btn:hover {
   background: #f5f5f5;
  transform: scale(1.08);
}

.carousel-indicators [data-bs-target]{
    width: 9px;
    height: 9px;
    background-color:#bbb;
}
.carousel-indicators .active{
    background-color: #222;
    width: 11px;
    height: 11px;

}

/* enterprise section css  */
.entreprise-section{
  padding: 60px;
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

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

.entreprise-section .header h1 {
   
    color: #1c0d45;
    margin-bottom: 15px;
    font-family: var(--font-primary);
font-size: var(--h2-size);
font-weight: var(--h2-weight);
line-height: var(--h2-line-height); 
}

.entreprise-section .header p {
   
    /* color: #6c757d; */
    max-width: 900px;
    margin: 0 auto;
    /* line-height: 1.9; */
    color: #000000;
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
}


.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
    /* flex-wrap: wrap; */
}

.tab {
    padding: 10px 15px;
    background-color: transparent;
    color: #1c0d45;
    border: 2px solid #99999970;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
font-family: var(--font-primary);
}

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

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

.workshop-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.workshop-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #99999970;
}

.workshop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-image {
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-badge {
    
    display: flex;
    gap: 10px;
}

.badge {
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 15px;
    color: #495057;
    font-weight: 700;
    padding-left: 0px;
    padding-bottom: 15px;
    letter-spacing: -0.25px;
font-family: var(--font-secondary);
}

.card-content {
    padding: 25px;
}

.card-title {
    
    
    color: #1c0d45;
    margin-bottom: 15px;
font-family: var(--font-primary);
font-size: 32px;
line-height: 34px;
font-weight:600;
}

.card-description {
    margin-bottom: 15px;
    
    color: #000;
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.bi-clock::before , .bi-file-text::before{
    font-weight: 700 !important;
}

.price-section {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 17px;
    color: #717171;
    margin-bottom: -5px;
}
.from-price-label{
    text-decoration: line-through;
font-size: 15px;
    color: #091d3e;
}

.enterprise-price {
    font-size: 22px;
    font-weight: 700;
    color: #091d3e;
}
.original-price-currency{
    color: #717171;
    font-size: 17px;
    
}
.enroll-btn {
    background-color: transparent;
    color: #1c0d45;
    border: 2px solid #1c0d45;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    
    text-decoration: none;
font-family: var(--font-secondary);
font-size: var(--button-font-size);
line-height: var(--button-line-height);

}

.enroll-btn:hover {
    background-color: #091d3e;
    color: white;
}

/* Card-specific background images */
.design-thinking {
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%23FF6B6B" width="400" height="200"/><circle fill="%23FFE66D" cx="100" cy="100" r="30"/><rect fill="%234ECDC4" x="200" y="50" width="60" height="60"/><polygon fill="%2395E1D3" points="300,50 350,90 320,130 280,130 250,90"/></svg>');
}

.critical-thinking {
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%2364B5F6" width="400" height="200"/><rect fill="%23FFF" x="50" y="50" width="100" height="60" opacity="0.8"/><rect fill="%23FFF" x="200" y="80" width="80" height="40" opacity="0.8"/><rect fill="%23FFF" x="300" y="60" width="60" height="50" opacity="0.8"/></svg>');
}

.strategic-thinking {
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 200"><rect fill="%23673AB7" width="400" height="200"/><path fill="%23FFF" d="M50,150 Q200,50 350,100" stroke="%23FFF" stroke-width="3" opacity="0.8"/><circle fill="%23FFD54F" cx="80" cy="140" r="8"/><circle fill="%23FFD54F" cx="200" cy="80" r="8"/><circle fill="%23FFD54F" cx="320" cy="110" r="8"/></svg>');
}

.entreprise-section .workshop-controls .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{
    transform: translateX(-0%) !important;
}

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

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

    .tab {
        width: 100%;
        /* max-width: 300px; */
        text-align: center;
    }

    .workshop-cards {
        grid-template-columns: 1fr;
    }

    .card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }

    .enroll-btn {
        text-align: center;
    }
}



        /* comprehensive section css  */
        .solutions-for-enterprises-section {
            padding: 60px;
            background: #fff;
            max-width: 1600px;
            width: 100%;
            margin: 0 auto;
            padding-bottom: 40px;
        }
        .header-title-description{
            max-width: 75%;
        }
        .section-header {
            margin-bottom: 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            
        }
        .section-title {
            
            color: #1c0d45;
            margin-bottom: 20px;
            /* line-height: 1.2; */
font-family: var(--font-primary);
font-size: var(--h2-size);
font-weight: var(--h2-weight);
line-height: var(--h2-line-height); 
        }
	.section-title.w-65{
	    width: 65%;
	}
        .section-description {
                
                color: #000;
                /* line-height: 1.6; */
                max-width: 900px;
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
        }
        .skill-up-your-team {
            background-color: #091d3e;
            color: white;
            padding: 18px 35px;
            border: none;
            border-radius: 8px;
            
            cursor: pointer;
            margin-top: 0px;
            transition: all 0.3s ease;
            text-decoration: none;
font-family: var(--font-secondary);
font-size: var(--button-font-size);
line-height: var(--button-line-height);
font-weight: var(--button-font-weight);
max-width: fit-content;
        }
        .skill-up-your-team:hover {
            /* background-color: #34495e; */
            transform: translateY(-2px);
        }
        .logos-container {
            overflow: hidden;
            margin-top: 60px;
            position: relative;
            width: 100%;
        }
        /* .logo-row {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            width: max-content;
            animation: slideLeft 30s linear infinite;
        }
        .logo-row:nth-child(2) {
            animation: slideRight 30s linear infinite;
        } */

        .logo-row {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
            width: max-content; /* Critical: allows row to grow with content */
            /* Duration is now handled by JS, linear infinite is required */
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        /* First row moves Left */
        .logo-row:nth-child(1) {
            animation-name: slideLeft;
        }

        /* Second row moves Right */
        .logo-row:nth-child(2) {
            animation-name: slideRight;
        }

        @keyframes slideLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); } /* Move half width (original content) */
        }

        @keyframes slideRight {
            0% { transform: translateX(-50%); } /* Start offset by half */
            100% { transform: translateX(0); }
        }
        .logo-item {
            min-width: 180px;
            height: 80px;
            background: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 30px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .logo-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        .logo-item img {
            max-width: 120px;
            max-height: 40px;
            object-fit: contain;
        }
        @keyframes slideLeft {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        @keyframes slideRight {
            0% { transform: translateX(-50%); }
            100% { transform: translateX(0); }
        }
        
        .curriculum-section {
            margin-top: 30px;
	    margin-bottom: 50px;
            padding-top: 30px;
            border-top: 2px dashed #d1d5db;
        }
        .curriculum-title {
            
            color: #1c0d45;
            margin-bottom: 40px;
            text-align: center;
            
            margin-top: -46px;
            padding-inline: 7px;
            background: #fff;
            width: fit-content;
            margin-inline: auto;
font-family: var(--font-primary);
font-size: 32px;
line-height: 34px;
font-weight:600; 

        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 0 auto;
        }
        .feature-card {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            text-align: left;
            transition: all 0.3s ease;
            align-items: center;
            display: flex;
            gap: 20px;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        .feature-icon {
            /* width: 60px; */
            /* height: 60px; */
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            /* font-size: 20px; */
        }
        .feature-icon img{
            width: 100%;
        }
        .feature-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 10px;
        }
        .feature-description {
            color: #000;
            /* line-height: 1.5; */
           
font-family: var(--font-secondary);
font-size: 18px;
line-height: 24px;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .logo-item {
                min-width: 140px;
                height: 60px;
                margin-right: 20px;
            }
            
            .logo-item img {
                max-width: 100px;
                max-height: 30px;
            }
            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .feature-card {
                padding: 20px;
            }
        }
        /* ============================================= */
/*  NEW STYLES FOR ISOLATED WORKSHOP CONTROLS  */
/* ============================================= */

/* The main container for the workshop arrows and dots */
.workshop-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 2rem;
    position: relative;
    height: 40px;
}

/* This styles the workshop arrows */
.workshop-controls .swiper-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background-color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
    color: #555;
    font-size: 1rem;
}

.workshop-controls .swiper-btn:hover {
    background-color: #f0f0f0;
    border-color: #bbb;
}

/* This is the class used by JS to hide slides. */
.swiper-slide-hidden {
    display: none;
}

/* This ensures that when Swiper disables an arrow (because there are not enough slides),
   it remains visible but looks disabled. This prevents layout jumps. */
.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
}

.testimonials .swiper-button-prev, .testimonials .swiper-button-next{
    top: 0 !important;
}

/* ================================================
   RESPONSIVE STYLES — TRAINING PAGE
   Tablet (≤992px) & Mobile (≤576px)
================================================ */

/* ===== TABLET VIEW (≤992px) ===== */
@media (max-width: 992px) {
    /* HERO SECTION */
    .training-section {
        height: 60vh;
    }

    .training-content h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .training-content .breadcrumb-btn {
        padding: 10px 22px;
        font-size: 15px;
    }

    /* COMPREHENSIVE SECTION */
    .comprehensive-section {
        padding: 60px 30px;
    }

    .comprehensive-section-title {
        font-size: 30px;
    }

    .comprehensive-section-description {
        font-size: 15px;
        max-width: 700px;
        margin-bottom: 40px;
    }

    .comprehensive-section-tabs .nav-item {
        width: auto;
        flex: 1;
    }

    .card-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    /* TESTIMONIAL SECTION */
    section.testimonials {
        padding: 50px 30px;
    }

    section.testimonials h2 {
        font-size: 30px;
        margin-bottom: 35px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-header img {
        width: 50px;
        height: 50px;
    }

    .testimonial-header h4 {
        font-size: 16px;
    }

    .testimonial-body {
        font-size: 14px;
    }

    /* ENTERPRISE SECTION */
    .entreprise-section {
        padding: 50px 30px;
    }

    .entreprise-section .header h1 {
        font-size: 30px;
    }

    .entreprise-section .header p {
        font-size: 15px;
    }

    .card-title {
        font-size: 22px;
    }

    .card-description {
        font-size: 15px;
    }

    .tabs {
        flex-wrap: wrap;
        gap: 10px;
    }

    /* LOGOS / ENTERPRISE SLIDER SECTION */
    .solutions-for-enterprises-section {
        padding: 50px 30px;
    }

    .header-title-description {
    max-width: 100%;
}


.section-description {
 
 width: 100%;
}

    
.section-title.w-65 {
    width: 100% !important;
   
  
}
    .section-header {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .section-title {
        font-size: 30px;
        width: 100%;
    }

    .section-description {
        font-size: 15px;
    }

    .skill-up-your-team {
        padding: 14px 28px;
        font-size: 16px;
    }

    .logo-item {
        min-width: 140px;
        height: 60px;
        margin-right: 20px;
    }

    .logo-item img {
        max-width: 90px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        padding: 18px;
    }
}

/* ===== MOBILE VIEW (≤576px) ===== */
@media (max-width: 576px) {
    /* HERO SECTION */
    .training-section {
        height: 55vh;
        min-height: 240px;
    }

    .training-content h1 {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .training-content .breadcrumb-btn {
        padding: 8px 18px;
        font-size: 13px;
    }

    /* COMPREHENSIVE SECTION */
    .comprehensive-section {
        padding: 40px 20px;
    }
    .comprehensive-section .container-fluid{
        padding: 0px;
    }

    .comprehensive-section-title {
        font-size: 32px;
        text-align: left;
        line-height: normal;
    }

    .comprehensive-section-description {
        font-size: 15px;
        margin-bottom: 30px;
        text-align: left;
    }

    .comprehensive-section-tabs {
        flex-direction: column;
     
    }
    .comprehensive-section-tabs .nav-item:first-child .nav-link {
    border-top-left-radius: 20px;
       border-top-right-radius: 20px;
}
.comprehensive-section-tabs .nav-item:last-child .nav-link {
  border-top-right-radius: 0 !important;
}
     .comprehensive-section-tabs {
        flex-direction: column;
      border-top-left-radius: 20px;
       border-top-right-radius: 20px;
    }
    /* .comprehensive-section-tabs {
    justify-content: space-between;
    color: #091d3e;
    background-color: #f0f0f0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
} */

    .comprehensive-section-tabs .nav-item {
        width: 100%;
       border: none;
        border-bottom: 1px solid #b4b4b4;
    }



    .comprehensive-cards-main-container {
        padding: 20px 15px;
    }

    .card-header {
    background: transparent;
    padding: 0px;
    text-align: center;
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.card-header img {
    width: 100%;
    object-fit: cover !important;
    
}
    .card-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .card {
        border-radius: 30px;
    }

    .card-body {
        padding: 15px;
    }

    .title {
        font-size: 20px;
    }
    .info{
        font-size: 16px;
    }

    .discount-price {
        font-size: 18px;
    }

    /* TESTIMONIAL SECTION */
    section.testimonials {
        padding: 40px 20px;
    }

    section.testimonials h2 {
        font-size: 32px;
        text-align: left;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-header img {
        width: 45px;
        height: 45px;
    }

    .testimonial-body {
        font-size: 13px;
    }

    .stars {
        font-size: 22px;
    }

    
.swiper {
    padding-bottom: 0;
}

    /* ENTERPRISE SECTION */
    .entreprise-section {
        padding: 40px 20px;
    }
    .entreprise-section .container-fluid{
        padding: 0px;
    }

    .entreprise-section .header h1 {
        font-size: 32px;
        text-align: left;
    }

    .entreprise-section .header p {
        font-size: 15px;
         text-align: left;
         margin-bottom: -20px;
    }


      .tabs {
 
    justify-content: left;
    margin-bottom:20px;
    gap: 10px;
    /* flex-wrap: wrap; */
}


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

    .card-title {
        font-size: 24px;
    }

    .card-description {
        font-size: 16px;
    }

    .price-label,
    .from-price-label,
    .enterprise-price {
        font-size: 14px;
    }

    .enroll-btn {
        font-size: 13px;
        padding: 8px 15px;
    }

    /* LOGO SLIDER SECTION */
    .solutions-for-enterprises-section {
        padding: 30px 20px;
    }
    .solutions-for-enterprises-section .container-fluid{
        padding:0px;
    }


.header-title-description {
    max-width: 100%;
}


.section-description {
    font-size: 16px;
    color: #091d3e;
    line-height: 1.6;
 width: 100%;
}

    
.section-title.w-65 {
    width: 100% !important;
   
  
}
    .section-header {
        flex-direction: column;
        text-align: left;
          align-items: left !important;
             justify-content: left;
        gap: 1px;
       
    }

 

    .section-title {
        font-size: 32px;
     
    }

    .section-description {
        font-size: 15px;
    }

    .skill-up-your-team {
        padding: 12px 24px;
        font-size: 14px;
        text-align: left;
        align-items: left;
        /* margin-left: -190px; */
        margin-bottom: 0;
        align-self: flex-start;

    }

    .logos-container {

    margin-top:-10px;
   
}
.logo-row {
   
    margin-bottom: 20px;
 
}
    .logo-item {
        min-width: 120px;
        height: 50px;
        margin-right: 15px;
    }

    .logo-item img {
        max-width: 80px;
    }

    /* .features-grid {
        grid-template-columns: 2fr;
        gap: 5px;
    } */


    .curriculum-title {
    font-size: 24px;
   
    margin-bottom: 30px;
    text-align: left;
  
 
}
     .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .feature-title {
        font-size: 15px;
    }

    .feature-description {
        font-size: 14px;
    }

    .feature-icon{
   
      margin-bottom: 0;
      padding: 10px;
    }
    .feature-icon img {
    width: 50% !important;
    /* height: 80px; */
}
 }


  

/* ===========================
   RESPONSIVE FIXES
   =========================== */

/* Tablets (≤992px) */
/* @media (max-width: 992px) {
  .workshop-controls {
    flex-wrap: wrap;
    gap: 15px;
    height: auto;
    margin-top: 1.5rem;
  }

  .workshop-controls .swiper-btn {
    width: 40px;
    height: 40px;
    font-size: 0.95rem;
  }

 
  .workshop-controls .swiper-btn {
    position: relative;
    top: 0;
  }

  .testimonials .swiper-button-prev,
  .testimonials .swiper-button-next {
    position: static !important;
    transform: none !important;
  }
} */

@media (min-width: 1024px) and (max-width:1264px) {
    .card-container {
    
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.workshop-swiper .swiper-wrapper .swiper-slide{
    width: 396.333px !important;
}
}


@media (max-width:768px){
    .comprehensive-section-description{
        font-size: 16px;
    }
    .entreprise-section .header p{
        font-size: 16px;
    }
    .section-description{
        font-size: 16px;
    }
.testimonial-body{
font-size: 16px;
}
    .training-content h1{
font-size:32px;
}
.training-content{
margin-top:60px;
}


}
/* ============================= */
/* Trainers Section (New) */
/* ============================= */
.trainers-section {
    padding: 80px 60px;
    text-align: center;
    background-color: #f7f7f7; 
}
.trainers-section-inner-container{
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
}
.trainers-section .header {
    text-align: center;
}
.trainers-section .header h1 {
    
    /* line-height: 1.3; */
    color: #1c0d45;
    margin-bottom: 15px;
    
font-family: var(--font-primary);
font-size: var(--h2-size);
font-weight: var(--h2-weight);
line-height: var(--h2-line-height); 
}
.trainers-section .header p {
   
    color: #000;
    max-width: 700px;
    margin: 0 auto 40px;
    /* line-height: 1.6; */
font-family: var(--font-secondary);
font-size: var(--description-size);
line-height: var(--description-line-height);
}

.trainers-swiper {
    width: 100%;
    /* Removed padding-bottom here to manage space via controls margin */
}
.trainer-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    height: 100%; 
    padding-bottom: 20px;
    text-align: left;
}
.trainer-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: 12px 12px 0 0;
    margin-bottom: 15px;
}
.trainer-card .member-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.trainer-card .member-info {
    flex: 1;
}
.trainer-card .member-info h4 {
    
    margin: 0 0 4px;
    color: #1c0d45;
font-family: var(--font-primary);
font-size: 22px;
line-height: 22px;
font-weight:600;
}
.trainer-card .member-info p {
    
    color: #000;
    margin: 0;
font-family: var(--font-secondary);
font-size: 18px;
line-height: 24px;
}
.trainer-card .linkedin-icon {
    margin-left: 10px;
    text-decoration: none;
    /* Ensure icon sits correctly at the bottom right of the card info area */
    align-self: flex-end; 
    padding-bottom: 4px; /* Slight adjustment to align with text baseline */
}
.trainer-card .linkedin-icon i {
    font-size: 25px;
    color: #007ab5;
    transition: color 0.2s ease;
}
.trainer-card .linkedin-icon:hover i {
    color: #005f96;
}


/* --- Controls (MATCHING SCREENSHOT) --- */
.trainer-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    height: 40px; 
}
.trainers-section .swiper-pagination-horizontal.swiper-pagination-bullets-dynamic {
    /* Override Swiper's auto-centering to let the flex container center it */
    left: auto !important;
    transform: none !important; /* This is the key fix for the translateX issue */
    width: auto !important;      /* Let content define width */
}
.trainer-controls .swiper-btn {
    /* Base style for arrow buttons - matching the design (circle with outline) */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #c7c7c7; /* Light border color */
    background: #fff;
    font-size: 1rem;
    color: #000; /* Arrow color */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.trainer-controls .swiper-btn:hover {
    background: #f0f0f0;
    border-color: #a0a0a0;
}
.trainer-controls .swiper-button-prev i,
.trainer-controls .swiper-button-next i {
    font-size: 1rem; /* Bi-arrow icons */
}

/* Pagination Dots (MATCHING SCREENSHOT) */
.trainer-pagination.swiper-pagination {
    /* The flex container is centering this whole block now. */
    /* Ensure it has no conflicting positioning */
    position: static !important; 
    display: flex;
    align-items: center;
    gap: 5px; /* Gap between dots (as defined in previous step) */
}
.trainer-pagination .swiper-pagination-bullet {
    background: #bbb;
    opacity: 1; 
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transition: background 0.2s ease, transform 0.2s ease;
}
.trainer-pagination .swiper-pagination-bullet-active {
    background-color: #444; 
    transform: scale(1.1);
}

/* Ensure disabled buttons look correct */
.trainer-controls .swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
    cursor: auto;
}


/* ============================= */
/* Responsive Adjustments */
/* ============================= */

/* Tablet View (≤992px) */
@media (max-width: 992px) {
    .trainers-section {
        padding: 60px 30px;
    }
    .trainer-card img {
        height: 220px;
    }
}

/* Mobile View (≤576px) */
@media (max-width: 576px) {
    .trainers-section {
        padding: 40px 20px;
    }
    .trainers-section .header h1 {
        font-size: 32px;
        text-align: left;
    }
    .trainers-section .header p {
        font-size: 16px;
        text-align: left;
        margin-bottom: 20px;
    }
    .trainer-card img {
        height: 220px;
        object-position: center;
    }
    .trainer-card .member-header {
        padding: 0 15px;
    }
    .trainer-card .member-info h4 {
        font-size: 24px;
    }
    .trainer-card .member-info p {
        font-size: 16px;
    }
    .trainer-controls .swiper-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}
/* ================================================= */
/* Critical Workshop Grid/Load More CSS */
/* ================================================= */

.workshop-cards-container {
    margin-top: 30px;
}

.workshop-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px; 
}

/* Class to hide cards that are currently beyond the visible count */
.workshop-card-item.hidden-by-pagination {
    display: none !important; /* Critical override for the grid/flex display */
}

/* --- Load More/Load Less Controls --- */
.workshop-load-controls {
    text-align: center;
    margin-top: 40px;
}

.workshop-control-btn {
    background-color: transparent;
    color: #091d3e;
    border: 2px solid #091d3e;
    padding: 10px 25px;
    border-radius: 8px;
    
    cursor: pointer;
    transition: all 0.3s ease;
   
    text-decoration: none;
    margin: 0 10px;
font-family: var(--font-secondary);
font-size: var(--button-font-size);
line-height: var(--button-line-height);
font-weight: var(--button-font-weight);
max-width: fit-content;
}

.workshop-control-btn:hover {
    /* background-color: ; */
    /* color: white; */
}

.workshop-control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #f0f0f0;
    color: #091d3e;
    border-color: #f0f0f0;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .workshop-cards-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}
@media (max-width: 768px) {
    .workshop-cards-grid {
        grid-template-columns: 1fr;
    }
    .comprehensive-section-tabs {
    /* justify-content: space-between; */
    color: #091d3e;
    background-color: #f0f0f0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    /* overflow-x: scroll; */
    /* overflow-y: scroll; */
    /* cursor: grab; */
    /* scrollbar-width: none; */
    /* white-space: nowrap; */
    /* display: block; */
    /* flex-wrap: nowrap; */
    height: 60px;
    overflow: scroll;
    flex-direction: row;
}
.comprehensive-section-tabs .nav-item:first-child .nav-link{
    width: 160px;
}
.comprehensive-section-tabs .nav-item:first-child .nav-link{
border-top-right-radius: 0px !important;
}
.comprehensive-section-tabs .nav-item:last-child .nav-link{
border-left: 1px solid #b4b4b4 !important;
}
.comprehensive-section-tabs .nav-link{
font-size:18px;
}
.comprehensive-section-tabs .nav-item{
	border-left: 1px solid #b4b4b4;

}

.training-section{
    height: 320px;
}
.swiper-button-prev .bi-arrow-left{
margin-left:-5px;
}
.swiper-button-next .bi-arrow-right{
margin-left:-5px;
}
.trainer-button-prev .bi-arrow-left{
margin-left:0px;
}
.trainer-button-next .bi-arrow-right{
margin-left:0px;
}
.testimonials-controls .swiper-btn{
font-size:16px;
}

.trainers-section-inner-container .container-fluid{
padding:0px;
}
}


@media (min-width:1700px){

.comprehensive-section{
padding:80px 40px;
}
.comprehensive-section .container-fluid{
padding:0px;
}
.testimonial-inner-container{
padding:0 40px;
}
.entreprise-section{
padding:60px 40px;
}

.entreprise-section .container-fluid{
padding:0px;
}
.trainers-section-inner-container{
padding:0 40px;
}
.trainers-section-inner-container .container-fluid{
padding:0px;
}
.solutions-for-enterprises-section{
padding:60px 40px;
}
.solutions-for-enterprises-section .container-fluid{
padding:0px;
}

}