.two-column-list {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 15px 40px;
    margin-top: 15px;
}

.two-column-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.two-column-list li {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    position: relative;
    padding-left: 18px;
}

/* Optional – Add a small icon/bullet */
.two-column-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c7cf1;
    font-weight: bold;
}
#placement1{
    padding-top: 120px;
    padding-bottom: 120px;
}
.footerbg {
    background-image: url("assets/img/bg/breadcrumb_bg.jpg"); /* update path & image name */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.two-column-list {
    column-count: 2;
    column-gap: 40px;
  }

  .two-column-list li {
    break-inside: avoid;
    margin-bottom: 8px;
  }

  /* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup Box */
.popup-box {
    background: #fff;
    padding: 30px;
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    position: relative;
    animation: popupFade 0.3s ease;
}

.popup-box h3 {
    margin-bottom: 20px;
    text-align: center;
}

/* Inputs */
.popup-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Button */
.popup-box button {
    width: 100%;
    padding: 12px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.popup-box button:hover {
    background: #084298;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Animation */
@keyframes popupFade {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.about__info-list {
    display: flex;
    flex-wrap: wrap;
}

.about__info-list-item {
    width: 50%;
}
@media (max-width: 767px) {
    .about__info-list-item {
        width: 100%;
    }
}
/* Grid Layout */
.course-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 Equal Columns */
    gap: 15px;
    padding: 20px 0;
}
/* Card Styling */
.module-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}
.module-card:hover {
    background: #6254e8;
    color: #fff;
    transform: translateY(-5px);
}
.module-number {
    font-size: 0.8rem;
    font-weight: bold;
    color: #6254e8;
    margin-bottom: 10px;
}
.module-card:hover .module-number {
    color: #fff;
}
/* Modal (Popup) Styling */
.course-modal {
    display: none; 
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}
.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 12px;
    width: 60%;
    max-width: 800px;
    position: relative;
    animation: slideIn 0.3s ease-out;
}
@media (max-width: 600px) {
    .modal-content {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0;
        padding: 10px 16px;
        border-radius: 14px 14px 0 0;
        position: fixed;
        bottom: 0;
        left: 0;
        animation: slideUpMobile 0.3s ease-out;
    }
}
@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.close-btn {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    cursor: pointer;
}
/* Responsive for Mobile */
@media (max-width: 1024px) { .course-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .course-grid { grid-template-columns: repeat(1, 1fr); } .modal-content { width: 90%; } }

.course-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 15px;
    width: 100%;
}
.view-btn {
    margin-top: 10px;
    padding: 6px 14px;
    background: #6254e8;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.view-btn:hover {
    background: #4839d4;
}

/* Keep button visible on hover */
.module-card:hover .view-btn {
    background: #fff;
    color: #6254e8;
}
/* Force 1 column on mobile */
@media (max-width: 767px) {
    .course-grid {
        grid-template-columns: 1fr;
    }

    .module-card {
        min-height: auto;
        padding: 16px;
    }

    .module-card h4 {
        font-size: 16px;
    }

    .view-btn {
        width: 100%;
        border-radius: 6px;
    }
}
@media (max-width: 600px) {

    .popup-overlay {
        padding: 15px;
        align-items: flex-end; /* Mobile bottom-style popup */
    }

    .popup-box {
        max-width: 100%;
        padding: 20px 16px;
        border-radius: 12px 12px 0 0;
        animation: popupSlideUp 0.3s ease;
    }

    .popup-box h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .popup-box input {
        padding: 14px;
        font-size: 15px;
    }

    .popup-box button {
        padding: 14px;
        font-size: 16px;
    }
}

/* Mobile slide-up animation */
@keyframes popupSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.banner__form {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: relative;
    top: 100px;      /* moves form DOWN */
    left: 140px;    /* moves form LEFT */
}

.banner__form h4 {
    font-size: 20px;
    margin-bottom: 18px;
    text-align: center;
}

.banner__form input,
.banner__form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.banner__form .btn {
    width: 100%;
    padding: 12px;
    background: #0d6efd;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
}

/* ========================= */
/* MOBILE FORM FIX */
/* ========================= */

