/* ===== DIRECTORS NOTE - KBDIR STYLES ===== */

.kbdir-directors-note {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#kbdir-imgBox {
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

#kbdir-imgBox:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.15);
}

.kbdir-director-image {
  border-radius: 16px;
  max-width: 100%;
  height: auto;
  border: 4px solid #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.kbdir-message-container {
  background: white;
  padding: 35px 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease;
}

.kbdir-message-container:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.kbdir-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.kbdir-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #f7971e, #ffd200);
  border-radius: 4px;
}

.kbdir-description {
  font-size: 16px;
  line-height: 1.8;
  text-align: justify;
  color: #2c3e50;
  font-weight: 500;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}

.kbdir-signature {
  font-size: 17px;
  line-height: 1.8;
  text-align: left;
  color: #1a2a3a;
  font-weight: 600;
  font-family: 'Georgia', 'Times New Roman', serif;
  border-top: 2px dashed #f1c40f;
  padding-top: 18px;
  margin-top: 8px;
}

.kbdir-name {
  font-size: 22px;
  font-weight: 700;
  color: #d35400;
  letter-spacing: 0.5px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== RESPONSIVE TWEAKS ===== */
@media (max-width: 768px) {
  .kbdir-message-container {
    padding: 25px 20px;
    margin-top: 25px;
  }

  .kbdir-title {
    font-size: 26px;
    text-align: center;
  }

  .kbdir-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .kbdir-description {
    font-size: 15px;
  }

  .kbdir-signature {
    text-align: center;
  }

  #kbdir-imgBox {
    padding: 12px;
  }
}




/* ===== CATEGORIES - KBDIR STYLES ===== */

#kbdir-categorySection {
  padding: 70px 0 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== HEADING STYLES ===== */
.kbdir-sec-heading {
  margin-bottom: 45px;
}

.kbdir-tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f39c12;
  background: rgba(243, 156, 18, 0.10);
  padding: 6px 20px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.kbdir-sec-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.3;
  margin-top: 8px;
}

.kbdir-sec-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #f7971e, #ffd200);
  border-radius: 4px;
  margin: 15px auto 0;
}

/* ===== CATEGORY GRID ===== */
.kbdir-categoryGrid {
  row-gap: 25px;
}

/* ===== CATEGORY ITEMS ===== */
.kbdir-icon-list-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: white;
  padding: 28px 15px 22px;
  border-radius: 18px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  min-height: 150px;
  margin: 5px 0;
  position: relative;
  overflow: hidden;
}

/* ===== HOVER EFFECTS ===== */
.kbdir-icon-list-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f7971e, #ffd200);
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 18px;
}

.kbdir-icon-list-block:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 45px rgba(243, 156, 18, 0.15);
  border-color: #f1c40f;
}

.kbdir-icon-list-block:hover::before {
  opacity: 0.06;
}

/* ===== ICON STYLES ===== */
.kbdir-catIcon {
  height: 65px;
  width: 65px;
  object-fit: contain;
  margin-bottom: 12px;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.kbdir-icon-list-block:hover .kbdir-catIcon {
  transform: scale(1.12) rotate(-3deg);
}

/* ===== CATEGORY NAME ===== */
.kbdir-catName {
  font-size: 16px;
  font-weight: 600;
  color: #1a2a3a;
  text-align: center;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.kbdir-icon-list-block:hover .kbdir-catName {
  color: #d35400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .kbdir-sec-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  #kbdir-categorySection {
    padding: 50px 0 40px 0;
  }

  .kbdir-sec-title {
    font-size: 26px;
  }

  .kbdir-icon-list-block {
    padding: 20px 12px 16px;
    min-height: 120px;
  }

  .kbdir-catIcon {
    height: 55px;
    width: 55px;
  }

  .kbdir-catName {
    font-size: 14px;
  }

  .kbdir-icon-list-block:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 576px) {
  .kbdir-sec-title {
    font-size: 22px;
  }

  .kbdir-icon-list-block {
    padding: 16px 10px 14px;
    min-height: 100px;
  }

  .kbdir-catIcon {
    height: 45px;
    width: 45px;
    margin-bottom: 8px;
  }

  .kbdir-catName {
    font-size: 12px;
  }

  .kbdir-tagline {
    font-size: 12px;
    padding: 4px 16px;
  }
}

/* ===== FEATURE SECTION - KBDIR STYLES ===== */

#kbdir-featureSection {
  padding: 70px 0 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f4f7fc 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== FEATURE GRID ===== */
.kbdir-featureGrid {
  row-gap: 30px;
}

/* ===== ICON BOX ===== */
.kbdir-iconBox {
  background: white;
  padding: 35px 28px 32px;
  border-radius: 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* ===== HOVER OVERLAY EFFECT ===== */
.kbdir-iconBox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(247, 151, 30, 0.04), rgba(255, 210, 0, 0.06));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 22px;
}

.kbdir-iconBox:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(243, 156, 18, 0.12);
  border-color: #f1c40f;
}

.kbdir-iconBox:hover::before {
  opacity: 1;
}

/* ===== ICON STYLES ===== */
.kbdir-img-icon {
  height: 75px;
  width: 75px;
  object-fit: contain;
  margin-bottom: 18px;
  transition: transform 0.5s ease;
  position: relative;
  z-index: 1;
}

.kbdir-iconBox:hover .kbdir-img-icon {
  transform: scale(1.12) rotate(-4deg);
}

/* ===== TITLE STYLES ===== */
.kbdir-featureTitle {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.kbdir-featureLink {
  color: #1a2a3a;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  line-height: 1.4;
}

.kbdir-featureLink:hover {
  color: #d35400;
}

/* ===== DESCRIPTION STYLES ===== */
.kbdir-featureDesc {
  font-size: 15px;
  line-height: 1.8;
  color: #4a5a6a;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
  text-align: justify;
  font-weight: 450;
}

/* ===== ADD A DECORATIVE LINE ===== */
.kbdir-featureTitle::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #f7971e, #ffd200);
  border-radius: 3px;
  margin: 12px auto 0;
  transition: width 0.4s ease;
}

.kbdir-iconBox:hover .kbdir-featureTitle::after {
  width: 80px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  #kbdir-featureSection {
    padding: 55px 0 45px 0;
  }

  .kbdir-iconBox {
    padding: 30px 22px 26px;
  }

  .kbdir-featureTitle {
    font-size: 17px;
  }

  .kbdir-featureDesc {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #kbdir-featureSection {
    padding: 45px 0 35px 0;
  }

  .kbdir-iconBox {
    padding: 25px 18px 22px;
    border-radius: 18px;
  }

  .kbdir-img-icon {
    height: 65px;
    width: 65px;
    margin-bottom: 14px;
  }

  .kbdir-featureTitle {
    font-size: 16px;
  }

  .kbdir-featureLink {
    font-size: 15px;
  }

  .kbdir-featureDesc {
    font-size: 14px;
    text-align: center;
  }

  .kbdir-iconBox:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 576px) {
  #kbdir-featureSection {
    padding: 35px 0 30px 0;
  }

  .kbdir-iconBox {
    padding: 20px 15px 18px;
  }

  .kbdir-img-icon {
    height: 55px;
    width: 55px;
    margin-bottom: 12px;
  }

  .kbdir-featureTitle {
    font-size: 14px;
  }

  .kbdir-featureLink {
    font-size: 13px;
  }

  .kbdir-featureDesc {
    font-size: 13px;
    line-height: 1.7;
  }

  .kbdir-featureTitle::after {
    width: 35px;
    height: 2px;
  }

  .kbdir-iconBox:hover .kbdir-featureTitle::after {
    width: 55px;
  }
}

