:root {
    /* Font Families */
    --font-primary: "Figtree", sans-serif !important;
    --font-secondary: 'Calibri', sans-serif !important;

    /* Headings Font Sizes */
    --h1-size: 55px;
    --h2-size: 38px;
    --h3-size: 32px;
    --h4-size: 26px;
   

    /* Subheading */
    --subheading-size: 24px;
    --subheading-font-weight: 600 ;

    /* Description / Paragraphs */
    --description-size: 20px;
    --description-line-height: 24px;
    --inner-cards-description-size:18px;
    --inner-cards-description-line-height:24px;

   /* subtitles */
     
     --subtitle-size:24px;
     --subtitle-line-height:28px;

    /* Button Text */
    --button-font-size: 20px;
    --button-font-weight: 500;
    --button-line-height: 22px;


   /* Headings Font Weight */
   
    --h1-weight: 600;
    --h2-weight: 600;
    --h3-weight: 500;
    --h4-weight: 600;
   

    /* Headings line Height */

    --h1-line-height: 1.1;
    --h2-line-height: 1.2;
    --h3-line-height: 34px;
    --h4-line-height: 28px;

}




/* ===== HERO SECTION ===== */
    .hero-section {

      background: #0078A4;
      transition: background 1.6s ease-in-out;
      min-height: 100vh;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      position: relative;
      z-index: 1;
      color: #fff;
      padding-left: 3rem;
      overflow: hidden;
      /* padding-top:80px ; */
      /* padding-bottom: 80px; */
    }
    .hero-inner-container{
       max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    }

    .hero-content {
      max-width: 730px;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 1.5rem; /* reduced spacing for better balance */
    }

    .custom-title {
      font-size: var(--h1-size);
      font-weight: var(--h1-weight);
      line-height: var(--h1-line-height);
      word-spacing: 5px;
      font-family: var(--font-primary);
      margin-bottom: 0;
margin-top: 80px;
    }
    .testimonial-card:empty { display: none !important; }
.testimonial-card:empty * { display: none !important; }


    .dynamic-text {
      display: inline-block;
      font-family: var(--font-primary);
      min-width: 144px;
      font-weight: var(--h1-weight);
      opacity: 1;
      transition: color 0.8s ease-in-out;
      vertical-align: baseline;
      text-align: left;
    }

    .fade-up {
      animation: fadeUp 1.1s cubic-bezier(.4, .6, .45, .9);
    }

    @keyframes fadeUp {
      0% {
        opacity: 0;
        transform: translateY(28px);
      }

      80% {
        opacity: 0.95;
        transform: translateY(1px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .custom-subtitle {
     font-family: var(--font-secondary);
      font-size: var( --subtitle-size);
      color: #e4edf8;
      margin-bottom: 0;
line-height: var(--subtitle-line-height);
    }

    .btn-request-custom {
      background: rgba(255, 255, 255, 0.35);
      border: none;
      color: #fff;
      max-width: fit-content;
      padding: 8px 15px;
      font-size: 22px;
line-height:24px;
      border-radius: 30px;
      backdrop-filter: blur(5px);
      transition: transform 0.3s ease, background 0.4s;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 0.65em;
      margin-top: 10px; /* reduced spacing above button */
	font-family: var(--font-secondary);
    }

    .btn-request-custom:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: scale(1.03);
    }

    .trusted-logos {
      text-align: left;
      margin-top: 0;
    }

    .trusted-logos small {
      color: #e4edf8;
      font-size: var( --subtitle-size);
      line-height:var(--subtitle-line-height);
      display: block;
      margin-bottom: 24px;
    }

    .trusted-logos img {
      height: 50px;
      margin-right: 28px;
      vertical-align: middle;
      border-radius: 6px;
      padding: 4px 10px;
      filter: grayscale(1) brightness(1.1);
    }

    /* ===== LOGO AREA ===== */
    .logo-shape {
      position: absolute;
      right: 0;
      top: 0;
      width: 47vw;
      height: 100vh;
      z-index: 0;
      pointer-events: none;
      display: flex;
      justify-content: flex-end;
      align-items: flex-start;
      margin: 0;
    }

    .logo-img {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      object-fit: cover;
      opacity: 0.26;
      margin-right: -70px;
    }

    /* ===== RESPONSIVE: Tablets (≤768px) ===== */
    @media (max-width: 768px) {
      .hero-section {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
        padding: 4rem 1.5rem 2rem;
        min-height: 80vh;
      }

      .hero-content {
        max-width: 90vw;
        margin-top: 5.5rem;
        gap: 1.5rem; /* reduced gap */
        margin-top: 20px !important;
      }

      .custom-title {
        font-size: 2.4rem; /* bigger than before */
        line-height: 1.3;
      }

      .custom-subtitle {
        font-size: 1.2rem; /* slightly bigger for readability */
        line-height: 1.5;
      }

      .btn-custom {
        font-size: 16px;
        padding: 10px 22px;
        max-width: 200px;
      }
      .trusted-logos{
        margin-bottom: 20px;
      }

      .trusted-logos img {
        height: 45px; /* bigger logos for tablet */
      }

      .logo-shape {
        width: 100%;
        height: auto;
        align-items: flex-start;
        overflow: visible;
      }

      .logo-img {
        max-width: 75% !important; /* make image bigger */
        max-height: 100%;
        opacity: 0.25;
        margin-right: -10px;
           object-fit: cover;
      }
    }

    /* ===== RESPONSIVE: Mobile (≤400px) ===== */
    @media (max-width: 400px) {
      .hero-content {
        margin-top: 6rem;
        gap: 1.4rem; /* reduced gap for small screens */
      }

      .custom-title {
        font-size: 2.2rem; /* slightly bigger title */
      }

      .custom-subtitle {
        font-size: 1.1rem;
      }

      .trusted-logos img {
        height: 40px; /* bigger logos for mobile */
      }

      .logo-shape {
        height: auto;
      }

      .logo-img {
        max-width: 100%; /* bigger image */
        margin-right: -10px;
        
           object-fit: cover;
             
      }
    }

/* Services Section */
.services-section {
  max-width: 1600px;
    margin: 0 auto;
    width: 100%;
  padding: 80px 20px;
  text-align: center;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.services-wrapper {
  overflow: hidden; /* hides half/extra cards */
  width: 100%;
  position: relative;
}
.services-track {
  display: flex;
  transition: transform 0.6s ease;
}
.services-section h2{

font-size: var( --h2-size) !important;
    letter-spacing: 0;
    font-weight: var( --h2-weight) !important;
    margin-bottom: 15px;
    color: #1c0d45;
font-family:var( --font-primary);

}
.services-section h1 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #091d3e;

}

.services-section p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #000;
  font-size: var( --description-size);
  line-height: var(--description-line-height);
font-family: var(--font-secondary)
}

/* Slider */
.services-slider {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}
.service-card {
   flex: 0 0 calc(33.333% - 40px);
  margin: 0 20px;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}



/* Tablet: 2 cards */
@media (max-width: 992px) {
  .service-card {
    flex: 0 0 calc(50% - 30px);
    margin: 0 15px;
  }
}

/* Mobile: 1 card */
@media (max-width: 576px) {
  .service-card {
    flex: 0 0 100%;
    margin: 0 10px;
  }
}
.service-card img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: top;
  transition: transform 0.4s ease;
}
.service-card img:hover {
  transform: scale(1.05);
}
.service-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.896), rgba(0, 0, 0, 0.090) 100%);
  color: #fff;
  text-align: left;
}
.service-card h3 {

  margin-bottom: 10px;


    font-family: var( --font-secondary) !important;
  font-size: var( --h3-size) ;

  font-weight: var(--h3-weight);
  margin-bottom: 15px;
  color: #ffffff;
line-height: var( --h3-line-height);

}

