
@media (max-width: 768px) {

  /* FORCE COLUMN LAYOUT */
  .topbar .header-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 4px;
  }

  .header-inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px;
  }

  /* LOGO FIX */
  .logo img {
    width: 150px !important;
  }

  /* NAV SCROLL FIX (IMPORTANT) */
  nav {
    width: 100% !important;
    overflow-x: auto !important;
  }

  .menu {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 15px !important;
    width: max-content !important;
    padding-bottom: 5px;
  }

  /* HIDE SCROLLBAR */
  nav::-webkit-scrollbar {
    display: none;
  }

  /* MENU ITEMS */
  .menu li {
    white-space: nowrap !important;
    font-size: 14px;
  }

  /* CTA FULL WIDTH */
  .cta {
    width: 100% !important;
    padding: 10px !important;
    font-size: 14px !important;
  }

}

/* Responsive counter polish */
@media (max-width: 992px) {
  .counter-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .counter .box {
    width: 100%;
    justify-content: center;
    min-height: 76px;
    padding: 14px 12px;
    border: 1px solid rgba(23, 56, 101, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    text-align: center;
  }
}

@media (max-width: 576px) {
  .counter-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .counter .box {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-areas:
      "icon value"
      "label label";
    align-content: center;
    align-items: center;
    justify-content: center;
    column-gap: 6px;
    row-gap: 6px;
    min-height: 104px;
    padding: 14px 8px;
  }

  .counter-icon {
    grid-area: icon;
    font-size: 14px;
  }

  .counter-value {
    grid-area: value;
    justify-content: center;
  }

  .box h2,
  .counter-suffix {
    font-size: 22px;
  }

  .box p {
    grid-area: label;
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
  }
}

@media (max-width: 380px) {
  .counter-inner {
    grid-template-columns: 1fr;
  }

  .counter .box {
    min-height: 86px;
  }
}




@media (max-width: 768px) {
  .logo img {
    width: 180px;
  }
}


/* Tablet */
@media (max-width: 992px) {
  .menu {
    display: none; /* later can make hamburger */
  }

  .hero h1 {
    font-size: 30px;
  }

  .counter-inner {
    flex-wrap: wrap;
    text-align: center;
  }

  .box {
    width: 48%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero {
    height: auto;
    padding: 60px 0;
  }

  .hero-content {
    padding-left: 0;
  }

  .hero h1 {
    font-size: 24px;
  }

  .box {
    width: 100%;
  }

  .topbar {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }
}



@media (max-width: 992px) {
  .why-wrapper {
    flex-direction: column;
  }

  .why-right {
    grid-template-columns: 1fr 1fr;
  }
}


@media (max-width: 576px) {
  .why-right {
    grid-template-columns: 1fr;
  }

  .why-left h2 {
    font-size: 26px;
  }
}





/* Tablet */
@media (max-width: 992px) {
  .course-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .course-grid {
    grid-template-columns: 1fr;
  }

  .courses-header h2 {
    font-size: 26px;
  }
}



@media (max-width: 992px) {
  .sap-wrapper {
    flex-direction: column;
  }

  .sap-left h2 {
    font-size: 32px;
  }

  .img-small {
    left: 20px;
    bottom: -20px;
    width: 200px;
  }
}


@media (max-width: 576px) {
  .features {
    grid-template-columns: 1fr;
  }

  .sap-left h2 {
    font-size: 26px;
  }

  .img-small {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 15px;
  }
}

@media (max-width: 992px) {
  .steps-top {
    flex-direction: column;
  }

  .steps-icons {
    flex-wrap: wrap;
    gap: 30px;
  }

  .step-item {
    width: 45%;
  }
}


@media (max-width: 576px) {
  .steps-top h2 {
    font-size: 26px;
  }

  .step-item {
    width: 100%;
  }

  .circle {
    width: 90px;
    height: 90px;
    margin-top: -70px;
  }

  .circle img {
    width: 40px;
  }
}

/* TABLET */
@media (max-width: 992px) {
  .mentor-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .mentor-right h2 {
    font-size: 32px;
  }
  .mentor-right p{
    text-align: justify;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .img-bg {
    width: 280px;
    height: 380px;
    border-radius: 150px 150px 0 0;
  }

  .img-person img {
    width: 240px;
  }

  .mentor-right h2 {
    font-size: 26px;
  }
}
/* Tablet */
@media (max-width: 992px) {
  .blog-card {
    flex: 0 0 calc((100% - 25px) / 2);
  }

  .blog-header h2 {
    font-size: 32px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .blog-card {
    flex: 0 0 100%;
  }
  .blog-header h2 {
    font-size: 26px;
  }
}


/* Tablet */
@media (max-width: 992px) {
  .certified-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

/* Mobile */
@media (max-width: 576px) {
  .certified-grid {
    grid-template-columns: 1fr;
  }

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

  .certified-card img {
    max-width: 120px;
  }
}

@media (max-width: 992px) {
    .the-hidden-reality-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .the-hidden-left-image img {
        margin: auto;
    }
}

@media (max-width: 576px) {
    .the-hidden-reality-content h2 {
        font-size: 26px;
    }
}
@media (max-width: 992px) {
    .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

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



/* free course responsive  */


@media(max-width:991px){
    .learn-from-scratch-container{
        flex-direction:column;
        text-align:center;
    }

    .learn-from-scratch-features li{
        text-align:left;
    }

    .learn-from-scratch-small-card{
        left:50%;
        transform:translateX(-50%);
        bottom:-20px;
    }

    .learn-from-scratch-badge{
        right:20px;
        bottom:-10px;
    }
}

@media(max-width:576px){
    .learn-from-scratch-left-content h1{
        font-size:34px;
    }

    .learn-from-scratch-small-card{
        width:140px;
    }

    .learn-from-scratch-badge{
        width:90px;
    }
}





   @media (max-width: 900px) {
      .Free-sap-training-section-title { font-size: 22px; }
      .Free-sap-training-cards-grid { gap: 16px; }
    }

    @media (max-width: 700px) {
      .Free-sap-training-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .Free-sap-training-section-title { font-size: 20px; margin-bottom: 24px; }
      .Free-sap-training-card-thumb { height: 140px; }
    }

    @media (max-width: 480px) {
      body { padding: 30px 14px; }
      .Free-sap-training-cards-grid { grid-template-columns: 1fr; gap: 16px; }
      .Free-sap-training-section-title { font-size: 18px; margin-bottom: 20px; }
      .Free-sap-training-card-thumb { height: 180px; }
      .Free-sap-training-card-title { font-size: 15px; }
    }




    /* ========================= */
/* 📱 TABLET (992px) */
/* ========================= */
@media (max-width: 992px) {

  /* GLOBAL */
  .container {
    padding: 0 15px !important;
  }

  /* HEADER */
  .header-inner {
    flex-wrap: wrap;
    gap: 10px;
  }

  .menu {
    gap: 12px;
  }

  .logo img {
    width: 180px;
  }

  /* HERO */
  .hero {
    height: auto;
    padding: 80px 0;
  }

  .hero h1 {
    font-size: 36px;
  }

  /* COUNTER */
  .counter-inner {
    flex-wrap: wrap;
  }

  .box {
    width: 48%;
  }

  /* WHY */
  .why-wrapper {
    flex-direction: column;
  }

  .why-right {
    grid-template-columns: 1fr;
  }

  /* COURSES */
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* SAP */
  .sap-wrapper {
    flex-direction: column;
  }

  .img-small {
    position: static;
    margin-top: 15px;
    width: 100%;
  }

  /* STEPS */
  .steps-top {
    flex-direction: column;
  }

  .steps-icons {
    flex-wrap: wrap;
    gap: 20px;
  }

  .step-item {
    width: 45%;
  }

  /* MENTOR */
  .mentor-wrapper {
    flex-direction: column;
  }

  .img-person img {
    width: 400px;
  }

  /* BLOG */
  .blog-card {
    flex: 0 0 calc(50% - 20px);
  }

  /* CERTIFIED */
  .certified-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* FREE TRAINING */
  .Free-sap-training-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* HIDDEN REALITY */
  .the-hidden-reality-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* FOOTER */
  .footer-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


/* ========================= */
/* 📱 MOBILE (576px) */
/* ========================= */
@media (max-width: 576px) {

  body {
    padding: calc(var(--topbar-height, 62px) + var(--header-height, 68px)) 0 0;
  }

  html.menu-open,
  body.menu-open {
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
  }

  /* TOPBAR */
  .topbar-header-inner {
    /* flex-direction: column; */
    text-align: center;
    gap: 10px;
  }

  .topbar-top-left,
  .topbar-top-right {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
  }

  .topbar-topbar {
    font-size: 12px;
  }

  .topbar-divider,
  .topbar-font-size,
  .topbar-theme-toggle {
    display: none;
  }

  /* HEADER */
  .header {
    padding: 12px 0;
    overflow: visible;
  }

  .header.menu-open {
    position: fixed;
    top: var(--topbar-height, 62px);
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 28px rgba(23, 56, 101, 0.12);
  }

  .header-inner {
    flex-direction: row !important;
    justify-content: space-between;
    gap: 10px;
  }
.logo {
    z-index: 9999;
}
  .logo img {
    width: 200px !important;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(139, 0, 0, 0.18);
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1101;
    box-shadow: 0 8px 20px rgba(23, 56, 101, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .header.menu-open .mobile-menu-toggle {
    border-color: rgba(139, 0, 0, 0.28);
    box-shadow: 0 12px 28px rgba(23, 56, 101, 0.12);
    transform: rotate(90deg);
    z-index: 9999;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 20px;
    background: var(--secondary);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease;
  }

  .header.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .header.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: fixed;
    top: var(--topbar-height, 62px);
    left: 0;
    right: 0;
    z-index: 9998;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: calc(var(--header-height, 68px) + 20px) 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 0, 0, 0.14);
    box-shadow: 0 18px 40px rgba(23, 56, 101, 0.18);
    transform: translate3d(0, -110%, 0) scale(0.98);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: transform, opacity;
    transition:
      transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.36s ease,
      visibility 0s linear 0.62s;
  }

  .header.menu-open .mobile-menu-panel {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.32s ease,
      visibility 0s linear 0s;
  }

  .mobile-menu-panel nav {
    width: 100%;
    overflow: visible !important;
  }

  .menu {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 0 !important;
  }

  .menu li {
    width: 100%;
    white-space: normal !important;
    font-size: 16px;
    opacity: 0;
    transform: translateY(-18px);
    transition:
      transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.32s ease;
  }

  .menu li a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
  }

  .header.menu-open .menu li {
    opacity: 1;
    transform: translateY(0);
  }

  .header.menu-open .menu li:nth-child(1) {
    transition-delay: 0.08s;
  }

  .header.menu-open .menu li:nth-child(2) {
    transition-delay: 0.12s;
  }

  .header.menu-open .menu li:nth-child(3) {
    transition-delay: 0.16s;
  }

  .header.menu-open .menu li:nth-child(4) {
    transition-delay: 0.2s;
  }

  .header.menu-open .menu li:nth-child(5) {
    transition-delay: 0.24s;
  }

  .header.menu-open .menu li:nth-child(6) {
    transition-delay: 0.28s;
  }

  .mobile-menu-panel .cta {
    opacity: 0;
    transform: translateY(-14px);
    transition:
      transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.32s ease;
  }

  .header.menu-open .mobile-menu-panel .cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.32s;
  }

  /* CTA */
  .cta {
    width: 100% !important;
    border-radius: 12px;
    padding: 13px 18px;
  }

  /* HERO */
  .hero {
    min-height: calc(74svh - var(--topbar-height, 62px) - var(--header-height, 68px));
    height: auto;
    padding: 0px 0 0px;
    align-items: center;
    isolation: isolate;
  }

  .hero .container {
    display: flex;
    align-items: center;
    min-height: inherit;
  }

  .hero-img {
    z-index: -2;
  }

  .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68% center;
    filter: saturate(0.95);
  }

  .hero::before {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0.98) 0%,
      rgba(255,255,255,0.94) 44%,
      rgba(255,255,255,0.78) 72%,
      rgba(255,255,255,0.46) 100%
    );
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    text-align: left;
    padding: 0;
  }

  .subtitle {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(139, 0, 0, 0.08);
    color: var(--secondary);
    font-size: 13px;
    font-weight: 600;
  }

  .hero h1 {
    max-width: 330px;
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
    margin-bottom: 16px;
  }

  .hero h1 br {
    display: none;
  }

  .hero-desc {
    max-width: 340px;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.65;
    color: #333;
  }

  .buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 12px;
  }

  .buttons span {
    color: #333;
    font-size: 13px;
    font-weight: 600;
  }

  .hero-desc br {
    display: none;
  }

  .hero-links {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }

  .primary-btn,
  .outline-btn,
  .dark-btn {
    width: 100%;
    text-align: center;
    min-height: 46px;
    font-size: 15px;
    font-weight: 600;
  }

  .hero .primary-btn {
    width: 50%;
  }

  /* COUNTER */
  .counter-inner {
    gap: 12px;
  }

  .box {
    width: 100%;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
  }

  .why-section,
  .courses,
  .sap-section,
  .steps-section,
  .mentor-section,
  .testimonial-section,
  .blog-section,
  .certified-section,
  .footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
.testimonial-section{
  margin: 0px 0px !important;
}
  .why-left,
  .sap-left,
  .mentor-right {
    max-width: 100%;
  }

  .why-left h2,
  .sap-left h2,
  .steps-top h2,
  .mentor-right h2,
  .testi-header h2,
  .blog-header h2,
  .section-title,
  .footer-left h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .why-left h2 br,
  .sap-left h2 br,
  .steps-top h2 br,
  .testi-header h2 br,
  .footer-left h2 br {
    display: none;
  }

  /* COURSES */
  .course-grid {
    grid-template-columns: 1fr;
  }

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

  /* STEPS */
  .steps-icons {
    flex-direction: column;
    gap: 30px;
  }

  .step-item {
    width: 100%;
  }

  .circle {
    width: 80px;
    height: 80px;
    margin-top: -60px;
  }

  .steps-strip {
    margin-top: 60px;
  }

  /* MENTOR */
  .mentor-left {
    width: 100%;
    overflow: hidden;
  }

  .img-bg {
    width: min(100%, 280px);
    height: 330px;
  }

  .img-person {
    position: static;
  }

  .img-person img {
    width: 100%;
    transform: none;
  }

  /* BLOG */
  .blog-card {
    flex: 0 0 100%;
  }

  .meta {
    flex-wrap: wrap;
  }

  /* CERTIFIED */
  .certified-grid {
    grid-template-columns: 1fr;
  }

  .footer-logo img {
    width: min(100%, 220px);
  }

  .footer-contact p,
  .socials {
    justify-content: center;
    color: #fff ;
  }

  .subscribe {
    max-width: 100%;
  }

  /* FREE TRAINING */
  .Free-sap-training-cards-grid {
    grid-template-columns: 1fr;
  }

  /* TABLE */
  .free-advance-traning-wrapper {
    overflow-x: auto;
  }

  table {
    min-width: 700px;
  }
  .learn-from-scratch-sap-section {
     padding: 40px 28px;
}
.who-should-join-container {
    display: block;
}
.why-start-free-sap-section h2 {
    font-size: 35px;
}
.training-left-content h2 {
    font-size: 35px;
}
.sap-training-market-bottom-section-card ul {
    padding: 0px 17px;
}
}

@media (max-width: 380px) {
  .hero {
    padding: 34px 0 42px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .subtitle {
    font-size: 12px;
  }

  .hero-desc {
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  html.menu-open,
  body.menu-open {
    height: 100%;
    overflow: hidden;
    overscroll-behavior: none;
  }

  .header {
    position: fixed;
    top: var(--topbar-height, 41px);
    left: 0;
    right: 0;
    z-index: 9999;
    width: 100%;
    overflow: visible;
  }

  .header.menu-open {
    position: fixed;
    top: var(--topbar-height, 41px);
    left: 0;
    right: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 10px 28px rgba(23, 56, 101, 0.12);
  }

  .header-inner {
    flex-direction: row !important;
    justify-content: space-between;
    gap: 10px;
  }

  .mobile-menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(139, 0, 0, 0.18);
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1301;
    box-shadow: 0 8px 20px rgba(23, 56, 101, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .header.menu-open .mobile-menu-toggle {
    border-color: rgba(139, 0, 0, 0.28);
    box-shadow: 0 12px 28px rgba(23, 56, 101, 0.12);
    transform: rotate(90deg);
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 20px;
    background: var(--secondary);
    transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.22s ease;
  }

  .header.menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .header.menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu-panel {
    position: fixed;
    top: var(--topbar-height, 41px);
    left: 0;
    right: 0;
    z-index: 9998;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: calc(var(--header-height, 76px) + 20px) 20px 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 0, 0, 0.14);
    box-shadow: 0 18px 40px rgba(23, 56, 101, 0.18);
    transform: translate3d(0, -110%, 0) scale(0.98);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: transform, opacity;
    transition:
      transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.36s ease,
      visibility 0s linear 0.62s;
  }

  .header.menu-open .mobile-menu-panel {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      transform 0.62s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.32s ease,
      visibility 0s linear 0s;
  }

  .mobile-menu-panel nav {
    width: 100%;
    overflow: visible !important;
  }

  .menu {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    gap: 0 !important;
  }

  .menu li {
    width: 100%;
    white-space: normal !important;
    font-size: 16px;
    opacity: 0;
    transform: translateY(-18px);
    transition:
      transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.32s ease;
  }

  .menu li a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid rgba(139, 0, 0, 0.1);
  }

  .header.menu-open .menu li,
  .header.menu-open .mobile-menu-panel .cta {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-menu-panel .cta {
    width: 100% !important;
    border-radius: 12px;
    padding: 13px 18px;
    opacity: 0;
    transform: translateY(-14px);
    transition:
      transform 0.42s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.32s ease;
  }
}

/* Counter final mobile alignment */
@media (max-width: 576px) {
  .counter-inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .counter .box {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-wrap: nowrap !important;
    gap: 7px !important;
    width: 100% !important;
    min-height: 58px !important;
    padding: 10px 12px !important;
    border-radius: 8px;
  }

  .counter-icon {
    flex: 0 0 auto;
    font-size: 13px;
  }

  .counter-value {
    flex: 0 0 auto;
    align-items: baseline;
  }

  .box h2,
  .counter-suffix {
    font-size: 24px;
    line-height: 1;
  }

  .box p {
    margin: 0;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 700;
    white-space: nowrap;
  }
}

@media (max-width: 360px) {
  .counter .box {
    gap: 5px !important;
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .box h2,
  .counter-suffix {
    font-size: 21px;
  }

  .box p {
    font-size: 13px;
  }
}

/* Steps final mobile alignment */
@media (max-width: 576px) {
  .steps-strip {
    margin-top: 35px !important;
    padding: 24px 0 !important;
  }

  .steps-icons {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    text-align: left !important;
  }

  .step-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    min-height: 78px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
  }

  .circle {
    flex: 0 0 58px !important;
    width: 58px !important;
    height: 58px !important;
    margin: 0 !important;
  }

  .circle img {
    width: 28px !important;
    height: 28px !important;
  }

  .step-item p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 600;
  }
}

@media (max-width: 360px) {
  .step-item {
    gap: 10px !important;
    padding: 9px 10px;
  }

  .circle {
    flex-basis: 52px !important;
    width: 52px !important;
    height: 52px !important;
  }

  .step-item p {
    font-size: 14px;
  }
}

/* Mentor final image layering */
@media (max-width: 992px) {
  .mentor-left {
    position: relative !important;
    width: 100% !important;
    max-width: 460px;
    min-height: 510px;
    margin: 0 auto;
    overflow: hidden !important;
  }

  .img-bg {
    width: 350px !important;
    height: 395px !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 0 !important;
    z-index: 1;
    transform: translateX(-50%) !important;
  }

  .img-person {
    position: absolute !important;
    left: 50% !important;
    bottom: -2px !important;
    z-index: 2;
    width: 690px;
    transform: translateX(-36.6%) !important;
    pointer-events: none;
  }

  .img-person img {
    width: 100% !important;
    height: auto !important;
    display: block;
    transform: scaleX(-1) !important;
  }
}

@media (max-width: 576px) {
  .mentor-wrapper {
    gap: 28px !important;
  }

  .mentor-left {
    position: relative !important;
    width: 100% !important;
    max-width: 360px;
    min-height: 390px;
    margin: 0 auto;
    overflow: hidden !important;
    display: flex !important;
    justify-content: center !important;
    align-items: flex-end !important;
  }

  .img-bg {
    width: 260px !important;
    height: 315px !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 0 !important;
    z-index: 1;
    margin: 0 auto;
    transform: translateX(-50%) !important;
  }

  .img-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .img-person {
    position: absolute !important;
    left: 50% !important;
    bottom: 0 !important;
    z-index: 2;
    transform: translateX(-36.6%) !important;
    width: 540px;
    pointer-events: none;
  }

  .img-person img {
    width: 100% !important;
    height: auto !important;
    transform: scaleX(-1) !important;
    display: block;
  }
}

@media (max-width: 360px) {
  .mentor-left {
    max-width: 320px;
    min-height: 345px;
  }

  .img-bg {
    width: 230px !important;
    height: 280px !important;
  }

  .img-person {
    width: 480px;
  }
}
@media (max-width: 992px) {

.why-choose-us-banner-section{
  height: 250px;
}
.choose-us-banner-banner-text{
  text-align: center;
}
.choose-us-banner-banner-text h1{
  font-size: 40px;
}
}

/* Why Choose Us page mobile polish */
@media (max-width: 576px) {
  .topbar-topbar {
    display: none !important;
  }

  .why-choose-us-banner-section {
    height: 210px !important;
    padding: 34px 0;
    background-position: center center;
  }

  .why-choose-us-banner-section .banner-content {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .choose-us-banner-banner-text {
    width: 100%;
    text-align: center;
  }

  .choose-us-banner-btn {
    min-height: 34px;
    padding: 7px 15px;
    font-size: 13px;
  }

  .choose-us-banner-banner-text h1 {
    margin-top: 10px;
    font-size: clamp(30px, 9vw, 38px) !important;
    line-height: 1.12;
  }

  .the-hidden-reality-section {
    padding: 46px 18px !important;
  }

  .the-hidden-reality-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    text-align: left !important;
  }

  .the-hidden-left-image {
    display: flex;
    justify-content: center;
  }

  .the-hidden-left-image img {
    width: min(100%, 320px) !important;
    max-width: 320px !important;
    height: auto;
  }

  .the-hidden-reality-content h2 {
    font-size: 28px !important;
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .the-hidden-reality-content h2 br {
    display: none;
  }

  .the-hidden-reality-content p {
    font-size: 14px !important;
    line-height: 1.65;
  }

  .the-hidden-reality-content ul {
    margin: 14px 0 18px;
  }

  .the-hidden-reality-content ul li {
    font-size: 14px !important;
    line-height: 1.45;
    margin-bottom: 9px;
    padding-left: 20px;
  }

  .the-hidden-reality-content h4 {
    font-size: 21px !important;
    line-height: 1.25;
    margin: 18px 0 10px;
  }

  section.sap-training-market-bottom-section {
    padding: 34px 0 12px !important;
  }

  .sap-training-market-bottom-section-container {
    grid-template-columns: 1fr !important;
    gap: 44px !important;
    padding: 30px 18px 24px !important;
    max-width: 390px;
  }

  .sap-training-market-bottom-section-card {
    width: 100% !important;
    min-height: 184px;
    height: auto !important;
    padding: 54px 18px 22px !important;
    border-radius: 10px;
  }

  .sap-training-market-bottom-section-icon-circle {
    width: 68px !important;
    height: 68px !important;
    top: -34px !important;
  }

  .sap-training-market-bottom-section-icon-circle img {
    width: 34px !important;
  }

  .sap-training-market-bottom-section-card h3 {
    margin: 0 0 9px;
    font-size: 17px;
    line-height: 1.25;
  }

  .sap-training-market-bottom-section-card p {
    margin: 0;
    font-size: 14px !important;
    line-height: 1.55;
  }

  .why-choose-mentor-section {
    padding: 44px 18px 0 !important;
  }

  .why-choose-mentor-container {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    text-align: left !important;
  }

  .why-choose-tag {
    margin-top: 0 !important;
  }

  .why-choose-mentor-content h2 {
    font-size: 28px !important;
    line-height: 1.16;
  }

  .why-choose-mentor-content p,
  .why-choose-mentor-content ul li {
    font-size: 14px !important;
    line-height: 1.65;
  }

  .why-choose-mentor-content ul {
    padding-left: 18px;
    margin: 12px 0 16px;
  }

  .why-choose-mentor-image {
    margin-top: 0 !important;
    width: 100%;
    overflow: hidden;
  }

  .why-choose-mentor-image img {
    width: min(100%, 285px) !important;
    height: auto !important;
    max-height: 390px;
    object-fit: contain;
  }

}