/* ===== COVER IMAGE / CTA - KBDIR STYLES ===== */

#kbdir-coverSection {
  /* background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); */
  background-image: url('images/1.jpg'); /* à¤…à¤ªà¤¨à¥€ à¤‡à¤®à¥‡à¤œ à¤•à¤¾ à¤ªà¤¾à¤¥ à¤¡à¤¾à¤²à¥‡à¤‚ */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0 90px 0;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== OVERLAY ===== */
#kbdir-coverSection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: rgba(0, 0, 0, 0.65); */
  backdrop-filter: blur(3px);
  z-index: 0;
}

.kbdir-overlay {
  position: relative;
  z-index: 1;
  padding: 40px 35px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.30);
  transition: all 0.4s ease;
}

.kbdir-overlay:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 215, 0, 0.30);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.40);
}

/* ===== TITLE STYLES ===== */
.kbdir-coverTitle {
  color: #ff6b35;
  font-family: 'Droid Serif', 'Georgia', serif;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(255, 107, 53, 0.20);
  position: relative;
}

.kbdir-coverTitle::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ffd200);
  border-radius: 4px;
  margin: 15px auto 0;
}

/* ===== DESCRIPTION STYLES ===== */
.kbdir-coverDesc {
  color: rgba(255, 255, 255, 0.90);
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

/* ===== BUTTON GROUP ===== */
.kbdir-btnGroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* ===== PRIMARY BUTTON ===== */
.kbdir-btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b35, #e63c1f);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 16px 50px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35);
  border: none;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 320px;
  text-align: center;
}

/* ===== PRIMARY BUTTON HOVER ===== */
.kbdir-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.20), transparent);
  transition: left 0.6s ease;
}

.kbdir-btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 45px rgba(255, 107, 53, 0.50);
  color: #ffffff;
}

.kbdir-btn-primary:hover::before {
  left: 100%;
}

/* ===== LINK BUTTON ===== */
.kbdir-btn-link {
  display: inline-block;
  color: #ffd200;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 20px;
  border-radius: 30px;
  border: 2px solid transparent;
  letter-spacing: 0.5px;
}

.kbdir-btn-link:hover {
  color: #ffffff;
  border-color: rgba(255, 210, 0, 0.30);
  background: rgba(255, 210, 0, 0.08);
  transform: translateY(-2px);
}

/* ===== ANIMATION - FADE IN ===== */
.kbdir-overlay {
  animation: kbdirFadeUp 0.8s ease forwards;
}

@keyframes kbdirFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  #kbdir-coverSection {
    padding: 80px 0 70px 0;
  }

  .kbdir-coverTitle {
    font-size: 34px;
  }

  .kbdir-coverDesc {
    font-size: 18px;
  }

  .kbdir-overlay {
    padding: 35px 28px;
  }
}

@media (max-width: 768px) {
  #kbdir-coverSection {
    padding: 60px 0 50px 0;
    background-attachment: scroll;
  }

  .kbdir-coverTitle {
    font-size: 28px;
  }

  .kbdir-coverTitle::after {
    width: 60px;
    height: 3px;
  }

  .kbdir-coverDesc {
    font-size: 16px;
    padding: 0 10px;
  }

  .kbdir-overlay {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .kbdir-btn-primary {
    font-size: 16px;
    padding: 14px 35px;
    max-width: 280px;
  }

  .kbdir-btn-link {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  #kbdir-coverSection {
    padding: 45px 0 40px 0;
  }

  .kbdir-coverTitle {
    font-size: 24px;
  }

  .kbdir-coverTitle::after {
    width: 45px;
    height: 3px;
    margin: 12px auto 0;
  }

  .kbdir-coverDesc {
    font-size: 15px;
    padding: 0 5px;
    margin-bottom: 22px;
  }

  .kbdir-overlay {
    padding: 25px 15px;
    border-radius: 16px;
  }

  .kbdir-btn-primary {
    font-size: 14px;
    padding: 12px 28px;
    max-width: 240px;
    letter-spacing: 1px;
  }

  .kbdir-btn-link {
    font-size: 13px;
    padding: 6px 16px;
  }

  .kbdir-btnGroup {
    gap: 10px;
  }
}

/* ===== FEATURE BOX - KBDIR STYLES ===== */

#kbdir-featureSection {
  padding: 60px 0 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9edf2 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.kbdir-featureRow {
  gap: 25px 0;
}

/* ===== SINGLE FEATURE BOX ===== */
.kbdir-sfBox {
  background: white;
  padding: 30px 25px 28px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  align-items: center;
  gap: 20px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  min-height: 130px;
}

/* ===== HOVER EFFECT ===== */
.kbdir-sfBox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(247, 151, 30, 0.05), rgba(255, 210, 0, 0.08));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
}

.kbdir-sfBox:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 55px rgba(243, 156, 18, 0.15);
  border-color: #f1c40f;
}

.kbdir-sfBox:hover::before {
  opacity: 1;
}

/* ===== ICON WRAPPER ===== */
.kbdir-iconWrapper {
  width: 75px;
  height: 75px;
  min-width: 75px;
  background: linear-gradient(135deg, #fff5e6, #fff0d6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 2px solid rgba(243, 156, 18, 0.15);
  position: relative;
  z-index: 1;
}

.kbdir-sfBox:hover .kbdir-iconWrapper {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  border-color: #f7971e;
  transform: scale(1.08) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(243, 156, 18, 0.30);
}

/* ===== ICON STYLES ===== */
.kbdir-featureIcon {
  font-size: 34px;
  color: #f7971e;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.kbdir-sfBox:hover .kbdir-featureIcon {
  color: #ffffff;
  transform: scale(1.1);
}

/* ===== FEATURE CONTENT ===== */
.kbdir-featureContent {
  flex: 1;
  position: relative;
  z-index: 1;
}

/* ===== FEATURE TITLE ===== */
.kbdir-featureTitle {
  font-size: 19px;
  font-weight: 700;
  color: #1a2a3a;
  display: block;
  margin-bottom: 6px;
  transition: color 0.3s ease;
  line-height: 1.3;
}

.kbdir-sfBox:hover .kbdir-featureTitle {
  color: #d35400;
}

/* ===== FEATURE TEXT ===== */
.kbdir-featureText {
  font-size: 14px;
  color: #5a6a7a;
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 400;
  transition: color 0.3s ease;
}

.kbdir-sfBox:hover .kbdir-featureText {
  color: #3a4a5a;
}

/* ===== ADD A DECORATIVE LINE ===== */
.kbdir-featureTitle::after {
  content: '';
  display: block;
  width: 35px;
  height: 3px;
  background: linear-gradient(90deg, #f7971e, #ffd200);
  border-radius: 3px;
  margin-top: 6px;
  transition: width 0.4s ease;
}

.kbdir-sfBox:hover .kbdir-featureTitle::after {
  width: 55px;
}

/* ===== NUMBER BADGE (OPTIONAL) ===== */
.kbdir-sfBox .kbdir-badge {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(243, 156, 18, 0.12);
  letter-spacing: 1px;
  z-index: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  #kbdir-featureSection {
    padding: 50px 0 40px 0;
  }

  .kbdir-sfBox {
    padding: 25px 20px;
    min-height: 110px;
    gap: 16px;
  }

  .kbdir-iconWrapper {
    width: 65px;
    height: 65px;
    min-width: 65px;
  }

  .kbdir-featureIcon {
    font-size: 28px;
  }

  .kbdir-featureTitle {
    font-size: 17px;
  }

  .kbdir-featureText {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  #kbdir-featureSection {
    padding: 40px 0 30px 0;
  }

  .kbdir-sfBox {
    flex-direction: column;
    text-align: center;
    padding: 25px 18px 20px;
    min-height: auto;
    gap: 12px;
  }

  .kbdir-iconWrapper {
    width: 70px;
    height: 70px;
    min-width: 70px;
  }

  .kbdir-featureIcon {
    font-size: 30px;
  }

  .kbdir-featureTitle {
    font-size: 17px;
  }

  .kbdir-featureTitle::after {
    margin: 6px auto 0;
  }

  .kbdir-featureText {
    font-size: 14px;
    text-align: center;
  }

  .kbdir-sfBox:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 576px) {
  #kbdir-featureSection {
    padding: 30px 0 25px 0;
  }

  .kbdir-sfBox {
    padding: 20px 15px 16px;
    border-radius: 16px;
    gap: 10px;
  }

  .kbdir-iconWrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
  }

  .kbdir-featureIcon {
    font-size: 26px;
  }

  .kbdir-featureTitle {
    font-size: 15px;
  }

  .kbdir-featureTitle::after {
    width: 30px;
    height: 2px;
  }

  .kbdir-sfBox:hover .kbdir-featureTitle::after {
    width: 45px;
  }

  .kbdir-featureText {
    font-size: 13px;
  }
}