.service-card p {
  font-size: var(--description-size);
  line-height: var(--description-line-height);
  font-weight: 300;
  color: #ffffff;
  margin-bottom: 20px;
}
.service-card .btn {

  background: rgba(255, 255, 255, 0.35);
  border: none;
  color: #fff;
  padding: 5px 15px;
  font-size: var( --button-font-size);
  border-radius: 20px;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
font-weight:var( --button-font-weight);
line-height: var(--button-line-height);
}


/* Controls */
.services-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* bring controls closer to cards */
  gap: 15px; /* reduced space between arrows and dots */
}

.services-controls button.arrow-btn{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #000;
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

.services-controls button.arrow-btn:hover {
  background: #f5f5f5;
  transform: scale(1.08);
}

/* Dots */
/* Dots */
.services-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px; /* Tight spacing between dots */
}

.services-dots button {
  all: unset; /* resets default browser button styles */
  display: block;
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 0.3s ease, transform 0.2s ease;
}

.services-dots button.active {
  background: #222;
  transform: scale(1.25);
}


/* consulting-services-container */

  .consulting-services-container {
    
    display: flex;
    align-items: stretch; /* image matches accordion height */
    background: #f0f0f0;
    padding: 0;
    
  }
  .consulting-services-inner-container{
max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: stretch;
    background: #f0f0f0;
    padding: 0;
  }
  .consulting-services-image {
    flex: 1.185;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    height: 708px;
  }
  .consulting-services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
  }
  .consulting-services-image img.fade-out {
    opacity: 0;
  }
  .consulting-services-content {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
.consulting-services-content h2{

font-family:var(--font-primary) !important;
font-size: var( --h2-size) !important;

}
  .consulting-services-content h1 {
   font-size: 50px;
  font-weight: 600;
letter-spacing: 1.2;
    margin-bottom: 15px;
    color: #091d3e;
  }
  .consulting-services-content p {
    max-width: 800px;
    margin: 0 auto 20px;
    color: #000;
    font-size: var( --description-size);
font-family:var( --font-secondary);
line-height: var( --description-line-height);
  }
   .consulting-accordion{
    /* margin-left: -10px; */

   }
  .consulting-accordion-item {
    border: none;
    background: #f0f0f0;
    margin-bottom: 2px;
    /* margin-right: -70px; */
    
  }
  .consulting-accordion-button {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 500;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    padding:  10px 0;

    cursor: pointer;
    transition: all 0.3s ease;
    color: #000 !important;
    font-family: var(--font-primary) !important;
    font-weight:600;
  }
  .consulting-accordion-button.active {
    color: #091d3e;
  }
  .consulting-accordion-number {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    background: #e0e0e0;
    color: #555;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  .consulting-accordion-button.active .consulting-accordion-number {
    background: #1c0d45;
    color: #fff;
  }
  .consulting-accordion-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px 0 50px;
    font-size: 16px;
    color: black;
    margin-top: -10px;
  margin-bottom: 15px ;
    font-size: var( --description-size);
font-family:var( --font-secondary);
line-height:var( --description-line-height);
    transition: max-height 0.4s ease, padding 0.4s ease;
  }
  .consulting-accordion-body.show {
    padding: 15px 20px 15px 50px;
    /* max-width: 90%; */
  }
  .consulting-read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--button-font-size);
    font-weight: var(--button-font-weight);
    background-color: #f96e46;
    color: #fff;
    text-decoration: none;
    padding: 7px 15px;
    border-radius: 999px;
    transition: all 0.3s ease;
    margin-top: 20px;
    margin-bottom: 20px;