@media (max-width: 768px) {

    .col-xl-7.col-lg-6.col-md-8 {
        width: 100%;
    }

    .banner__form {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;

        margin: 22px auto 40px;   /* pushes form DOWN */
        max-width: 100%;
        width: 100%;
        padding: 22px;

        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
}

.fact__inner-wrap-two {
    background: #2b2b6f; /* your blue bg */
    border-radius: 20px;
    padding: 60px 40px;
}

/* center content block */
.fact__inner-wrap-two .col-lg-11 {
    margin: 0 auto;
}

/* list styling */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.feature-list li {
    color: #fff;
    font-size: 15px;
    margin-bottom: 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-list li::before {
    content: "✓";
    font-weight: 600;
    line-height: 1.4;
}

.dm-accordion1 {
  max-width: 900px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
}

.accordion-title1 {
  text-align: center;
  align-content: start;
  color: #1D1B4B;
  margin-bottom: 30px;
}

.accordion-item1 {
  background: #FCFBFB;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(29,27,75,0.08);
  overflow: hidden;
}

.accordion-header1 {
  width: 100%;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  background: linear-gradient(90deg, #2D4EF5, #1D1B4B);
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
}

.accordion-header1::after {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 22px;
}

.accordion-header.active1::after {
  content: "−";
}

.accordion-body1 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #FCFBFB;
}

.accordion-body1 ul {
  padding: 20px 30px;
}

.accordion-body1 li {
  padding: 6px 0;
  color: #1D1B4B;
}
.dm-accordion1 {
  max-width: 900px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
}

.accordion-title1 {
  text-align: center;
  align-content: start;
  color: #1D1B4B;
  margin-bottom: 30px;
}

.accordion-item1 {
  background: #FCFBFB;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(29,27,75,0.08);
  overflow: hidden;
}

.accordion-header1 {
  width: 100%;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  background: linear-gradient(90deg, #2D4EF5, #1D1B4B);
  color: #fff;
  border: none;
  cursor: pointer;
  position: relative;
}

.accordion-header1::after {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 22px;
}

.accordion-header.active1::after {
  content: "−";
}

.accordion-body1 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #FCFBFB;
}

.accordion-body1 ul {
  padding: 20px 30px;
}

.accordion-body1 li {
  padding: 6px 0;
  color: #1D1B4B;
}

.col1 {
    flex: 1 0 0%;
    padding-left: 20px;
    padding-right: 20px;
}


.dm-accordion2 {
  max-width: 900px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
}

.accordion-title2 {
  text-align: center;
  align-content: start;
  color: #1D1B4B;
  margin-bottom: 30px;
}

.accordion-item2 {
  background: #FCFBFB;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 8px 20px rgba(29,27,75,0.08);
  overflow: hidden;
}

.accordion-header2 {
  width: 100%;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  background: linear-gradient(90deg, #ffffff, #ffffff);
  color: #000000;
  border: none;
  cursor: pointer;
  position: relative;
}

.accordion-header2::after {
  content: "+";
  position: absolute;
  right: 22px;
  font-size: 22px;
}

.accordion-header.active2::after {
  content: "−";
}

.accordion-body2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #FCFBFB;
}

.accordion-body2 ul {
  padding: 20px 30px;
}

.accordion-body2 li {
  padding: 6px 0;
  color: #1D1B4B;
}

.col1 {
    flex: 1 0 0%;
    padding-left: 20px;
    padding-right: 20px;
}



.course-section {
    padding: 60px 20px;
}

.course-head {
    text-align: center;
    margin-bottom: 40px;
}

.course-layout {
    display: flex;
    gap: 30px;
}

/* Left Tabs */
.course-menu {
    width: 28%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.course-tab {
    padding: 14px 16px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    text-align: left;
    font-weight: 600;
    transition: all 0.3s ease;
}

.course-tab.active {
    background: #111;
    color: #fff;
}

/* Right Content */
.course-details {
    width: 72%;
}

.course-box {
    display: none;
}

.course-box.active {
    display: block;
}

.subtitle {
    margin-bottom: 15px;
    color: #666;
}

/* Two Column List */
.two-column-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    margin-bottom: 20px;
}

.course-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

@media (max-width: 991px) {
    .course-layout {
        flex-direction: column;
    }

    .course-menu,
    .course-details {
        width: 100%;
    }

    .course-menu {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .course-tab {
        white-space: nowrap;
        min-width: 220px;
    }
}

@media (max-width: 576px) {
    .course-section {
        padding: 40px 15px;
    }

    .course-head h2 {
        font-size: 22px;
    }

    .course-head p {
        font-size: 14px;
    }

    .two-column-list {
        grid-template-columns: 1fr;
    }

    .course-tab {
        font-size: 14px;
        padding: 12px;
    }

    .course-btn {
        width: 100%;
        text-align: center;
    }
}

html, body {
  overflow-x: hidden;
}

.course-layout {
  display: flex;
  gap: 30px;
  width: 100%;
}

@media (max-width: 768px) {
  .course-layout {
    flex-direction: column;
  }
}
/* GLOBAL FIX */
* {
  box-sizing: border-box;
}

/* =========================
   Work Section Responsive Fix
========================= */

.work__area {
    overflow: hidden;
}

/* Image wrapper */
.work__images {
    position: relative;
    text-align: center;
}

.work__images .main-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Decorative shape */
.work__images .shape {
    position: absolute;
    top: -20px;
    right: -20px;
    max-width: 120%;
    z-index: -1;
}

/* Video button */
.popup-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4a17;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Content spacing */
.work__content {
    padding-left: 30px;
}

/* List box spacing */
.work__list-box {
    margin-bottom: 25px;
}

/* =========================
   Tablet (≤ 991px)
========================= */
@media (max-width: 991px) {
    .work__content {
        padding-left: 0;
        margin-top: 40px;
    }

    .work__images .shape {
        display: none;
    }
}

/* =========================
   Mobile (≤ 767px)
========================= */
@media (max-width: 767px) {
    .section-py-190 {
        padding: 80px 0;
    }

    .popup-video {
        width: 55px;
        height: 55px;
    }

    .work__list-box-top {
        gap: 10px;
        flex-wrap: wrap;
    }

    .work__list-box-top h4 {
        font-size: 18px;
    }

    .work__content p {
        font-size: 15px;
        line-height: 1.6;
    }
}
.instructor-img-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.instructor-img-center img {
    max-width: 100%;
    height: auto;
}


.instructor-about-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.instructor-img img {
    max-width: 220px;
    width: 100%;
    border-radius: 10px;
}

.instructor-text {
    flex: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .instructor-about-flex {
        flex-direction: column;
        text-align: center;
    }
}


.mentor-map-section {
    margin-top: 50px;
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.map-item iframe {
    width: 100%;
    height: 220px;
    border: 0;
    border-radius: 10px;
}

.map-item p {
    text-align: center;
    font-weight: 600;
    margin-top: 10px;
}

/* Tablet */
@media (max-width: 992px) {
    .map-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
}


.mentor-map-section1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
 
.instructor__details-biography1{
    background-color: white;
    padding: 50px;
}
.instructor-img1{
    border-radius: 20px;
}

.instructor-img1-center {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.instructor-img1-center img {
    max-width: 100%;
}


.instructor-about-flex {
    display: flex;
    align-items: center;
    gap: 30px;
}

.instructor-img1 img {
    max-width: 520px;
    width: 100%;
    border-radius: 10px;
}

.instructor-text {
    flex: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .instructor-about-flex {
        flex-direction: column;
        text-align: center;
    }
}



.slider-wrapper {
  max-width: 1200px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 33.333%;
  padding: 10px;
}

@media (max-width: 900px) {
  .slide {
    min-width: 50%;
  }
}

@media (max-width: 600px) {
  .slide {
    min-width: 100%;
  }
}

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.summary-card {
  background: #f1f3f4;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-badge {
  background: linear-gradient(135deg,#6f7bf7,#8e44ad);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 12px;
}

.summary-text {
  font-size: 14px;
  color: #555;
}

.review-header {
  display: flex;
  gap: 12px;
  align-items: center;
}

.review-header img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.review-header h4 {
  margin: 0;
  font-size: 15px;
}

.review-header small {
  color: #777;
}

.stars {
  color: #fbbc04;
  font-size: 18px;
  margin: 10px 0;
}

.review-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

.read-more {
  color: #1a73e8;
  font-size: 14px;
  text-decoration: none;
}

/* Navigation */
.nav1 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.prev { left: 10px; }
.next { right: 10px; }


/* aboutsection of landing page */
.da-about-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.da-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.da-heading {
    font-size: 34px;
    font-weight: 700;
    color: #0b0b3b;
    margin-bottom: 40px;
}

.da-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.da-image-box {
    flex: 0 0 260px;
}

.da-image-box img {
    width: 100%;
    max-width: 240px;
}

.da-text-box {
    flex: 1;
}

.da-text-box p {
    font-size: 17px;
    line-height: 1.5;
    color: #5f5f7a;
    margin-bottom: 18px;
}

.da-text-box strong {
    color: #000000;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .da-content-wrapper {
        flex-direction: column;
    }

    .da-image-box {
        margin-bottom: 30px;
    }

    .da-heading {
        font-size: 28px;
    }
}
/* area section */

.custom-highlight-section {
    background-color: #f1650f;
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    border-radius: 30px;

}

.custom-highlight-container {
    max-width: 1200px;
    width: 100%;
}

.custom-highlight-wrapper {
    text-align: center;
}

.custom-highlight-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
}

.custom-highlight-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.custom-highlight-column {
    display: flex;
    justify-content: center;
}

.custom-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.custom-highlight-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
}

.custom-highlight-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ffffff;
    font-size: 20px;
}

/* Tablet */
@media (max-width: 992px) {
    .custom-highlight-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .custom-highlight-title {
        font-size: 26px;
    }

    .custom-highlight-grid {
        grid-template-columns: 1fr;
    }

    .custom-highlight-list li {
        font-size: 16px;
    }
}


.custom-floating-contact {
    position: fixed;
    bottom: 85px;
    right: 47px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.custom-float-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

/* WhatsApp */
.whatsapp-btn {
    background-color: #25D366;
}

/* Call */
.call-btn {
    background-color: #0c1033;
    color: white;
}

/* Hover Effect */
.custom-float-btn:hover {
    transform: scale(1.1);
}

/* Mobile Adjust */
@media (max-width: 576px) {
    .custom-floating-contact {
        bottom: 15px;
        right: 15px;
    }

    .custom-float-btn {
        width: 30px;
        height: 30px;
    }
}