/* ===== BANNER / HERO - KBDIR STYLES ===== */

#kbdir-bannerSection {
  padding: 30px 0 50px 0;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== ANIMATED BACKGROUND EFFECT ===== */
#kbdir-bannerSection::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 50%, rgba(247, 151, 30, 0.05), transparent 60%),
              radial-gradient(circle at 70% 80%, rgba(255, 210, 0, 0.03), transparent 50%);
  animation: kbdirBgFloat 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes kbdirBgFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, 20px) rotate(5deg); }
}

/* ===== MARQUEE ===== */
.kbdir-marqueeWrapper {
  position: relative;
  z-index: 1;
}

.kbdir-marquee {
  color: rgba(255, 255, 255, 0.90);
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0 8px;
  letter-spacing: 1px;
}

.kbdir-marquee i {
  color: #ffd200;
  margin: 0 8px;
}

.kbdir-marquee .fa-circle {
  font-size: 6px;
  color: rgba(255, 255, 255, 0.40);
  margin: 0 12px;
  vertical-align: middle;
}

/* ===== DIVIDER ===== */
.kbdir-divider {
  border: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 210, 0, 0.30), transparent);
  margin: 8px 0 25px 0;
  position: relative;
  z-index: 1;
}

/* ===== BANNER ROW ===== */
.kbdir-bannerRow {
  position: relative;
  z-index: 1;
  align-items: center;
}

/* ===== LEFT - TEXT CONTENT ===== */
.kbdir-text-container {
  padding: 20px 10px 20px 0;
  animation: kbdirFadeInLeft 1s ease forwards;
}

@keyframes kbdirFadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== BADGE ===== */
.kbdir-badge {
  display: inline-block;
  background: rgba(255, 210, 0, 0.12);
  color: #ffd200;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 30px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 210, 0, 0.15);
}

.kbdir-badge i {
  margin-right: 8px;
}

/* ===== MAIN TITLE ===== */
.kbdir-main-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.30);
  position: relative;
}

.kbdir-main-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b35, #ffd200);
  border-radius: 4px;
  margin-top: 12px;
}

/* ===== SUB TITLE ===== */
.kbdir-sub-title {
  color: rgba(255, 255, 255, 0.85);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.kbdir-sub-title i {
  color: #ffd200;
  margin-right: 8px;
  font-size: 18px;
}

/* ===== RUN BY ===== */
.kbdir-run-by {
  color: rgba(255, 255, 255, 0.70);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}

.kbdir-run-by i {
  color: #ffd200;
  margin-right: 8px;
}

/* ===== CTA BUTTON ===== */
.kbdir-btn-tutor {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s ease;
  border: 2px solid rgba(255, 255, 255, 0.20);
  letter-spacing: 0.5px;
}

.kbdir-btn-tutor i {
  margin-right: 10px;
}

.kbdir-btn-tutor:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffd200;
  color: #ffd200;
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(255, 210, 0, 0.10);
  text-decoration: none;
}

/* ===== RIGHT - FORM ===== */
.kbdir-form {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  padding: 35px 30px 30px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.30);
  animation: kbdirFadeInRight 1s ease forwards;
  transition: all 0.4s ease;
}

.kbdir-form:hover {
  border-color: rgba(255, 210, 0, 0.20);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.40);
}

@keyframes kbdirFadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ===== FORM TITLE ===== */
.kbdir-form-title {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  overflow: hidden;
}

.kbdir-form-title i {
  color: #ffd200;
  margin-right: 12px;
}

/* ===== FORM LOCATION ===== */
.kbdir-formLocation {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

.kbdir-formLocation i {
  color: #ff6b35;
  margin-right: 8px;
}

/* ===== FORM DIVIDER ===== */
.kbdir-formDivider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 12px 0 18px 0;
}

/* ===== INPUT FIELDS ===== */
.kbdir-input {
  background: rgb(3 16 41 / 43%) !important;
  border: 1px solid rgba(255, 255, 255, 0.10) !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  transition: all 0.3s ease !important;
  height: auto !important;
}

.kbdir-input::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

.kbdir-input:focus {
  background: rgba(255, 255, 255, 0.10) !important;
  border-color: #ffd200 !important;
  box-shadow: 0 0 0 3px rgba(255, 210, 0, 0.08) !important;
  outline: none !important;
}

/* ===== SUBMIT BUTTON ===== */
.kbdir-btn-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ff6b35, #e63c1f);
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.35s ease;
  letter-spacing: 1px;
  margin-top: 8px;
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.30);
  position: relative;
  overflow: hidden;
}

.kbdir-btn-submit i {
  margin-right: 10px;
}

.kbdir-btn-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.6s ease;
}

.kbdir-btn-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 45px rgba(255, 107, 53, 0.45);
}

.kbdir-btn-submit:hover::before {
  left: 100%;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  #kbdir-bannerSection {
    padding: 25px 0 40px 0;
  }

  .kbdir-main-title {
    font-size: 38px;
  }

  .kbdir-sub-title {
    font-size: 19px;
  }

  .kbdir-form {
    padding: 28px 22px 25px;
    margin-top: 20px;
  }

  .kbdir-form-title {
    font-size: 22px;
  }
}

@media (max-width: 768px) {
  #kbdir-bannerSection {
    padding: 20px 0 35px 0;
  }

  .kbdir-main-title {
    font-size: 30px;
  }

  .kbdir-main-title::after {
    width: 60px;
    height: 3px;
  }

  .kbdir-sub-title {
    font-size: 17px;
  }

  .kbdir-run-by {
    font-size: 14px;
  }

  .kbdir-text-container {
    padding: 10px 0;
    text-align: center;
  }

  .kbdir-main-title::after {
    margin: 12px auto 0;
  }

  .kbdir-badge {
    font-size: 12px;
    padding: 5px 14px;
  }

  .kbdir-btn-tutor {
    font-size: 14px;
    padding: 12px 28px;
  }

  .kbdir-form {
    padding: 22px 18px 20px;
    border-radius: 18px;
    margin-top: 25px;
  }

  .kbdir-form-title {
    font-size: 20px;
    text-align: center;
  }

  .kbdir-formLocation {
    font-size: 14px;
    text-align: center;
  }

  .kbdir-input {
    font-size: 14px !important;
    padding: 10px 14px !important;
  }

  .kbdir-btn-submit {
    font-size: 16px;
    padding: 14px;
  }

  .kbdir-marquee {
    font-size: 14px;
  }

  .kbdir-btn-tutor {
    text-align: center;
    display: block;
  }
}