font-family:var(--font-secondary);
max-width: fit-content;

  }
  .consulting-read-more-btn:hover {
    background-color: #f96e46a3;
    color: #fff;
    text-decoration: none;
  }


  /* training-section  */

.training-section {
  max-width: 1600px;
    margin: 0 auto;
    width: 100%;
  padding: 80px 20px;
  background: #fff;
  overflow-x: hidden;
}
.training-section h2{

font-family:var( --font-primary) !important;
font-size:var( --h2-size) !important;
line-height: var(--h2-line-height) !important;
font-weight:var( --h2-weight) !important;


}
.training-section h1 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #091d3e;
  
}
.training-section p {
  max-width: 750px;
  margin: 0 auto 20px;
  font-size: 18px;
  color: #000;

font-family:var( --font-secondary) !important;
font-size:var( --description-size) !important;
line-height: var( --description-line-height);
}

/* Slider */
.training-slider {
  display: flex;
  overflow: hidden;
  gap: 40px;
  scroll-behavior: smooth;
   padding: 0 20px;
  will-change: transform;

}

.training-slider .card {
 
  flex: 0 0 calc((100% - 80px) / 3); /* 2 gaps × 40px = 80px */
  max-width: calc((100% - 80px) / 3);

  position: relative;
  color: #fff;
  border-radius: 0;
 border: none;
  padding: 30px;
  /* box-shadow: 0 6px 15px rgba(0,0,0,0.3); */
  overflow: hidden;
  background-size: cover;
  background-position: center;
}



.training-slider .card * {
  position: relative;
  z-index: 1;
  border: none;
  border-radius: 0;
  
}


/* Badge */
.training-slider .badge {
  position: absolute;
  top: -4px; left: 15px;
  background: #0084C5;
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  padding: 12px 25px;
  clip-path: polygon(0 0, /* top-left */ 100% 0, /* top-right */ 100% 0%, /* bottom-right shifted up for diagonal */ 85% 90%, /* bottom-right tip */ 15% 90%, /* bottom-left tip */ 0 00% /* bottom-left shifted up for diagonal */);  border-bottom-left-radius: 35px;
  border-bottom-right-radius: 35px;
}

/* Logo */
.training-slider .logo {
  position: absolute;
  top: 30px; right: 20px;
  width: 80px; height: 80px;
  background:transparent;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
}
.training-slider .logo img {
  max-width: 100%;
  height: auto;
}

/* Text */
.training-slider h4 { margin: 40px 0 15px; font-size: 16px; font-family: var( --font-primary); line-height:20px; font-weight: bold; color: #ccc;
text-align: left; }
.training-slider h3 { margin: 0 0 15px; font-size: 28px; font-weight: bold; font-family:var(--font-primary) ; font-weight: 600;
  text-align: left;
}
.training-slider p { font-size: 18px !important; color: #ddd; font-family:var(--font-secondary) !important;
    line-height: 24px;
text-align: left; }

/* Button */
.training-slider .btn {
  background: rgba(255, 255, 255, 0.35);
  border: none;
  color: #fff;
  padding: 8px 15px;
  text-transform: uppercase;
  font-size: 18px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
 
   width:50%;
font-family:var(--font-secondary);
font-size: 18px;
    line-height: 24px;
    max-width: fit-content;
    font-weight: 500;
}
}
.training-slider .btn:hover {
  background: rgba(255,255,255,0.6);
  color: #000;
}




/* Controls */
.training-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* bring controls closer to cards */
  gap: 15px; /* reduced space between arrows and dots */
}

.training-controls .arrow-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #000000;
  background: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}

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


/* Dots */
.training-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px; /* Tight spacing between dots */
}

.training-dots button {
  all: unset; /* resets default browser button styles */
  display: block;
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 0.3s ease, transform 0.2s ease;
}

.training-dots button.active {
  background: #222;
  transform: scale(1.25);
}


