.elementor-230 .elementor-element.elementor-element-f8d6308{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-230 .elementor-element.elementor-element-fb982d3{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-230 .elementor-element.elementor-element-ac6f7fc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-230 .elementor-element.elementor-element-917f707{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-230 .elementor-element.elementor-element-c2c2403{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-230 .elementor-element.elementor-element-7486697{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-230 .elementor-element.elementor-element-923c0d9{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-230 .elementor-element.elementor-element-5474998{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-230 .elementor-element.elementor-element-c6b3c14{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-230 .elementor-element.elementor-element-62cba1f{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 0px 0px 0px;}.elementor-230 .elementor-element.elementor-element-79a924f{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-230 .elementor-element.elementor-element-c4a5270{--display:flex;}.elementor-widget-button .elementor-button{background-color:var( --e-global-color-accent );font-family:var( --e-global-typography-accent-font-family ), Sans-serif;font-weight:var( --e-global-typography-accent-font-weight );}.elementor-230 .elementor-element.elementor-element-2f4fd16.elementor-element{--align-self:flex-end;}@media(max-width:767px){.elementor-230 .elementor-element.elementor-element-07cfade{padding:12px 12px 12px 12px;}}/* Start custom CSS for html, class: .elementor-element-fb982d3 *//* Page-level edge-to-edge support (Elementor এর default padding থাকলে কাটবে) */
body { margin: 0; }
.fk-slider--full { width: 100vw; margin: 0 !important; padding: 0 !important; }

/* Elementor container ভিতরে max-width থাকলে break করার জন্য */
.fk-slider--full{
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

/* Slider base */
.fk-slider--full * { box-sizing: border-box; }

.fk-slider__viewport{
  position: relative;
  overflow: hidden;
  border-radius: 0 !important;     /* ✅ no radius */
  background: #000;
  box-shadow: none !important;     /* ✅ no outer shadow */
  width: 100%;
  aspect-ratio: 16 / 6;
}

.fk-slider__track{
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}

.fk-slide{
  flex: 0 0 100%;
  height: 100%;
}

.fk-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Arrows */
.fk-slider__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0 !important;
  background: rgba(0,0,0,.45);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  z-index: 5;
  backdrop-filter: blur(8px);
  transition: all .15s ease;
}

.fk-slider__btn:hover{
  background: rgba(0,0,0,.65);
  transform: translateY(-50%) scale(1.05);
}

.fk-slider__btn--prev{ left: 16px; }
.fk-slider__btn--next{ right: 16px; }

/* Dots */
.fk-slider__dots{
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  z-index: 6;
}

.fk-slider__dot{
  appearance: none !important;
  -webkit-appearance: none !important;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0 !important;
  padding: 0 !important;
  background: rgba(255,255,255,.45) !important;
  cursor: pointer;
}

.fk-slider__dot.is-active{
  background: #fff !important;
  transform: scale(1.25);
}

/* Responsive */
@media (max-width: 1024px){
  .fk-slider__viewport{ aspect-ratio: 16 / 7; }
}

@media (max-width: 768px){
  .fk-slider__viewport{ aspect-ratio: 16 / 9; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-917f707 */0/* Apply Hind Siliguri font */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;600&display=swap');

body {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
}

.title-container {
    text-align: center;
    padding-top: 0px; /* Added top padding */
}

.batch-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    padding: 10px 20px;
    border-bottom: 3px solid #8e0407; /* Updated underline color to #8e0407 */
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.batch-title:hover {
    color: #8e0407; /* Hover effect on text color changed to #8e0407 */
    cursor: pointer;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d17c330 *//* Apply Hind Siliguri font */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;600&display=swap');

body {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
}

.course-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

.course-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 48%;
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.course-card img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    max-height: 300px; /* Ensure image doesn’t become too tall */
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.course-card h2 {
    font-size: 18px;
    color: #333;
    margin: 15px 0;
}

.button {
    display: inline-block;
    padding: 12px 25px;  /* Increased padding inside the button */
    margin-top: 15px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-bottom: 30px;  /* Increased margin-bottom for more space below the button */
}

.button:hover {
    background-color: #0056b3;
}

.course-card:hover {
    transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .course-card {
        width: 100%;
    }

    .course-card img {
        max-height: 250px; /* Adjust the height on smaller screens */
    }

    .button {
        margin-bottom: 35px; /* More space on mobile devices */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-923c0d9 */0/* Apply Hind Siliguri font */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;600&display=swap');

body {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
}

.title-container {
    text-align: center;
    padding-top: 0px; /* Added top padding */
}

.batch-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    padding: 10px 20px;
    border-bottom: 3px solid #8e0407; /* Updated underline color to #8e0407 */
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.batch-title:hover {
    color: #8e0407; /* Hover effect on text color changed to #8e0407 */
    cursor: pointer;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-fde8e8c *//* Apply Hind Siliguri font */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;600&display=swap');

body {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
}

.course-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 20px;
}

.course-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 48%;
    text-align: center;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.course-card img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    max-height: 300px; /* Ensure image doesn’t become too tall */
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.course-card h2 {
    font-size: 18px;
    color: #333;
    margin: 15px 0;
}

.button {
    display: inline-block;
    padding: 12px 25px;  /* Increased padding inside the button */
    margin-top: 15px;
    background-color: #007BFF;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-bottom: 30px;  /* Increased margin-bottom for more space below the button */
}

.button:hover {
    background-color: #0056b3;
}

.course-card:hover {
    transform: scale(1.05);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .course-card {
        width: 100%;
    }

    .course-card img {
        max-height: 250px; /* Adjust the height on smaller screens */
    }

    .button {
        margin-bottom: 35px; /* More space on mobile devices */
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-62cba1f */0/* Apply Hind Siliguri font */
@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@400;600&display=swap');

body {
    font-family: 'Hind Siliguri', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
}

.title-container {
    text-align: center;
    padding-top: 0px; /* Added top padding */
}

.batch-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    padding: 10px 20px;
    border-bottom: 3px solid #8e0407; /* Updated underline color to #8e0407 */
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.batch-title:hover {
    color: #8e0407; /* Hover effect on text color changed to #8e0407 */
    cursor: pointer;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-07cfade *//* ===== BASE ===== */
.med-marquee{
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  background: #ffffff; /* PURE WHITE */
}

/* Track */
.med-track{
  display: flex;
  width: max-content;
  animation: medScroll 35s linear infinite;
  will-change: transform;
  transform: translateZ(0);
}

.med-marquee:hover .med-track{
  animation-play-state: paused;
}

/* Grid horizontal */
.med-grid{
  font-family: "Hind Siliguri", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.med-grid--scroll{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100vw - 96px) / 4);
  gap: 24px;
  padding: 0 12px;
}

/* Card design (UNCHANGED) */
.med-card2{
  background: #f3f6f8;
  border-radius: 20px;
  padding: 28px 20px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Avatar */
.med-avatarWrap{
  width: 170px;
  height: 170px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(0,0,0,0.03);
  display: grid;
  place-items: center;
}

.med-avatarRing{
  width: 140px;
  height: 140px;
  border-radius: 999px;
  background: rgba(0,0,0,0.04);
  display: grid;
  place-items: center;
  padding: 10px;
}

.med-avatar{
  width: 120px;
  height: 120px;
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  border: 6px solid #fff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.10);
}

.med-avatar img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text */
.med-name2{
  margin: 6px 0;
  font-size: 28px;
  font-weight: 700;
}

.med-college2{
  font-size: 18px;
  margin-bottom: 8px;
}

.med-meta2{
  font-size: 16px;
  font-weight: 600;
}

.med-session2{
  margin-top: -15px;
  font-size: 14px;
  color: #6b7280;
}

/* Animation */
@keyframes medScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Responsive */
@media (max-width:1024px){
  .med-grid--scroll{
    grid-auto-columns: calc((100vw - 72px) / 3);
  }
}

@media (max-width:767px){
  .med-grid--scroll{
    grid-auto-columns: calc(100vw - 24px);
  }
}/* End custom CSS */