@media (max-width: 576px) {
  #kbdir-bannerSection {
    padding: 15px 0 30px 0;
  }

  .kbdir-main-title {
    font-size: 24px;
  }

  .kbdir-main-title::after {
    width: 45px;
    height: 3px;
  }

  .kbdir-sub-title {
    font-size: 15px;
  }

  .kbdir-run-by {
    font-size: 13px;
  }

  .kbdir-badge {
    font-size: 11px;
    padding: 4px 12px;
  }

  .kbdir-btn-tutor {
    font-size: 13px;
    padding: 10px 22px;
  }

  .kbdir-form {
    padding: 18px 14px 16px;
    border-radius: 14px;
  }

  .kbdir-form-title {
    font-size: 18px;
  }

  .kbdir-formLocation {
    font-size: 13px;
  }

  .kbdir-input {
    font-size: 13px !important;
    padding: 9px 12px !important;
  }

  .kbdir-btn-submit {
    font-size: 15px;
    padding: 12px;
  }

  .kbdir-marquee {
    font-size: 12px;
  }
}

/* ===== ABOUT US - KBDIR STYLES ===== */

#kbdir-aboutSection {
  padding: 70px 0 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

#kbdir-aboutSection::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(247, 151, 30, 0.04), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ===== HEADING ===== */
.kbdir-sec-heading {
  margin-bottom: 45px;
}

.kbdir-tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f39c12;
  background: rgba(243, 156, 18, 0.10);
  padding: 6px 22px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.kbdir-tagline i {
  margin-right: 8px;
}

.kbdir-sec-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.3;
  margin-top: 8px;
}

.kbdir-sec-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #f7971e, #ffd200);
  border-radius: 4px;
  margin: 15px auto 0;
}

/* ===== ABOUT ROW ===== */
.kbdir-aboutRow {
  align-items: flex-start;
  gap: 30px 0;
}

/* ===== ABOUT CONTENT ===== */
.kbdir-aboutContent {
  background: white;
  padding: 35px 35px 30px;
  border-radius: 22px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
  height: 100%;
}

.kbdir-aboutContent:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  border-color: rgba(243, 156, 18, 0.10);
}

/* ===== ABOUT HEADING ===== */
.kbdir-aboutHeading {
  font-size: 22px;
  font-weight: 700;
  color: #1a2a3a;
  margin-top: 20px;
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 10px;
}

.kbdir-aboutHeading:first-of-type {
  margin-top: 0;
}

.kbdir-aboutHeading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, #f7971e, #ffd200);
  border-radius: 3px;
}

.kbdir-aboutHeading i {
  color: #f7971e;
  margin-right: 10px;
}

/* ===== ABOUT TEXT ===== */
.kbdir-aboutText {
  font-size: 15.5px;
  line-height: 1.8;
  color: #3a4a5a;
  text-align: justify;
  margin-bottom: 16px;
  font-weight: 450;
}

.kbdir-aboutText:last-child {
  margin-bottom: 0;
}

/* ===== VIDEO WRAPPER ===== */
.kbdir-videoWrapper {
  padding-left: 15px;
  height: 100%;
}

.kbdir-videoBox {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  min-height: 280px;
}

.kbdir-videoBox:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

.kbdir-videoIframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  border: none;
  border-radius: 22px;
}

/* ===== VIDEO OVERLAY ===== */
.kbdir-videoOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.30);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 22px;
  cursor: pointer;
}

.kbdir-videoOverlay i {
  font-size: 60px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.30);
  transition: all 0.3s ease;
}

.kbdir-videoOverlay span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  margin-top: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.30);
}

.kbdir-videoBox:hover .kbdir-videoOverlay {
  opacity: 1;
}

.kbdir-videoOverlay:hover i {
  transform: scale(1.15);
  color: #ffd200;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  #kbdir-aboutSection {
    padding: 55px 0 45px 0;
  }

  .kbdir-sec-title {
    font-size: 28px;
  }

  .kbdir-aboutContent {
    padding: 28px 25px 25px;
  }

  .kbdir-aboutHeading {
    font-size: 20px;
  }

  .kbdir-aboutText {
    font-size: 14.5px;
  }

  .kbdir-videoWrapper {
    padding-left: 0;
    padding-top: 20px;
  }

  .kbdir-videoBox {
    min-height: 240px;
  }

  .kbdir-videoIframe {
    min-height: 240px;
  }
}

@media (max-width: 768px) {
  #kbdir-aboutSection {
    padding: 45px 0 35px 0;
  }

  .kbdir-sec-title {
    font-size: 24px;
  }

  .kbdir-sec-title::after {
    width: 55px;
    height: 3px;
  }

  .kbdir-aboutContent {
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  .kbdir-aboutHeading {
    font-size: 18px;
  }

  .kbdir-aboutHeading::after {
    width: 35px;
    height: 3px;
  }

  .kbdir-aboutText {
    font-size: 14px;
  }

  .kbdir-videoBox {
    min-height: 200px;
  }

  .kbdir-videoIframe {
    min-height: 200px;
  }

  .kbdir-videoWrapper {
    padding-top: 15px;
  }

  .kbdir-videoOverlay i {
    font-size: 45px;
  }

  .kbdir-videoOverlay span {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  #kbdir-aboutSection {
    padding: 35px 0 25px 0;
  }

  .kbdir-sec-title {
    font-size: 20px;
  }

  .kbdir-sec-title::after {
    width: 45px;
    height: 2px;
  }

  .kbdir-tagline {
    font-size: 12px;
    padding: 4px 16px;
  }

  .kbdir-aboutContent {
    padding: 18px 14px 16px;
    border-radius: 14px;
  }

  .kbdir-aboutHeading {
    font-size: 16px;
  }

  .kbdir-aboutHeading::after {
    width: 30px;
    height: 2px;
  }

  .kbdir-aboutText {
    font-size: 13.5px;
    line-height: 1.7;
  }

  .kbdir-videoBox {
    min-height: 170px;
  }

  .kbdir-videoIframe {
    min-height: 170px;
  }

  .kbdir-videoOverlay i {
    font-size: 35px;
  }

  .kbdir-videoOverlay span {
    font-size: 12px;
  }
}

/* ===== GALLERY - KBDIR STYLES ===== */

#kbdir-eventsSection {
  padding: 70px 0 60px 0;
  background: linear-gradient(135deg, #ffffff 0%, #f4f7fc 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
}

/* ===== HEADING STYLES ===== */
.kbdir-sec-heading {
  margin-bottom: 45px;
}

.kbdir-tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f39c12;
  background: rgba(243, 156, 18, 0.10);
  padding: 6px 22px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.kbdir-tagline i {
  margin-right: 8px;
}

.kbdir-sec-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.3;
  margin-top: 8px;
}

.kbdir-sec-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #f7971e, #ffd200);
  border-radius: 4px;
  margin: 15px auto 0;
}