/* Responsive */
@media (max-width: 992px) {
  .training-slider .card {
    flex: 0 0 calc((100% - 20px) / 2);
    max-width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 768px) {
  .training-slider .card {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


/* Coaching Section */
.coaching-section {
  max-width: 1600px;
    margin: 0 auto;
    width: 100%;
  padding: 0px 60px;
  padding-bottom: 80px;
}
.coaching-img {
  border-radius: 20px;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.coaching-text {
  padding-left: 0px;
  align-content: flex-start;
}
.coaching-text h2 {
    font-size: var( --h2-size);
font-family: var( --font-primary);
    font-weight: var( --h2-weight);
    color: #1c0d45;
    margin-bottom: 15px;
line-height: var(--h2-line-height);
}
.coaching-text p {
  color: #000;
  font-size: var(  --description-size);
font-family:var( --font-secondary);
line-height:var(--description-line-height);
  /* line-height: 1.5; */
  margin-bottom: 25px;
}
.coaching-section .feature {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  color: #1c0d45;
  font-size: var(  --description-size);
font-family:var( --font-secondary);
line-height:var(--description-line-height);
font-weight:600;

}
.coaching-section .feature img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}
.coaching-section .btn-read {
  /* margin-top: 20px; */
  background: #f96e46;
  color: #fff;
  border-radius: 25px;
  padding: 10px 20px;
  
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: 0.3s;
  font-size: var(  --button-font-size);
font-family:var( --font-secondary);
line-height:var( --button-line-height);
    max-width: fit-content;
    font-weight: 500;
}
.coaching-section .btn-read:hover {
  /* transform: scale(1.05); */
  /* color: #bbb; */
  background-color: #f96e46a3;

}
.coaching-section .btn-read i {
  margin-left: 8px;
}

/* Industries Section */
/* Industries Section */
.industries-section {

  background: #f5f5f5;
  padding: 60px 0;
  /* margin-right: -10px; */
  padding-left: 60px !important;

}
.industries-section-inner-container{
  max-width: 1600px;
  margin: 0 auto;
  width: 100%;
}

.industries-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.industries-content {
  flex: 1;
  max-width: 40%;
}

.industries-content span {
  text-transform: uppercase;
  font-weight: 700;
  color: #1c0d45;
  font-size: 20px;
  letter-spacing: 1.2px;
 font-family: var( --font-secondary) !important;
 margin-bottom: 20px;
line-height: 26px;
}


.industries-content h2 {
 
  color: #1c0d45;
  margin: 12px 0px;
font-family:var(--font-primary);
line-height:var( --h2-line-height);
 font-size: var( --h2-size);
  font-weight: var(--h2-weight);
}
.industries-content p {
  color: #000;
  font-size: var(--description-size);
font-family:var(--font-secondary);
line-height:var(--description-line-height);
  margin-bottom: 20px;
}

.industries-content .btn-learn {
  background: #f96e46;
  color: #fff;
  border-radius: 25px;
  padding: 10px 20px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
  font-size: var(--button-font-size);
font-family:var(--font-secondary);
line-height:var(--button-line-height);
font-weight:var( --button-font-weight);
}
.industries-content .btn-learn:hover {
      background-color: #f96e46a3;

}

.industries-content .custom-indicators {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.industries-content .custom-indicators .arrow {
    width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #000000;
  background: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}
.industries-content .custom-indicators .arrow:hover {
  background: #f5f5f5;
  transform: scale(1.08);
}
.industries-content .carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.industries-content .carousel-dots button {
  all: unset; /* resets default browser button styles */
  display: block;
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 0.3s ease, transform 0.2s ease;
}
.industries-content .carousel-dots button.active {
   background: #222;
  transform: scale(1.25);
}



/* Right side slider */
.carousel-wrapper {
  flex: 1.5;
  overflow: hidden;
  position: relative;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
  padding: 20px 0;
}
.industry-card {
  flex: 0 0 calc(100% / 2.5); /* 2.5 cards visible */
  margin: 0 10px;
  border: none;
  border-radius: 1px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  background: #fff;
}
.industry-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.industry-card .card-body {
  padding: 20px;
}
.industry-card h5 {
  font-size: 1.7rem;
  font-weight: 600;
  color: #1c0d45;
  margin-bottom: 8px;
font-family:var(--font-primary);
}
.industry-card p {
  font-size: 18px;
  color: #000;
  margin-bottom: 0;
font-family:var(--font-secondary);
line-height:24px;
}

.industry-card .btn-custom {
  background-color: #f96e46;
  border-radius: 50%;
  color: white;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;   /* equal width */
  height: 40px;  /* equal height */
  padding: 0;    /* no extra padding */
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.industry-card .btn-custom:hover {
      background-color: #f96e46a3;

}


@media (max-width: 991px) {
  .industries-layout {
    flex-direction: column;
    text-align: center;
  }
  .industries-content {
    max-width: 100%;
  }
  .carousel-wrapper {
    width: 100%;
  }
  .industry-card {
    flex: 0 0 80%;
  }
}

/* Stats Section */
.stats-section {
  max-width: 1600px;
    margin: 0 auto;
    width: 100%;
  background: #fff;
  padding: 80px 60px;
  text-align: center;
}
.stats-heading {
  
  letter-spacing: 0;

  color: #1c0d45;
  margin-bottom: 15px;
  text-transform: capitalize;
font-family:var(--font-primary);
line-height:var( --h2-line-height);
 font-size: var( --h2-size);
  font-weight: var(--h2-weight);
}
.stats-subheading {
    
    color: #000;
    margin: 0 auto 40px;
    max-width: 750px;
font-size: var(--description-size);
    font-family: var(--font-secondary);
    line-height: var(--description-line-height);
}
.stat-box {
  padding: 10px;
  position: relative;
    text-align: center;
}
.stat-box::before {
  content: "";
  display: block;
  width: 100%;

  margin: 0 auto 0px;
  border-top: 2.5px solid #eee;
}
.stat-number {
  font-size: 5rem;
  font-weight: 400;
  color: #000000;
}
.stat-text {
  color: #000000;
  margin-top: -10px;
font-size: var(--description-size);
    font-family: var(--font-secondary);
    line-height: var(--description-line-height);
}

/* insights-section   */

.insights-section {
  max-width: 1600px;
    margin: 0 auto;
    width: 100%;
 
  /* margin: 50px auto; */
  padding: 0px 60px;
  padding-bottom: 80px;
}

.insights-title {
  text-align: center;
  margin-bottom: 40px;
}

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

.insights-title p {
  color: #000;
font-size: var(--description-size);
    font-family: var(--font-secondary);
    line-height: var(--description-line-height);
}

.insights-container {
  
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

/* Left Large Card */
.insight-left {
  flex: 1.8;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}

.insight-left img.insight-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: brightness(60%); */
  z-index: 0;
}

.insight-left-content {
  position: relative;
  z-index: 1;
  color: white;
  padding: 20px;
}
.insight-left-content p{
  font-size: 18px;
}

.insight-left-content span {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight:600;
}

.insight-left-content h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  /* line-height: 1.2; */
  margin: 8px 0;
font-family: var( --font-primary) !important;
}

/* Right Section */
.insight-right {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.insight-card {
  border-radius: 0;
  overflow: hidden;
  display: flex;
  min-height: 180px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.05);
}

.insight-card > a {
  display: block; /* Ensures the anchor tag behaves correctly */
  width: 50%;
  height: 300px;
  flex-shrink: 0; /* Prevents the link from shrinking */
}

/* Step 2: Make the image fill its new parent anchor tag completely. */
.insight-card > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image maintains its aspect ratio */
}

.insight-card-content {
  position: relative;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
  color: white;
  
}

/* Add overlay for readability */
.insight-card-content::before {
  content: "";
  position: absolute;
  inset: 0;
 background: url('../img/home assets/Footer-bg.webp') no-repeat center center/cover;
  z-index: 0;
}

.insight-card-content span,
.insight-card-content h4,
.insight-card-content p {
  position: relative;
  z-index: 1;
}

.insight-card-content span {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 5px;
  opacity: 0.9;
font-family: var( --font-secondary) !important;
line-height:20px;
}

.insight-card-content h4 {
  margin: 5px 0;
  font-size: 1.5rem;
  font-weight: 600;
font-family: var( --font-primary) !important;
    font-size: 26px;
    line-height: 28px;
}

.insight-card-content p {
  font-size: 16px;
  letter-spacing: 0;
  margin: 5px 0;
  /* line-height: 1.7; */
  font-weight: 500;
  opacity: 0.95;
font-size: 18px !important;
    
    font-family: var(--font-secondary) !important;
    line-height: 24px;
    
}

.insight-card-content .blog_date {
  font-size: 16px;
  font-weight: 400;
  margin-top: 15px;
font-family: var( --font-secondary) !important;
line-height:20px;
}

@media (max-width: 992px) {
  .insights-container {
    flex-direction: column;
  }
  .insight-left,
  .insight-right {
    flex: 1;
  }
  .insight-card {
    flex-direction: column;
  }
  .insight-card > a {
    width: 100%;
    height: 150px;
  }
  .insight-card-content {
    width: 100%;
  }
}




/* Section Styling */
.testimonial-section {

  padding: 80px 60px;
  text-align: center;
  background: #f5f5f5;
}
.testimonial-section-inner-container{
  max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}
.testimonial-section h2 {
  
  color: #1c0d45;
  
  margin-bottom: 40px;
font-size: var(--h2-size);
    font-family: var(--font-primary);
    font-weight: var(--h2-weight);
    line-height: var(--h2-line-height);
}
.testimonial-container {
  position: relative;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonial-card {
  background: white;
  border-radius: 20px;
  margin: 10px;
  flex: 0 0 calc(33.333% - 20px);
  overflow: hidden;
}
.testimonial-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonial-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}
.testimonial-play-btn::before {
  content: "";
  border-left: 14px solid #091d3e;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  margin-left: 3px;
}
.testimonial-body {
  padding: 20px;
  text-align: left;
}
.testimonial-body h5 {
  font-weight: 600 !important;
  font-size: 28px;
 
  color: #1c0d45;
font-family: var(--font-primary);
}
.testimonial-body p {
  
  color: #000;
  /* line-height: 1.6; */
    font-size: var(--description-size);
    font-family: var(--font-secondary);
    line-height: var(--description-line-height);
}
.divider {
  border-top: 2px dashed #bbb;
  width: 100%;
  margin: 20px 0;
}
.author {
  margin-top: 15px;
  font-weight: 700;
  color: #1c0d45;
    font-size: var(--description-size);
    font-family: var(--font-secondary);
    line-height: var(--description-line-height);
}
.designation {
  
  color: #091d3e;
    font-size: var(--description-size);
    font-family: var(--font-secondary);
    line-height: var(--description-line-height);
}
/* Controls + Dots */
.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* bring controls closer to cards */
  gap: 15px;
}
.testimonial-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;
}
.testimonial-btn:hover {
   background: #f5f5f5;
  transform: scale(1.08);
}
.testimonial-dots {
 display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.testimonial-dots button {
    all: unset; /* resets default browser button styles */
  display: block;
  width: 8px;
  height: 8px;
  background: #bbb;
  border-radius: 50%;
  cursor: pointer;
  flex: 0 0 auto;
  transition: background 0.3s ease, transform 0.2s ease;
}
.testimonial-dots button.active {
   background: #222;
  transform: scale(1.25);
}

/* Video Popup */
.video-popup {
  position: fixed;
  top:0; left:0;
  width:100%; height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,0.8);
  z-index: 9999;
}
.video-popup.d-none { display:none; }
.video-popup-content {
  position: relative;
  max-width: 800px;
  width: 90%;
  background:#000;
  border-radius:8px;
  overflow:hidden;
}
.video-popup video { width:100%; height:auto; }
.video-popup-close {
  position:absolute;
  top:10px; right:15px;
  font-size:28px;
  color:#fff;
  cursor:pointer;
  z-index:1000;
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-card { flex: 0 0 calc(50% - 20px); }
}
@media (max-width: 576px) {
  .testimonial-card { flex: 0 0 100%; }
}


.training-slider {
  
  padding-top: 20px;
}
.training-slider .card {
  position: relative;
  /* z-index: 1;   */
  overflow: visible; /* make sure ::before is visible */
}

.training-slider .card::before {
  content: "";
  position: absolute;
  top: -4px; /* peeks 25px above the card */
  left: 17%;
  transform: translateX(-50%);
  width: 137px;
  height: 50px;
  background: #0084C5;
  border-radius: 8px;
  z-index: -1; /* behind card content */
  box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* optional for depth */
  
}


/* ===========================
   📱 RESPONSIVE STYLES
   Tablet (max-width: 1024px)
   Mobile (max-width: 767px)
   =========================== */

/* =======================
   SERVICES SECTION
   ======================= */
@media (max-width: 1024px) {
    .consulting-services-container {
        flex-direction: column;
        align-items: center;
        padding: 60px 30px;
        gap: 30px;
    }
    .consulting-services-content {
        max-width: 90%;
        text-align: center;
    }
    .consulting-services-image img {
        width: 80%;
    }
}

@media (max-width: 767px) {
    .consulting-services-container {
        padding: 40px 15px;
    }
    .consulting-services-content {
        max-width: 100%;
        padding: 1px 1px;
        /* padding: 0 !important; */
    }
    /* .consulting-services-content {
    flex: 1;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  } */

    .consulting-services-content h2 {
        font-size: 1.8rem;
        text-align: left;
    }
    .consulting-services-content p {
        font-size: 1rem;
        text-align: left;
        width: 100%;
        margin: 0;
        padding: 0;
    }
    .consulting-services-image img {
        width: 100%;
    }
    .consulting-services-image img {
        width: 100%;
        height: auto;
        object-fit: contain;
        opacity: 1;
        transition: opacity 0.5s ease-in-out;
    }
    .consulting-accordion {
        margin-left: 0 !important;
    }
    .consulting-accordion-item {
        border: none;
        background: #f0f0f0;
        margin-bottom: 2px;
        margin-right: 0;
        text-align: left;
        width: 100%;
    }
    .consulting-accordion-body.show {
    max-width: 100% !important;
    max-height: 100% !important;
    padding-right: 0px !important;
}
}

/* =======================
   TRAINING SECTION
   ======================= */
@media (max-width: 1024px) {
    .training-section {
        padding: 60px 25px;
    }
    .training-section h2 {
        font-size: 1.8rem;
    }
    .training-section p {
        font-size: 1rem;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .training-section {
        padding: 40px 20px;
        text-align: left;
    }
    .training-section .container-fluid{
      padding: 0;
    }
    .training-section h2 {
        font-size: 1.8rem !important;
        text-align: left;
    }
    .training-section p {
        font-size: 14px;
        width: 100%;
        text-align: left;
      
    }/* Button */
.training-slider .btn {
    background: rgba(255, 255, 255, 0.35);
    border: none;
    color: #fff;
    padding: 8px 15px;
    text-transform: uppercase;
    font-size: 12px;
    border-radius: 30px;
    backdrop-filter: blur(5px);

    width: 50%;
}

.training-slider {
    display: flex;
    overflow: hidden;
    gap: 40px;
    scroll-behavior: smooth;
    padding: 0 ;
    will-change: transform;
}

    /* Badge */
    .training-slider .badge {
        position: absolute;
        top: -8px;
        left: 1px;
        background: #0084c5;
        color: #fff;
        font-size: 13px;
        font-weight: bold;
        padding: 15px 20px;
    }
    .services-section{
      padding: 30px 20px;
    }
    .services-section .container-fluid{
      padding: 0px;
    }
    .services-section h2{
      text-align: left;
      font-size: 32px !important;
    }
    .services-section p{
      text-align: left;
    }
    .training-slider h3{
      font-size:20px;
    }
    .training-slider .logo img{
      max-width:85%;
    }
}

/* =======================
   COACHING SECTION
   ======================= */
@media (max-width: 1024px) {
    .coaching-section {
        padding: 60px 25px;
    }
    .coaching-section h2 {
        font-size: 40px;
        text-align: left;
    }
    .coaching-section p {
        font-size: 1.1rem;
        text-align: left;
    }
}

@media (max-width: 767px) {
    .coaching-section {
        padding: 30px 20px;
        text-align: left;
    }
    .coaching-section .container-fluid{
      padding: 0px;
    }
    .coaching-section .container-fluid .row{
      margin-left:0px !important;
      margin-right:0px !important;
    }
    .coaching-section .container-fluid .row .col-lg-7{
      padding-left: 0px !important;
      padding-right: 0px !important;
    }
    .coaching-section h2 {
        font-size: 32px;
        text-align: left;
    }
    .coaching-section p {
        font-size: 1rem;
        text-align: left;
    }
}



/* =======================
   INDUSTRIES SECTION
   ======================= */
@media (max-width: 1024px) {
    .industries-section {
        padding: 60px 25px;
    }
    .industries-section h2 {
        font-size: 2rem;
    }
    .industries-section p {
        font-size: 1.1rem;
    }
    .industries-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    /* .industries-item img {
    width: 60px;
    height: 60px;
  } */

    

    .industries-section {
        background: #f5f5f5;

        margin-right: 0px;
        padding-left: 6px !important;
    }
    .industries-layout {
        align-items: center;

        gap: 1px;
    }

    .industries-content {
        max-width: 100%;
    }
}


/* ============= Responsive ============= */
@media (max-width: 991px) { /* Tablets */
    .stats-section {
        padding: 50px 30px;
    }
    .stats-heading {
        font-size: 32px;
    }
    .stat-number {
        font-size: 3.5rem;
    }
    .stat-text {
        font-size: 1rem;
    }
}
/* ================== Responsive ================== */

/* Tablet Devices (≤992px) */
@media (max-width: 992px) {
  .insights-section {
      padding: 20px 30px;
  }

  .insights-title h2 {
      font-size: 32px;
  }

  .insights-container {
      flex-direction: column;
  }

  .insight-left {
      min-height: 350px;
  }

  .insight-left-content h3 {
      font-size: 24px;
  }

  .insight-card {
      flex-direction: row;
      min-height: 150px;
  }

  .insight-card img,
  .insight-card-content {
      width: 50%;
  }
}

@media (max-width: 767px) {
    .industries-section {
        padding: 40px 20px;
        margin: 0px !important;
        padding-left: 20px !important;
    }
    .industries-section .container-fluid{
      padding: 0px !important;
    }
    .industries-section h6 {
        font-size: 1.15rem;
        text-align: left;
    }
    .industries-section h2 {
        font-size: 32px;
        text-align: left;
    }
    .industries-content span{
      text-align: left;
      font-size: 14px;
    }
    .industry-card{
      flex: 0 0 100%;
    }
    .industries-layout{
      text-align: left;
    }
    .btn-learn {
        text-align: left;
        align-items: left;
    }
    .industries-section p {
        font-size: 1rem;
        text-align: left;
    }
    .industries-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .industries-item img {
        width: 50px;
        height: 50px;
    }
    .trusted-section{
      padding: 0px 20px;
      padding-bottom: 40px;
      
    }
    .trusted-section h2{
    font-size: 32px;
  }
  .logo-slider{
    margin: 20px 0px ;
    margin-top: 60px;
  }
    .testimonial-section .container-fluid{
      padding: 0px !important;

    }
    .testimonial-section{
      padding:60px 20px;
    }
    .testimonial-section h2{
      text-align: left;
      font-size: 32px;
      margin-bottom: 20px;
    }
    .testimonial-body h5{
      font-size: 20px;
    }
    .testimonial-body p{
      font-size: 14px;
    }
}
@media (max-width: 768px) { /* Small Tablets & Large Mobiles */
    .stats-section {
        padding: 40px 20px !important;
    }
    .stats-section .container-fluid{
      padding: 0px !important;
    }
    .stats-heading {
        font-size: 1.8rem;
        text-align: left;
    }
    .stats-subheading{
      text-align: left;
    }
    .stat-number {
        font-size: 3rem;
        text-align: left;
    }
    .stat-text {
        text-align: left;
        font-size:0.9;
    }
    .stat-box {
        text-align: left;
    }
    .stat-box::before {
        width: 60%;
        margin: 0;
    }
}


@media (max-width: 576px) { /* Mobile Phones */
    .stats-section {
        padding: 30px 15px;
    }
    .stats-heading {
        font-size: 32px;
    }
    .stats-subheading {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    .stat-number {
        font-size: 42px;
    }
    .stat-text {
        font-size: 0.9rem;
        margin-top: 0px;
    }
    .stat-box {
        margin-bottom: 15px;
        text-align: center;
    }
    .stat-box::before {
        border-top: none;
        margin: 0;
    }

}

/* Small Tablets / Large Mobiles (≤768px) */
@media (max-width: 768px) {
  .insights-section{
    padding: 20px !important;
    margin-top: 0px !important;
    padding-top: 0px !important;
  }
  .insights-section .container-fluid{
    padding: 0px !important;
  }
  .insights-title h2 {
      font-size: 32px !important;
      text-align: left;
  }

  .insights-title p {
      font-size: 16px;
      text-align: left;
  }

  .insight-left {
      min-height: 300px;
  }

  .insight-left-content {
      padding: 15px;
  }

  .insight-left-content h3 {
      font-size: 22px;
  }

  .insight-card {
      flex-direction: column;
      min-height: auto;
  }

  .insight-card > a {
      width: 100%;
      height: 200px;
  }

  .insight-card-content {
      width: 100%;
      padding: 15px;
      margin: 0;
  }

  .insight-card-content h4 {
      font-size: 20px;
  }

  .insight-card-content p {
      font-size: 14px;
  }
  
}

/* Mobile Devices (≤576px) */
@media (max-width: 576px) {
  .insights-section {
      padding: 20px 5px;
  }

  .insights-title h2 {
      font-size: 1.8rem;
    
  }

  .insights-title p {
      font-size: 1rem;
  }

  .insight-left {
      min-height: 250px;
  }
  

  .insight-left-content span {
      font-size: 12px;
  }

  .insight-left-content h3 {
      font-size: 18px;
  }

  .insight-left-content p {
      font-size: 13px;
      line-height: 1.5;
  }

  .insight-card > a {
      height: 220px;
  }
  .insight-card > a > img {
      object-position: top;
  }

  .insight-card-content h4 {
      font-size: 18px;
  }

  .insight-card-content p {
      font-size: 13px;
  }

  .insight-card-content .blog_date {
      font-size: 0.65rem;
  }
}

@media (min-width:768px) and (max-width:1024px) {
  .consulting-services-image img{
    height: auto !important;
    width: 100%;
  }
  .services-section{
    padding: 80px 30px;
  }
  .consulting-services-content{
    padding: 40px 0px;
    text-align: left;
  }
  .training-slider .card::before{
    left:23% ;
  }
  .training-slider{
    padding: 0px;
  }
      .coaching-section .container-fluid .row {
        margin-left: 0px !important;
        margin-right: 0px !important;
    }
        .coaching-section .container-fluid .row .col-lg-7 {
        padding-left: 0px !important;
        padding-right: 0px !important;
    }
        .industries-content{
          text-align: left;
        }
        .industry-card {
        flex: 0 0 50%;
    }
    .industries-section{
      padding-left: 30px !important;
      padding-right: 30px !important;
    }
     .insight-card > a > img{
      height: 100%;
    }
    .testimonial-section{
      padding: 60px 30px;
    }
}


@media (max-width:768px) {
  
  .custom-subtitle{
    font-size: 16px;
  }
  .training-section p{
    font-size: 16px;
  }
.insight-left-content p{
font-size: 16px !important;
}
.testimonial-body p{
font-size: 16px !important;
}
}


@media (min-width:1600px) {
  .hero-section{
    min-height: fit-content;
    padding-top: 100px ;
    padding-bottom: 100px;
  }

/* .logo-shape {

    right: 35%;
    top: 0;
    width: 800px;
    height: fit-content;

} */
}


@media (max-width:768px) {
  .trusted-logos small{
    font-size: 16px;
  }
  .services-section p{
    font-size: 16px;
  }
  .service-card h3 {
    font-size:24px ;
  }
  .service-card img{
    height: 360px;
  }
  .service-card {
      flex: 0 0 calc((100% - 12px));
      margin: 0 10px;
  }
  .consulting-services-inner-container{
    flex-direction: column;
  }
  .consulting-services-content{
    margin-top: 20px;
  }
  .consulting-services-container{
    padding: 30px 20px;
  }
  .consulting-services-content h2{
    font-size: 32px !important;
  }
  .consulting-accordion{
    margin-top: 15px;
  }
  .consulting-accordion-button{
    font-size: 24px;
    font-weight: 600;
  }
  .consulting-accordion-body{
    font-size: 16px;
    margin-bottom: 0px;
  }
  .training-section h2{
    font-size: 32px !important;
  }
  .training-slider h3{
    font-size: 24px;
  }
  .coaching-text .row .col-md-6{
    padding: 0px !important;
  }
  .coaching-section .feature{
    margin-bottom: 15px;
  }
  .coaching-section .btn-read{
    margin-top: 15px;
  }
  .industry-card h5{
    font-size: 24px;
  }
  .insights-title{
    margin-bottom: 15px;
  }
  .insight-left-content h3 , .insight-card-content h4{
    font-size: 24px;
  }
  .insight-left-content p , .insight-card-content p{
    font-size: 16px  !important;
  }
  .trusted-section{
    padding: 40px 20px;
  }
  .trusted-section h2{
    margin-bottom: 0px;
  }
  .testimonial-section{
    padding: 40px 20px;
  }
      .testimonial-card {
        flex: 0 0 calc(100% - 12px);
    }
    .testimonial-body h5{
      font-size: 24px;
    }
    .testimonial-body p{
      font-size: 16px !important;
    }
    .insight-left{
      min-height: 350px;
    }
    .custom-title{
      font-size: 40px;
      line-height: normal;
    }
    .testimonial-btn{
      color: #000;
      font-size: 16px;
    }

    .industries-content .custom-indicators .arrow{
      color: #000;
      font-size: 16px;
    }
    .training-controls .arrow-btn{
      font-size: 16px;
      color: #000;
    }

    .services-controls button.arrow-btn{
      font-size: 16px;
      color: #000;
    }


    .testimonial-btn.prev {
margin-right:-10px;
}
.testimonial-btn.prev .bi-arrow-left{
margin-left:-5px;
}
.testimonial-btn.next{
margin-left:-10px;
}
.testimonial-btn.next .bi-arrow-right{
margin-left:-5px;
}
#industriesPrev{
margin-right:-10px;
}
#industriesNext{
margin-left:-10px;
}
#industriesPrev .bi-arrow-left{
margin-left:-5px;
}
#industriesNext .bi-arrow-right{
margin-left:-5px;
}
#trainingPrev .bi-arrow-left{
margin-left:-5px;
}
#trainingNext .bi-arrow-right{
margin-left:-5px;
}
#servicesPrev .bi-arrow-left{
margin-left:-5px;
}
#servicesNext .bi-arrow-right{
margin-left:-5px;
}
}

@media (min-width:1700px){

.testimonial-section{
padding:80px 40px;
}
.testimonial-section-inner-container{
padding:0 40px;
}
.testimonial-section-inner-container .container-fluid{
padding:0px;
}
.insights-section{
padding:0 40px 80px 40px;
}
.insights-container{
padding:0px;
}
.stats-section{
padding:80px 40px;
}
.industries-section{
padding:60px 40px !important;
}
.industries-section-inner-container{
padding:0 40px;
}
.industries-layout{
padding:0px;
}
.coaching-section{
padding:0 40px 80px 40px;
}

.coaching-section .container-fluid{
padding:0px;
}
.training-section{
padding:80px 40px;
}
.training-section .container-fluid{
padding:0px;
}
.consulting-services-inner-container{
padding:0 40px;
}
.services-section{
padding:80px 40px;
}
.services-section .container-fluid{
padding:0px;
}
.hero-section{
padding-left:80px;
}

}