/* ===== GALLERY GRID ===== */
.kbdir-galleryRow {
  row-gap: 30px;
}

/* ===== GALLERY ITEM ===== */
.kbdir-galleryItem {
  padding: 0 12px;
}

/* ===== FIGURE ===== */
.kbdir-event-img-big {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.kbdir-event-img-big:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.12);
}

/* ===== IMAGE ===== */
.kbdir-galleryImage {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
  border-radius: 18px;
}

.kbdir-event-img-big:hover .kbdir-galleryImage {
  transform: scale(1.08);
}

/* ===== OVERLAY ===== */
.kbdir-galleryOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(3px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  border-radius: 18px;
}

.kbdir-event-img-big:hover .kbdir-galleryOverlay {
  opacity: 1;
}

/* ===== OVERLAY ICON ===== */
.kbdir-galleryOverlay i {
  font-size: 40px;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.30);
  transition: all 0.4s ease;
}

.kbdir-galleryOverlay span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.30);
}

.kbdir-galleryOverlay:hover i {
  transform: scale(1.15);
  color: #ffd200;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  #kbdir-eventsSection {
    padding: 55px 0 45px 0;
  }

  .kbdir-sec-title {
    font-size: 28px;
  }

  .kbdir-galleryImage {
    height: 200px;
  }

  .kbdir-galleryOverlay i {
    font-size: 32px;
  }

  .kbdir-galleryOverlay span {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  #kbdir-eventsSection {
    padding: 45px 0 35px 0;
  }

  .kbdir-sec-title {
    font-size: 24px;
  }

  .kbdir-sec-title::after {
    width: 55px;
    height: 3px;
  }

  .kbdir-galleryImage {
    height: 170px;
  }

  .kbdir-event-img-big {
    border-radius: 14px;
  }

  .kbdir-galleryOverlay {
    border-radius: 14px;
  }

  .kbdir-galleryOverlay i {
    font-size: 28px;
  }

  .kbdir-galleryOverlay span {
    font-size: 12px;
    margin-top: 8px;
  }

  .kbdir-event-img-big:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 576px) {
  #kbdir-eventsSection {
    padding: 35px 0 25px 0;
  }

  .kbdir-sec-title {
    font-size: 20px;
  }

  .kbdir-sec-title::after {
    width: 45px;
    height: 2px;
  }

  .kbdir-tagline {
    font-size: 12px;
    padding: 4px 16px;
  }

  .kbdir-galleryImage {
    height: 140px;
  }

  .kbdir-event-img-big {
    border-radius: 12px;
  }

  .kbdir-galleryOverlay {
    border-radius: 12px;
  }

  .kbdir-galleryOverlay i {
    font-size: 22px;
  }

  .kbdir-galleryOverlay span {
    font-size: 11px;
    margin-top: 6px;
  }

  .kbdir-galleryRow {
    row-gap: 20px;
  }

  .kbdir-galleryItem {
    padding: 0 8px;
  }

  .kbdir-event-img-big:hover {
    transform: translateY(-4px);
  }
}

/* ===== FUN FACTS - KBDIR STYLES ===== */

#kbdir-funfactsSection {
  padding: 60px 0 50px 0;
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
}

/* ===== ANIMATED BACKGROUND ===== */
#kbdir-funfactsSection::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(247, 151, 30, 0.04), transparent 60%),
              radial-gradient(circle at 80% 50%, rgba(255, 210, 0, 0.03), transparent 50%);
  animation: kbdirBgFloat 20s ease-in-out infinite;
  z-index: 0;
}

@keyframes kbdirBgFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-20px, 15px) rotate(3deg); }
}

/* ===== FUN FACTS LIST ===== */
.kbdir-funfactsList {
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  gap: 20px;
  flex-wrap: wrap;
}

/* ===== FUN FACT ITEM ===== */
.kbdir-funfactItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 25px 25px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  min-width: 180px;
  flex: 1;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

/* ===== ITEM HOVER EFFECT ===== */
.kbdir-funfactItem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(247, 151, 30, 0.05), rgba(255, 210, 0, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 22px;
}

.kbdir-funfactItem:hover {
  transform: translateY(-12px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 210, 0, 0.20);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.30);
}

.kbdir-funfactItem:hover::before {
  opacity: 1;
}

/* ===== ICON ===== */
.kbdir-funfactIcon {
  width: 60px;
  height: 60px;
  background: rgba(255, 210, 0, 0.10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: all 0.4s ease;
  border: 2px solid rgba(255, 210, 0, 0.10);
}

.kbdir-funfactIcon i {
  font-size: 28px;
  color: #ffd200;
  transition: all 0.4s ease;
}

.kbdir-funfactItem:hover .kbdir-funfactIcon {
  background: rgba(255, 210, 0, 0.15);
  border-color: rgba(255, 210, 0, 0.30);
  transform: scale(1.08) rotate(-5deg);
}

.kbdir-funfactItem:hover .kbdir-funfactIcon i {
  color: #ffffff;
  transform: scale(1.1);
}

/* ===== NUMBER ===== */
.kbdir-funfactNumber {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
  line-height: 1.2;
  margin-bottom: 6px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.20);
  position: relative;
  z-index: 1;
}

.kbdir-funfactNumber sup {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.60);
  margin-right: 3px;
}

/* ===== COUNTER LINE ===== */
.kbdir-funfactNumber::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #ffd200, #f7971e);
  border-radius: 3px;
  margin: 8px auto 0;
  transition: width 0.4s ease;
}

.kbdir-funfactItem:hover .kbdir-funfactNumber::after {
  width: 60px;
}

/* ===== LABEL ===== */
.kbdir-funfactLabel {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.70);
  margin: 0;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

.kbdir-funfactItem:hover .kbdir-funfactLabel {
  color: rgba(255, 255, 255, 0.90);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  #kbdir-funfactsSection {
    padding: 50px 0 40px 0;
  }

  .kbdir-funfactItem {
    padding: 25px 20px 20px;
    min-width: 150px;
  }

  .kbdir-funfactNumber {
    font-size: 34px;
  }

  .kbdir-funfactIcon {
    width: 52px;
    height: 52px;
  }

  .kbdir-funfactIcon i {
    font-size: 24px;
  }

  .kbdir-funfactLabel {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  #kbdir-funfactsSection {
    padding: 40px 0 30px 0;
  }

  .kbdir-funfactsList {
    gap: 15px;
  }

  .kbdir-funfactItem {
    padding: 20px 15px 18px;
    min-width: 130px;
    flex: 1 1 calc(50% - 15px);
  }

  .kbdir-funfactNumber {
    font-size: 30px;
  }

  .kbdir-funfactNumber::after {
    width: 35px;
    height: 2px;
  }

  .kbdir-funfactItem:hover .kbdir-funfactNumber::after {
    width: 50px;
  }

  .kbdir-funfactIcon {
    width: 48px;
    height: 48px;
  }

  .kbdir-funfactIcon i {
    font-size: 22px;
  }

  .kbdir-funfactLabel {
    font-size: 13px;
  }

  .kbdir-funfactItem:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

@media (max-width: 576px) {
  #kbdir-funfactsSection {
    padding: 30px 0 25px 0;
  }

  .kbdir-funfactsList {
    gap: 12px;
  }

  .kbdir-funfactItem {
    padding: 16px 12px 14px;
    min-width: 100px;
    flex: 1 1 calc(50% - 12px);
    border-radius: 16px;
  }

  .kbdir-funfactNumber {
    font-size: 24px;
  }

  .kbdir-funfactNumber sup {
    font-size: 12px;
  }

  .kbdir-funfactNumber::after {
    width: 30px;
    height: 2px;
  }

  .kbdir-funfactItem:hover .kbdir-funfactNumber::after {
    width: 40px;
  }

  .kbdir-funfactIcon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .kbdir-funfactIcon i {
    font-size: 18px;
  }

  .kbdir-funfactLabel {
    font-size: 12px;
  }

  .kbdir-funfactItem:hover {
    transform: translateY(-5px) scale(1.02);
  }
}

/* ===== WORK PROCESS - KBDIR STYLES ===== */

#kbdir-workSection {
  padding: 70px 0 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 100%);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  position: relative;
  overflow: hidden;
}

/* ===== DECORATIVE BACKGROUND ===== */
#kbdir-workSection::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(247, 151, 30, 0.03), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* ===== HEADING STYLES ===== */
.kbdir-sec-heading {
  margin-bottom: 45px;
}

.kbdir-tagline {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #f39c12;
  background: rgba(243, 156, 18, 0.10);
  padding: 6px 22px;
  border-radius: 30px;
  margin-bottom: 12px;
}

.kbdir-tagline i {
  margin-right: 8px;
}

.kbdir-sec-title {
  font-size: 34px;
  font-weight: 700;
  color: #1a2a3a;
  line-height: 1.3;
  margin-top: 8px;
}

.kbdir-sec-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #f7971e, #ffd200);
  border-radius: 4px;
  margin: 15px auto 0;
}

/* ===== PROCESS ROW ===== */
.kbdir-processRow {
  row-gap: 30px;
}

/* ===== CARD WRAPPER ===== */
.kbdir-card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* ===== CARD ===== */
.kbdir-card {
  background: white;
  border-radius: 24px;
  padding: 35px 30px 30px;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
  flex: 1;
  height: 100%;
}

.kbdir-card:hover {
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.08);
  border-color: rgba(243, 156, 18, 0.08);
  transform: translateY(-4px);
}

/* ===== PROCESS TITLE ===== */
.kbdir-processTitle {
  font-size: 24px;
  font-weight: 700;
  color: #1a2a3a;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #f0f2f5;
  position: relative;
}

.kbdir-processTitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 50px;
  height: 3px;
  border-radius: 3px;
}

.kbdir-studentTitle::after {
  background: linear-gradient(90deg, #3498db, #2ecc71);
}

.kbdir-tutorTitle::after {
  background: linear-gradient(90deg, #f7971e, #ffd200);
}

.kbdir-processTitle i {
  margin-right: 12px;
}

.kbdir-studentTitle i {
  color: #3498db;
}

.kbdir-tutorTitle i {
  color: #f7971e;
}

/* ===== PROCESS LIST ===== */
.kbdir-processList {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== PROCESS ITEM ===== */
.kbdir-processItem {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f2f5;
  transition: all 0.3s ease;
}

.kbdir-processItem:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.kbdir-processItem:hover {
  padding-left: 10px;
}

/* ===== ICON BACKGROUND ===== */
.kbdir-icon-bg {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: linear-gradient(135deg, #f8f9fa, #f0f2f5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.kbdir-processItem:hover .kbdir-icon-bg {
  background: linear-gradient(135deg, rgba(247, 151, 30, 0.08), rgba(255, 210, 0, 0.08));
  border-color: rgba(247, 151, 30, 0.15);
  transform: scale(1.05);
}

/* ===== ICON ===== */
.kbdir-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: all 0.4s ease;
}

.kbdir-processItem:hover .kbdir-icon {
  transform: scale(1.1);
}

/* ===== PROCESS CONTENT ===== */
.kbdir-processContent {
  flex: 1;
}

/* ===== SUB TITLE ===== */
.kbdir-processSubTitle {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.kbdir-processLink {
  color: #1a2a3a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.kbdir-processLink:hover {
  color: #f7971e;
  text-decoration: none;
}

/* ===== DESCRIPTION ===== */
.kbdir-processDesc {
  font-size: 14.5px;
  line-height: 1.6;
  color: #5a6a7a;
  margin: 0;
  text-align: justify;
}

/* ===== PROCESS BUTTON ===== */
.kbdir-processBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.35s ease;
  margin-top: 20px;
  align-self: flex-start;
  letter-spacing: 0.5px;
}

.kbdir-processBtn i {
  transition: transform 0.3s ease;
}

.kbdir-processBtn:hover i {
  transform: translateX(6px);
}

.kbdir-processBtn:hover {
  text-decoration: none;
  transform: translateY(-3px);
}

/* ===== STUDENT BUTTON ===== */
.kbdir-studentBtn {
  background: linear-gradient(135deg, #3498db, #2ecc71);
  color: #ffffff;
  box-shadow: 0 8px 30px rgba(52, 152, 219, 0.30);
}

.kbdir-studentBtn:hover {
  color: #ffffff;
  box-shadow: 0 15px 45px rgba(52, 152, 219, 0.45);
}

/* ===== TUTOR BUTTON ===== */
.kbdir-tutorBtn {
  background: linear-gradient(135deg, #f7971e, #ffd200);
  color: #1a2a3a;
  box-shadow: 0 8px 30px rgba(243, 156, 18, 0.30);
}

.kbdir-tutorBtn:hover {
  color: #1a2a3a;
  box-shadow: 0 15px 45px rgba(243, 156, 18, 0.45);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  #kbdir-workSection {
    padding: 55px 0 45px 0;
  }

  .kbdir-sec-title {
    font-size: 28px;
  }

  .kbdir-card {
    padding: 28px 22px 25px;
  }

  .kbdir-processTitle {
    font-size: 21px;
  }

  .kbdir-processSubTitle {
    font-size: 16px;
  }

  .kbdir-processDesc {
    font-size: 14px;
  }

  .kbdir-processBtn {
    padding: 12px 26px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  #kbdir-workSection {
    padding: 45px 0 35px 0;
  }

  .kbdir-sec-title {
    font-size: 24px;
  }

  .kbdir-sec-title::after {
    width: 55px;
    height: 3px;
  }

  .kbdir-card {
    padding: 22px 18px 20px;
    border-radius: 18px;
  }

  .kbdir-processTitle {
    font-size: 19px;
    margin-bottom: 20px;
    padding-bottom: 12px;
  }

  .kbdir-processItem {
    padding: 14px 0;
    gap: 14px;
  }

  .kbdir-icon-bg {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .kbdir-icon {
    width: 28px;
    height: 28px;
  }

  .kbdir-processSubTitle {
    font-size: 15px;
  }

  .kbdir-processDesc {
    font-size: 13.5px;
  }

  .kbdir-processBtn {
    padding: 11px 22px;
    font-size: 14px;
  }

  .kbdir-processRow {
    row-gap: 25px;
  }
}

@media (max-width: 576px) {
  #kbdir-workSection {
    padding: 35px 0 25px 0;
  }

  .kbdir-sec-title {
    font-size: 20px;
  }

  .kbdir-sec-title::after {
    width: 45px;
    height: 2px;
  }

  .kbdir-tagline {
    font-size: 12px;
    padding: 4px 16px;
  }

  .kbdir-card {
    padding: 18px 14px 16px;
    border-radius: 14px;
  }

  .kbdir-processTitle {
    font-size: 17px;
    margin-bottom: 16px;
    padding-bottom: 10px;
  }

  .kbdir-processTitle::after {
    width: 40px;
    height: 2px;
  }

  .kbdir-processItem {
    padding: 12px 0;
    gap: 12px;
  }

  .kbdir-icon-bg {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
  }

  .kbdir-icon {
    width: 24px;
    height: 24px;
  }

  .kbdir-processSubTitle {
    font-size: 14px;
  }

  .kbdir-processDesc {
    font-size: 13px;
  }

  .kbdir-processBtn {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 40px;
  }

  .kbdir-processRow {
    row-gap: 20px;
  }

  .kbdir-processItem:hover {
    padding-left: 6px;
  }
}

/* ===== TESTIMONIAL - KBDIR STYLES ===== */

#kbdir-testimonialSection {
  padding: 70px 0 60px 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  position: relative;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== ANIMATED BACKGROUND ===== */
#kbdir-testimonialSection::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(247, 151, 30, 0.04), transparent 60%);
  border-radius: 50%;
  animation: kbdirBgFloat 25s ease-in-out infinite;
  pointer-events: none;
}

@keyframes kbdirBgFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(-30px, 20px) rotate(5deg); }
}

/* ===== HEADING STYLES ===== */
.kbdir-sec-heading {
  margin-bottom: 45px;
}

.kbdir-tagline-white {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffd200;
  background: rgba(255, 210, 0, 0.10);
  padding: 6px 22px;
  border-radius: 30px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 210, 0, 0.10);
}

.kbdir-tagline-white i {
  margin-right: 8px;
  color: #ffd200;
}

.kbdir-sec-title-white {
  font-size: 34px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-top: 8px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.20);
}

.kbdir-sec-title-white::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #ffd200, #f7971e);
  border-radius: 4px;
  margin: 15px auto 0;
}

/* ===== TESTIMONIAL BOX ===== */
.kbdir-testimonialBox {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 28px;
  padding: 45px 40px 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.30);
  position: relative;
  transition: all 0.4s ease;
}

.kbdir-testimonialBox:hover {
  border-color: rgba(255, 210, 0, 0.12);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

/* ===== QUOTE ICON ===== */
.kbdir-quote-sign {
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 50px;
  color: rgba(255, 210, 0, 0.15);
  z-index: 1;
}

.kbdir-quote-sign i {
  font-size: 50px;
  color: rgba(255, 210, 0, 0.12);
}

/* ===== SINGLE TESTIMONIAL ===== */
.kbdir-single-testimonial {
  padding: 10px 5px 5px;
}

/* ===== TESTIMONIAL TEXT - FIX ===== */
.kbdir-testText {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85) !important;
  text-align: justify;
  font-weight: 400;
  margin-bottom: 25px;
  font-style: italic;
  letter-spacing: 0.3px;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.kbdir-testText::before {
  content: '"';
  font-size: 30px;
  color: #ffd200;
  font-family: Georgia, serif;
  margin-right: 5px;
}

.kbdir-testText::after {
  content: '"';
  font-size: 30px;
  color: #ffd200;
  font-family: Georgia, serif;
  margin-left: 5px;
}

/* ===== TESTIMONIAL USER ===== */
.kbdir-testimonial-user {
  display: flex !important;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 2px solid rgba(255, 255, 255, 0.05);
}

/* ===== AVATAR ===== */
.kbdir-avatar-small {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255, 210, 0, 0.20);
  transition: all 0.3s ease;
}

.kbdir-single-testimonial:hover .kbdir-avatar-small {
  border-color: #ffd200;
  transform: scale(1.05);
}

/* ===== USER NAME ===== */
.kbdir-userName {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* ===== OWL CAROUSEL OVERRIDES ===== */
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 50% !important;
  width: 45px !important;
  height: 45px !important;
  font-size: 18px !important;
  color: #ffffff !important;
  transition: all 0.3s ease !important;
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
  background: rgba(255, 210, 0, 0.12) !important;
  border-color: #ffd200 !important;
  color: #ffd200 !important;
}

.owl-carousel .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;
  width: 12px !important;
  height: 12px !important;
  transition: all 0.3s ease !important;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: #ffd200 !important;
  width: 16px !important;
  border-radius: 10px !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  #kbdir-testimonialSection {
    padding: 55px 0 45px 0;
  }

  .kbdir-sec-title-white {
    font-size: 28px;
  }

  .kbdir-testimonialBox {
    padding: 35px 30px 30px;
    border-radius: 22px;
  }

  .kbdir-testText {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  #kbdir-testimonialSection {
    padding: 45px 0 35px 0;
  }

  .kbdir-sec-title-white {
    font-size: 24px;
  }

  .kbdir-sec-title-white::after {
    width: 55px;
    height: 3px;
  }

  .kbdir-testimonialBox {
    padding: 30px 20px 25px;
    border-radius: 18px;
  }

  .kbdir-testText {
    font-size: 15px;
    line-height: 1.7;
  }

  .kbdir-avatar-small {
    width: 50px;
    height: 50px;
  }

  .kbdir-userName {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  #kbdir-testimonialSection {
    padding: 35px 0 25px 0;
  }

  .kbdir-sec-title-white {
    font-size: 20px;
  }

  .kbdir-sec-title-white::after {
    width: 45px;
    height: 2px;
  }

  .kbdir-testimonialBox {
    padding: 25px 14px 20px;
    border-radius: 14px;
  }

  .kbdir-testText {
    font-size: 14px;
    line-height: 1.6;
  }

  .kbdir-avatar-small {
    width: 44px;
    height: 44px;
  }

  .kbdir-userName {
    font-size: 14px;
  }
}

/*::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/


/*==========================================
  WORK PROCESS SECTION
==========================================*/

.mt-work-section{
    padding:90px 0;
    background:#f7f9fc;
    position:relative;
}

.mt-work-section .sec-heading{
    margin-bottom:60px;
}

.mt-work-section .tagline{
    display:inline-block;
    padding:8px 22px;
    background:#fe922c;
    color:#fff;
    border-radius:40px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:15px;
}

.mt-work-section .sec-title{
    font-size:40px;
    font-weight:700;
    color:#2c3c67;
    line-height:1.3;
    margin-bottom:15px;
}

.mt-work-section .sec-heading p{
    max-width:700px;
    margin:auto;
    color:#6c757d;
    font-size:17px;
    line-height:30px;
}


/*==========================================
  CARD
==========================================*/

.mt-process-card{

    background:#fff;
    border-radius:18px;
    padding:45px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.mt-process-card:hover{

    transform:translateY(-6px);
    box-shadow:0 18px 45px rgba(0,0,0,.10);

}

.mt-process-title{

    text-align:center;
    font-size:30px;
    color:#2c3c67;
    margin-bottom:45px;
    font-weight:700;

}


/*==========================================
  PROCESS LIST
==========================================*/

.mt-process-list{

    list-style:none;
    margin:0;
    padding:0;

}

.mt-process-list li{

    display:flex;
    align-items:flex-start;
    gap:22px;
    position:relative;
    padding-bottom:35px;

}

.mt-process-list li:last-child{

    padding-bottom:0;

}

.mt-process-list li:not(:last-child)::after{

    content:"";
    position:absolute;
    left:32px;
    top:75px;
    width:2px;
    height:55px;
    background:#e5e5e5;

}


/*==========================================
  ICON
==========================================*/

.mt-icon-box{

    width:65px;
    height:65px;
    min-width:65px;

    border-radius:50%;

    background:linear-gradient(135deg,#fe922c,#ffb347);

    display:flex;
    align-items:center;
    justify-content:center;

    box-shadow:0 8px 20px rgba(254,146,44,.35);

}

.mt-icon-box img{

    width:32px;
    height:32px;

}


/*==========================================
  CONTENT
==========================================*/

.mt-process-content h5{

    margin:0 0 10px;
    font-size:21px;
    font-weight:700;

}

.mt-process-content h5 a{

    color:#2c3c67;
    text-decoration:none;
    transition:.3s;

}

.mt-process-content h5 a:hover{

    color:#fe922c;

}

.mt-process-content p{

    margin:0;
    color:#6b7280;
    line-height:28px;
    font-size:16px;

}


/*==========================================
  RESPONSIVE
==========================================*/

@media(max-width:991px){

.mt-work-section{

padding:70px 0;

}

.mt-work-section .sec-title{

font-size:32px;

}

.mt-process-card{

padding:35px;

}

}


@media(max-width:767px){

.mt-work-section{

padding:60px 0;

}

.mt-work-section .sec-title{

font-size:28px;

}

.mt-process-title{

font-size:24px;

}

.mt-process-list li{

flex-direction:column;
text-align:center;
align-items:center;

}

.mt-process-list li::after{

display:none;

}

.mt-process-content h5{

font-size:20px;

}

.mt-process-content p{

font-size:15px;
line-height:27px;

}

}


/*=========================================
CONTACT SECTION
=========================================*/

.mt-contact-section{
    padding:90px 0;
    background:#f8fafc;
}

.mt-contact-heading{
    margin-bottom:55px;
}

.mt-contact-heading .tagline{
    display:inline-block;
    padding:8px 22px;
    border-radius:30px;
    background:#fe922c;
    color:#fff;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
    letter-spacing:.5px;
}

.mt-contact-heading .sec-title{
    color:#2c3c67;
    font-size:40px;
    font-weight:700;
    line-height:1.3;
}

/*=========================================
FORM
=========================================*/

.mt-contact-form{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 12px 35px rgba(0,0,0,.06);
}

.mt-contact-form label{
    font-size:15px;
    font-weight:600;
    color:#2c3c67;
    margin-bottom:8px;
}

.mt-contact-form .form-control{

    height:54px;
    border:1px solid #d8dce5;
    border-radius:10px;
    padding:12px 18px;
    font-size:15px;
    box-shadow:none;
    transition:.3s;

}

.mt-contact-form textarea.form-control{

    height:170px;
    resize:none;
    padding-top:15px;

}

.mt-contact-form .form-control:focus{

    border-color:#fe922c;
    box-shadow:0 0 0 4px rgba(254,146,44,.15);

}

.mt-contact-form .form-group{

    margin-bottom:20px;

}

/*=========================================
BUTTON
=========================================*/

.mt-contact-btn{

    background:#fe922c;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:40px;
    font-weight:600;
    transition:.35s;

}

.mt-contact-btn:hover{

    background:#2c3c67;
    color:#fff;
    transform:translateY(-3px);

}

/*=========================================
SIDEBAR
=========================================*/

.mt-contact-sidebar{

    height:100%;

}

.mt-contact-widget{

    background:#2c3c67;
    color:#fff;
    padding:35px;
    border-radius:18px;
    height:100%;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.mt-contact-widget .widget-title{

    color:#fff;
    font-size:28px;
    margin-bottom:20px;
    font-weight:700;

}

.mt-contact-widget p{

    color:rgba(255,255,255,.85);
    line-height:30px;
    margin-bottom:25px;

}

.mt-contact-widget h6{

    color:#fe922c;
    font-size:17px;
    font-weight:700;
    margin-bottom:10px;
    margin-top:25px;

}

.mt-contact-widget span{

    display:block;
    color:rgba(255,255,255,.85);
    line-height:28px;

}

.mt-contact-widget a{

    display:block;
    color:#fff;
    text-decoration:none;
    margin-bottom:8px;
    transition:.3s;

}

.mt-contact-widget a:hover{

    color:#fe922c;
    padding-left:6px;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:991px){

.mt-contact-section{

padding:70px 0;

}

.mt-contact-heading .sec-title{

font-size:32px;

}

.mt-contact-widget{

margin-top:35px;

}

}

@media(max-width:767px){

.mt-contact-section{

padding:60px 0;

}

.mt-contact-heading .sec-title{

font-size:28px;

}

.mt-contact-form{

padding:25px;

}

.mt-contact-widget{

padding:25px;

}

}


/*====================================
TUTOR PROCESS
====================================*/

.mt-tutor-work-section{

    padding:90px 0;
    background:#f8fafc;

}

.mt-tutor-heading{

    margin-bottom:60px;

}

.mt-tutor-heading .tagline{

    display:inline-block;
    padding:8px 22px;
    border-radius:30px;
    background:#fe922c;
    color:#fff;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;

}

.mt-tutor-heading .sec-title{

    font-size:40px;
    color:#2c3c67;
    font-weight:700;
    line-height:1.3;

}

/*========================*/

.mt-tutor-card{

    border:none;
    border-radius:18px;
    padding:45px;
    box-shadow:0 15px 45px rgba(0,0,0,.06);
    transition:.35s;

}

.mt-tutor-card:hover{

    transform:translateY(-6px);
    box-shadow:0 20px 55px rgba(0,0,0,.10);

}

/*========================*/

.mt-tutor-title{

    text-align:center;
    font-size:30px;
    color:#2c3c67;
    font-weight:700;
    margin-bottom:45px;

}

/*========================*/

.mt-tutor-list{

    list-style:none;
    padding:0;
    margin:0;

}

.mt-tutor-list li{

    display:flex;
    align-items:flex-start;
    gap:22px;
    padding-bottom:35px;
    position:relative;

}

.mt-tutor-list li:last-child{

    padding-bottom:0;

}

.mt-tutor-list li:not(:last-child)::after{

content:"";

position:absolute;

left:33px;

top:72px;

width: 0px;

height:55px;

background:#e8e8e8;
}

/*========================*/

.mt-tutor-icon{

    width:66px;
    height:66px;
    min-width:66px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    background:linear-gradient(135deg,#fe922c,#ffb347);

    box-shadow:0 12px 25px rgba(254,146,44,.30);

}

.mt-tutor-icon img{

    width:34px;
    height:34px;

}

/*========================*/

.mt-tutor-content h5{

    margin-bottom:10px;

}

.mt-tutor-content h5 a{

    color:#2c3c67;
    font-size:22px;
    font-weight:700;
    text-decoration:none;
    transition:.3s;

}

.mt-tutor-content h5 a:hover{

    color:#fe922c;

}

.mt-tutor-content p{

    margin:0;
    color:#6b7280;
    line-height:30px;
    font-size:16px;

}

/*========================*/

@media(max-width:991px){

.mt-tutor-work-section{

padding:70px 0;

}

.mt-tutor-heading .sec-title{

font-size:32px;

}

.mt-tutor-card{

padding:30px;

}

}

@media(max-width:767px){

.mt-tutor-work-section{

padding:60px 0;

}

.mt-tutor-heading .sec-title{

font-size:28px;

}

.mt-tutor-title{

font-size:25px;

}

.mt-tutor-list li{

display:block;
text-align:center;

}

.mt-tutor-list li::after{

display:none;

}

.mt-tutor-icon{

margin:0 auto 20px;

}

.mt-tutor-content h5 a{

font-size:20px;

}

.mt-tutor-content p{

font-size:15px;
line-height:28px;

}

}