.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > span {
    font-weight: 500;
    padding: 10px 15px;
    display: inline-block;
    color: #1e194d;
}

.menu-item-has-children .sub-menu {
    position: absolute;
    top: 45px;
    right: 0;
    background: #ffffff;
    border-radius: 12px;
    width: 180px;
    padding: 8px 0;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    border: 1px solid #e8e8e8;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.25s ease;

    /* FIX */
    z-index: 3000 !important;
    pointer-events: auto; /* important to allow clicking */
}

.menu-item-has-children:hover .sub-menu {
    z-index: 3000 !important;
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}


/* Submenu items */
.menu-item-has-children .sub-menu li {
    list-style: none;
}

.menu-item-has-children .sub-menu li a,
.menu-item-has-children .sub-menu li span {
    display: block;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #1e194d !important;         /* Force same color for all items */
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border-left: 3px solid transparent; /* Left highlight when hover */
}

.menu-item-has-children .sub-menu li a:hover,
.menu-item-has-children .sub-menu li span:hover {
    background: #f4f0ff;               /* Soft purple background */
    color: #5628e6 !important;         /* Theme blue */
    border-left: 3px solid #5628e6;     /* Left highlight */
}
.menu-item-has-children.submenu-open .sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0px) !important;
}
@media (max-width: 991px) {

  /* Dropdown container */
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > ul.sub-menu {
      background: #fff !important;
      border-radius: 14px !important;
      border: 1px solid #e7e7e7 !important;
      padding: 10px 0 !important;
      box-shadow: 0px 10px 30px rgba(0,0,0,0.12) !important;
      width: 90% !important;
      margin: 12px auto !important;   /* center it */
      opacity: 1 !important;
      transform: translateY(6px) !important;
      transition: all 0.25s ease !important;
  }

  /* When submenu is opened */
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children.submenu-open > ul.sub-menu {
      display: block !important;
      transform: translateY(0px) !important;
  }

  /* Each item */
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > ul.sub-menu li {
      margin: 0 !important;
  }

  /* Menu items text */
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > ul.sub-menu li a,
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > ul.sub-menu li span {
      padding: 14px 20px !important;
      font-size: 15px !important;
      font-weight: 500 !important;
      color: #1e194d !important;
      display: flex !important;
      align-items: center !important;
      gap: 10px !important;
      border-left: 3px solid transparent !important;
      transition: all 0.2s ease !important;
  }

  /* Touchable hover (tap feedback) */
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > ul.sub-menu li a:active,
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > ul.sub-menu li span:active {
      background: #f4f0ff !important;
      border-left-color: #5628e6 !important;
      color: #5628e6 !important;
      transform: scale(0.98) !important;   /* nice tap effect */
  }

  /* Add separators between items */
  .navbar-area .nav-container .navbar-collapse .navbar-nav li.menu-item-has-children > ul.sub-menu li:not(:last-child) {
      border-bottom: 1px solid #f2f2f2 !important;
  }
}

@media (max-width: 991px) {

    /* ================================
       NAVBAR TOP STRUCTURE (LOGO + TOGGLER)
    ==================================*/

    .navbar-area .navbar {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        padding: 0 !important;
        position: relative !important;
        z-index: 10 !important;
    }

    /* Logo stays on the left */
    .navbar-area .navbar .logo {
        width: 100% !important;
        display: flex !important;
        justify-content: flex-start !important;
    }

    /* Hamburger button always clickable */
    .navbar-toggler {
        position: absolute !important;
        right: 20px !important;
        top: 20px !important;
        z-index: 99999 !important;
    }

    /* DO NOT FORCE DISPLAY BLOCK - keep collapsible behavior */
    .navbar-area .navbar-collapse {
        width: 100% !important;
        margin-top: 30px !important;
        position: relative !important;
        z-index: 1 !important;  /* keeps menu under toggler */
    }


    /* ================================
       MENU STYLING (UL > LI > A)
    ==================================*/

    .navbar-area .navbar-collapse .navbar-nav.menu-open {
        width: 90% !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 0 !important;
        margin: 0 auto !important;
        gap: 0px !important;
    }

    .navbar-nav.menu-open > li {
        width: 100% !important;
        display: flex !important;
        justify-content: flex-start !important;
        margin: 0 !important;
    }

    /* Clean single line style */
    .navbar-nav.menu-open > li > a {
        width: 100% !important;
        padding: 5px 0 !important;
        margin: 0 !important;
        font-size: 14px !important;
        color: #1e194d !important;

        border: none !important;
        background: transparent !important;
        box-shadow: none !important;

        border-bottom: 1px solid #e5e5e5 !important; /* only one line */
    }

    .navbar-nav.menu-open > li > a:before {
        display: none !important;
        border: none !important;
    }

    /* Hover effect */
    .navbar-nav.menu-open > li > a:hover {
        background: #f7f8ff !important;
        border-bottom-color: #c9d1ff !important;
    }

    /* Username dropdown fix */
    .menu-item-has-children.nav-user-icon span {
        padding: 8px 5px !important;
        display: block !important;
        width: 100% !important;
        border-bottom: 1px solid #e6e6e6 !important;
    }
}

/* Glass Overlay */
.certificate-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Glass Modal */
.certificate-modal {
    width: 90%;
    max-width: 420px;
    padding: 18px;                /* ↓ reduced padding */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
    -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
    position: relative;
    animation: fadeInScale 0.25s ease;
    max-height: 90vh;
    overflow-y: hidden;            /* ↓ NO SCROLLBAR */
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 10px; 
    right: 10px;
    width: 30px;
    height: 30px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
    z-index: 20000;
}

.close-btn:hover {
    background: #f1f1f1;
    transform: scale(1.08);
}

/* Popup Fields */
.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px; /* slightly reduced */
}

.field label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.field input {
    padding: 8px 10px;       /* ↓ reduced padding */
    font-size: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.4);
    -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
    transition: 0.2s;
}

/* Radio Buttons */
.radio-container {
  display: flex;
  align-items: center;
  color: black;
  margin: 8px 0;
}

.radio {
  -webkit-appearance: none;
          appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #0066cc;
  background-color: white;
  margin-right: 10px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.radio:hover {
  border-color: #0052a3;
}

.radio:checked {
  background-color: #0066cc;
  border-color: #0066cc;
}

.radio:checked::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: white;
}

.radio-label {
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.radio:checked + .radio-label {
  color: #0066cc;
}

/* Field focus */
.field input:focus {
    border-color: #0066cc;
    outline: none;
}

/* Heading */
.popup-heading {
    font-size: 18px;         /* ↓ slightly reduced */
    font-weight: 600;
    text-align: center;
    color: #111;
    margin-bottom: 15px;
}

/* Button */
.popup-btn {
    width: 100%;
    padding: 10px;           /* ↓ reduced padding */
    background: #0066cc;
    color: white;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.25s;
}

.popup-btn:hover {
    background: #0052a3;
}

/* Animation */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* banner-v3.css - Premium gradient + soft shapes + smooth wave
   Colors taken from user's reference image (Option A) */

/* ---------- Layout & text ---------- */
.banner-area-3 {
  background: linear-gradient(
    180deg,
    #6A75D7 0%,
    #282879 30%,
    #17174F 75%
  ) !important;
}


/* Inner content */
.banner-area-3 .banner-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner-area-3 .banner-inner h1,
.banner-area-3 .banner-inner h2 {
    font-size: clamp(30px, 3vw, 48px) !important;
    line-height: 1.08 !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin: 0 !important;
    text-shadow: 0 4px 18px rgba(7, 20, 55, 0.25); /* subtle lift */
}

.banner-area-3 .banner-inner p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
}

/* Buttons */
.banner-area-3 .banner-buttons {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}
.banner-area-3 .btn-border-white {
    min-width: 190px;
    font-size: 16px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.04);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .banner-area-3 .banner-inner {
        align-items: center;
        text-align: center;
    }
    .banner-area-3 .banner-inner h1,
    .banner-area-3 .banner-inner h2 {
        font-size: clamp(26px, 6vw, 36px) !important;
    }
}

/* ---------- Soft floating shapes ---------- */
.floating-shape {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(0.6px);
    animation: float 7.5s ease-in-out infinite;
}

/* softer more visible shapes (reduced opacity for premium look) */
.shape1 { width: 92px; height: 92px; top: 130px; left: 150px; animation-duration: 8.5s; }
.shape2 { width: 68px; height: 68px; top: 260px; left: 440px; animation-duration: 6.8s; }
.shape3 { width: 56px; height: 56px; top: 140px; right: 260px; animation-duration: 9s; }
.shape4 { width: 140px; height: 140px; bottom: 72px; right: 150px; animation-duration: 7s; }
.shape5 { width: 84px; height: 84px; top: 360px; left: 120px; animation-duration: 10s; }
.shape6 { width: 140px; height: 140px; bottom: 28px; right: 340px; animation-duration: 11s; }

@keyframes float {
    0% { transform: translateY(0px) translateX(0px) scale(1); opacity: 1; }
    50% { transform: translateY(-28px) translateX(10px) scale(1.02); opacity: 0.85; }
    100% { transform: translateY(0px) translateX(0px) scale(1); opacity: 1; }
}

/* code-icon subtle */
.code-icon {
    position: absolute;
    font-weight: 700;
    font-size: 44px;
    color: rgba(255,255,255,0.12);
    pointer-events: none;
    animation: float 8.4s ease-in-out infinite;
}

/* ---------- Smooth wave bottom (large + non-clipping) ---------- */
/* The wave is white and smooth; it transitions into the next section cleanly */
.banner-area-3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 220px;  /* bigger to avoid clipping */
    background: url("data:image/svg+xml,%3Csvg viewBox=%270 0 1440 320%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cdefs%3E%3ClinearGradient id=%27g%27 x1=%270%27 x2=%270%27 y1=%270%27 y2=%271%27%3E%3Cstop offset=%270%25%27 stop-color=%27%23ffffff%27 stop-opacity=%270.95%27/%3E%3Cstop offset=%2760%25%27 stop-color=%27%23f7f9ff%27 stop-opacity=%271%27/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill=%27url%28%23g%29%27 d=%27M0,160 C180,200 360,240 540,220 C720,200 900,120 1080,140 C1260,160 1260,160 1440,160 L1440,320 L0,320 Z%27/%3E%3C/svg%3E")
        no-repeat bottom center;
    background-size: cover;
    z-index: 5;
    pointer-events: none;
}

/* keep content above wave */
.banner-area-3 .container,
.banner-area-3 .row { position: relative; z-index: 10; }

/* Small visual tweaks for buttons and text contrast */
.banner-area-3 .banner-inner h1 { letter-spacing: -0.4px; }
.banner-area-3 .btn-border-white:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-2px);
    transition: all 180ms ease;
}
.intro-area1 {
    font-family: "Poppins", Arial, sans-serif;
    font-weight: 500;
    margin: 5px 40px;
    padding: 50px 50px 70px 50px;

    /* color: black; */
}

/* Container styles */
.cards-grid1 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.single-intro-inner1 {
    width: 250px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: #fff;
    cursor: pointer;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-intro-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.bg-green1 {
    background-color: #16a085;
}

.bg-yellow {
    background-color: #f1c40f;
    color: #000;
}

.bg-blue {
    background-color: #1E194D;
}

/* Flip Card Styles */
.flip-card-container1 {
    margin-top: 30px;
    width: 206px;
    height: 206px;
    perspective: 1000px;
}

.flip-card1 {
    width: 100%;
    height: 100%;
}

.flip-card-inner1 {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
}

.flip-card-container1:hover .flip-card-inner1 {
    transform: rotateY(180deg);
}

.flip-card-front1,
.flip-card-back1 {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: "Poppins", Arial, Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.flip-card-front1 {
    background-color: #1E194D;

}

p {
    color: #fff;
}

.flip-card-back1 {
    background-color: #a0aafd;
    color: #1e194d;
    transform: rotateY(180deg);
    padding: 10px;
    text-align: center;
}

.flip-card-back1 h1 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.flip-card-back1 p {
    font-size: 13px;
    font-weight: 520;
    color: #000;
}

/* Optional: section title */
.section-title1 {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 25px;
    background-color: #fff;
    color: #1e194d;
    letter-spacing: 1px;
    text-transform: uppercase;
}
/* Make all text inherit global font weights */
.aboutV4-wrapper * {
    font-weight: inherit !important;
}

/* Section Wrapper - Isolated */
.aboutV4-wrapper {
    background: #ffffff;
    padding: 10px 20px 30px 20px;
    font-family: 'Poppins', sans-serif;
    color: #1e194d;
}

.aboutV4-container {
    max-width: 1180px;
    margin: 0 auto;
}

.aboutV4-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* IMAGE SECTION */
.aboutV4-left {
    flex: 1 1;
    display: flex;
    justify-content: center;
}

.aboutV4-image {
    width: 95%;
    max-width: 600px;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(30, 25, 77, 0.15);
    transition: transform 0.3s ease;
}

.aboutV4-image:hover {
    transform: scale(1.02);
}

/* TEXT SECTION */
.aboutV4-right {
    flex: 1 1;
}

.aboutV4-subtitle {
    font-size: 0.8rem;
    color: #A0AAFD;
    margin-bottom: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.aboutV4-title {
    font-size: 1.9rem;
    margin-bottom: 15px;
    color: #1e194d;
}

.aboutV4-description {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #3d3d3d;
    max-width: 90%;
}

/* FEATURES LIST */
.aboutV4-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aboutV4-features li {
    background: #F4F5FF;
    padding: 12px 14px;
    margin-bottom: 10px;
    border-radius: 12px;
    color: #1e194d;
    font-size: 0.9rem;
    border-left: 4px solid #A0AAFD;
    transition: all 0.25s ease;
}

.aboutV4-features li:hover {
    background: #E4E7FF;
    transform: translateX(3px);
}

/* ===========================
     RESPONSIVENESS
  =========================== */

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

    .aboutV4-image {
        width: 70%;
        max-width: 320px;
    }

    .aboutV4-description {
        max-width: 100%;
    }

    .aboutV4-features li {
        font-size: 0.88rem;
    }
}

/* MOBILE */
@media (max-width: 600px) {

    .aboutV4-wrapper {
        padding: 45px 15px;
    }

    .aboutV4-title {
        font-size: 1.6rem;
    }

    .aboutV4-description {
        font-size: 0.9rem;
    }

    .aboutV4-image {
        width: 75%;
        max-width: 260px;
    }

    .aboutV4-features li {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
}

.accordion-area .card.single-faq-inner {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    width: 100%;
    margin-bottom: 18px;
    background: #fff;
}


/* Reset global flex override coming from another CSS file */
.accordion-area .card-header {
    background: #fff !important;
    border: none !important;
    padding: 0 !important;
    display: block !important; /* 🔥 This is the key fix */
}


/* Full Width clickable button */
.accordion-area .card-header button.btn-link {
    width: 100% !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between !important;
    padding: 7px 60px 7px 8px !important; /* left text | right icon */
    font-size: 19px;
    font-weight: 600;
    text-decoration: none !important;
    color: #031d58;
    text-align: left;
}


/* Question text - takes full width */
.accordion-area .card-header .faq-text {
    flex: 1 1;
    display: block;
    line-height: 1.4;
}


/* Correct icon alignment */
.accordion-area .card-header i {
    margin-left: auto !important;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Remove focus/hover underline */
.accordion-area .card-header button.btn-link:hover,
.accordion-area .card-header button.btn-link:focus {
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
}



/* scholarship-marquee.css - premium marquee matching the screenshot */

/* wrapper */
.marquee-fix {
    position: relative;
    z-index: 50;
}

/* marquee bar - light, slightly cyan-to-blue band like screenshot header */
.scholarship-marquee {
    background: #636dce;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 28px rgba(13, 17, 40, 0.18);
}

/* text – soft gold with subtle glow */
.scholarship-marquee .marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 28s linear infinite;
    color: #ffd86b;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 8px rgba(0, 38, 102, 0.28), 0 0 6px rgba(255, 215, 0, 0.18);
}

/* marquee animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* shimmer highlight */
.scholarship-marquee .marquee-content {
    position: relative;
    overflow: hidden;
}

.scholarship-marquee .marquee-content::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    height: 100%;
    width: 40%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.42) 50%, rgba(255, 255, 255, 0) 100%);
    animation: shimmer 3.6s ease-in-out infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* responsive adjustments */
@media (max-width: 768px) {
    .scholarship-marquee .marquee-content {
        font-size: 16px;
    }
}

/* Lower marquee below navbar dropdown */
.marquee-fix {
    position: relative;
    z-index: 1 !important;
    /* was 50 */
}

.scholarship-marquee {
    z-index: 1 !important;
}

/* Ensure profile/logout always stays above */
.menu-item-has-children .sub-menu {
    z-index: 9999 !important;
}
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: rgba(255, 255, 255, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
}

.Toastify__toast-container {
  z-index: 9999;
  z-index: var(--toastify-z-index);
  -webkit-transform: translate3d(0, 0, 9999 px);
  -webkit-transform: translate3d(0, 0, var(--toastify-z-index) px);
  position: fixed;
  padding: 4px;
  width: 320px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}
.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}
.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}
.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0;
  }
  .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
    top: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
    bottom: 0;
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: 0;
    left: auto;
    left: initial;
  }
}
.Toastify__toast {
  position: relative;
  min-height: 64px;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 4px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  max-height: 800px;
  max-height: var(--toastify-toast-max-height);
  overflow: hidden;
  font-family: sans-serif;
  font-family: var(--toastify-font-family);
  cursor: pointer;
  direction: ltr;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast-body {
  margin: auto 0;
  flex: 1 1 auto;
  padding: 6px;
  display: flex;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  flex: 1 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
          margin-inline-end: 10px;
  width: 20px;
  flex-shrink: 0;
  display: flex;
}

.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.7s;
}

.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}

@media only screen and (max-width : 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: #121212;
  background: var(--toastify-color-dark);
  color: #fff;
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--light {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--default {
  background: #fff;
  background: var(--toastify-color-light);
  color: #757575;
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: #fff;
  color: var(--toastify-text-color-info);
  background: #3498db;
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: #fff;
  color: var(--toastify-text-color-success);
  background: #07bc0c;
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: #fff;
  color: var(--toastify-text-color-warning);
  background: #f1c40f;
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: #fff;
  color: var(--toastify-text-color-error);
  background: #e74c3c;
  background: var(--toastify-color-error);
}

.Toastify__progress-bar-theme--light {
  background: linear-gradient(
    to right,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: #bb86fc;
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: #3498db;
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: #07bc0c;
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: #f1c40f;
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: #e74c3c;
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--success, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning, .Toastify__progress-bar-theme--colored.Toastify__progress-bar--error {
  background: rgba(255, 255, 255, 0.7);
  background: var(--toastify-color-transparent);
}

.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  align-self: flex-start;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:hover, .Toastify__close-button:focus {
  opacity: 1;
}

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  100% {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  left: initial;
  transform-origin: right;
}

.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: #e0e0e0;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: #616161;
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}

@keyframes Toastify__bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes Toastify__bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}

.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0);
  }
}
@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0);
  }
}
@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft;
}
.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
}

@keyframes Toastify__spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ==========================
   CAREERS PAGE MAIN LAYOUT
========================== */

.careers-container {
    padding: 30px 0 80px;
    text-align: center;
}

/* Mission section box */
.careers-content-box {
    max-width: 850px;
    margin: 0 auto 60px;
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.careers-title {
    font-size: 36px;
    color: #1e194d;
    font-weight: 700;
    margin-bottom: 15px;
}

.careers-desc {
    color: #555;
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* ==========================
   ROLE CARDS
========================== */

.roles-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.role-card {
    width: 330px;
    /* smaller */
    background: #ffffff;
    padding: 25px;
    /* less padding */
    border-radius: 18px;
    box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: 0.3s;
    min-height: 320px;
    /* reduced size */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.role-card:hover {
    transform: translateY(-6px);
}

.role-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e194d;
    margin-bottom: 15px;
}

.role-desc {
    color: #666;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
}

/* BUTTON */
.role-btn {
    background: #5a6bff;
    /* darker */
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.25s ease;
}

.role-btn:hover {
    background: #9faaff;
    /* faint hover */
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width: 768px) {

    .roles-container {
        flex-direction: column;
        align-items: center;
    }

    .role-card {
        width: 92%;
        min-height: 340px;
        /* slightly smaller */
        padding: 25px;
    }

    .careers-content-box {
        width: 90%;
        padding: 30px;
    }
}
.pretestbox,
.posttestbox{
    width: 200px;
    height: 200px;
    border: 1px solid black;

}
.sessioncontents{
    display: flex;
    column-gap: 10px;
}

.knowledgecontents{
    flex-wrap: wrap;
}
.knowledgecontents .pretestbox{
    margin: 5px;
}
.coursecontainerbox{
    display: flex;
    flex-direction: row;
}
.video{
    flex: 0.7 1;
    /* border: 1px solid black; */
    padding: 5px;
    height: -webkit-max-content;
    height: max-content;
}
.sessionvideos{
    border: 1px solid black;
}
.course_sessions{
    /* border: 1px solid black; */
    padding: 10px;
    margin-top: 5px;
}
.course_sessions ul li{
    list-style: none;
    border: 1px solid black;
    padding-left: 5px;
    height: 30px;
    margin-top: 5px;
}
.course_sessions ul li:hover{
    background-color: rgb(2, 2, 82);
    color: white;
}
.sessionvideos{
    flex: 0.3 1;
    margin-left: 2%;
    padding: 10px;
}
.video video{
    width: 100%;
}
@media (max-width: 600px) {
    .sessioncontents{
        display: flex;
        flex-direction: column;
    }
    .pretestbox,.posttestbox{
        width: 100%;
        margin: 5px;
        height: 300px;
    }
    .coursecontainerbox{
        display: flex;
        flex-direction: column;
    }
    .sessionvideos{
        margin-left: 0%;
        margin-top: 5%;
    }
}
.fees-outer-container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  padding: 20px;
}

/* -------- SCHOLARSHIP TITLE ABOVE CARD -------- */
.scholarship-header {
  text-align: left;
  margin-bottom: 18px;
}
.scholarship-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f0f32;
}
.scholarship-header p {
  font-size: 15px;
  color: #444;
}

/* -------- MAIN CARD WRAPPER -------- */
.fees-main-card {
  background: #ffffff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  box-shadow: 0px 8px 28px rgba(0, 0, 0, 0.10);
  margin-bottom: 28px;
}

/* BLUE BLOCK ONLY ON LEFT SIDE */
.blue-block {
  width: 290px;
      background-color: #0e48a8;
    border-radius: 14px 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px 30px 20px ;
}

/* WHITE PRICE CARD INSIDE BLUE BLOCK */
.white-price-card {
  background: white;
  /* border-radius: 12px; */
  width: 100%;
  text-align: center;
  padding: 28px 15px;
  box-shadow: 0px 4px 18px rgba(0, 0, 0, 0.10);
}

/* PRICE TEXT STYLES */
.price-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.price-sub {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}
.price-final {
  font-size: 22px;
  font-weight: 700;
  color: #111;
}
.price-final strong {
  font-size: 30px;
  font-weight: 800;
  color: #111;
}
.gst-text {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}

/* RIGHT SIDE EMI SECTION */
.emi-info {
  width: 55%;
  padding: 30px 35px;
}
.emi-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}
.emi-info p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

/* BELOW SECTION */
.payment-section h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.payment-section p,
.payment-section li {
  font-size: 15px;
  color: #333;
  line-height: 1.5;
  margin-bottom: 8px;
}
.payment-section .note {
  margin-top: 12px;
  color: #444;
}
.payment-section ul {
  padding-left: 20px;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
  .fees-main-card {
    flex-direction: column;
  }
  .blue-block {
    width: 100%;
    border-radius: 14px 14px 0 0;
  }
  .emi-info {
    width: 100%;
    text-align: center;
  }
}
.emi-options-list {
  margin-top: 16px;
}

.emi-options-list p {
  font-size: 15px;
  color: #111;
  margin-bottom: 4px;
}

.bank-list {
  font-size: 13px;
  color: #555;
  margin-left: 12px;
  margin-bottom: 10px;
}

.course-modules-wrapper {
  margin-top: 25px;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
}

.course-phase-title {
  font-size: 20px;
  font-weight: 600;
  color: #1e194d;
  margin-top: 20px;
}

.module-list {
  margin-top: 10px;
  padding-left: 10px;
}

.module-item {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #333;
}

.module-item::before {
  content: "✔";
  color: #5e4bff;
  font-size: 18px;
  margin-right: 10px;
}
.fees-box-wrapper {
  margin-top: 10px;        /* reduces space */
  padding: 25px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
}

.fees-subtitle {
  font-size: 22px;
  font-weight: 600;
  color: #1e194d;
  margin-bottom: 15px;
}

.fees-list li {
  margin-bottom: 8px;
  font-size: 16px;
}

.fees-list i {
  color: #5e4bff;
  margin-right: 8px;
}

.fees-box-wrapper p {
  color: #333 !important;
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 1.6;
}
/* FEE STRUCTURE BOX */
.fees-box-wrapper {
  margin-top: 10px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
}

.fees-text p,
.fees-text li,
.fees-text h3,
.fees-text h4 {
  color: #0A0A33 !important;
  line-height: 1.6;
}

.fees-text ul li {
  margin-bottom: 8px;
}

.fees-text ul {
  padding-left: 20px;
}

.course-details-nav-tab .nav-tabs {
  display: flex !important;
  flex-wrap: nowrap !important;
  white-space: nowrap !important;
  overflow-x: auto;
  scrollbar-width: none; /* hide scrollbar Firefox */
}

.course-details-nav-tab .nav-tabs::-webkit-scrollbar {
  display: none; /* hide scrollbar Chrome */
}

.course-details-nav-tab .nav-item {
  flex: 1 1; /* equal width tabs */
}

.course-details-nav-tab .nav-link {
  padding: 12px 10px !important; /* reduce width so Prerequisite fits */
  font-size: 14px;
}
/* Fix text color inside the Prerequisites (Resources tab) */
.fees-box-wrapper p,
.fees-box-wrapper li,
.fees-box-wrapper .fees-subtitle {
    color: #000 !important;
}
.scholarship-offer-box {
  background: #f0f8ff;
  border: 1px solid #d0e7ff;
  border-radius: 8px;
  padding: 10px 14px;     /* reduced padding */
  margin-bottom: 15px;    /* reduced gap */
}

.scholarship-offer-box h3 {
  color: #d6336c;
  font-size: 20px;
  margin-bottom: 6px;     /* reduced spacing */
}

.scholarship-offer-box p {
  margin: 4px 0;          /* very compact spacing */
  font-size: 15px;
  line-height: 1.4;
}
.scholarship-box {
  background: #f7f9fc;
  border: 1px solid #d9e2ef;
  padding: 22px 28px;
  border-radius: 12px;
  margin-bottom: 35px;
}

.scholarship-box .title {
  font-size: 22px;
  font-weight: 700;
  color: #0f1b40;
  margin-bottom: 8px;
}

.scholarship-box .subline {
  font-size: 14px;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 15px;
}

.base-fee {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 14px;
}

.final-fee-box {
  background: #eef2ff;
  border: 1px solid #c6d4ff;
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 12px;
}

.final-fee-box .small-text {
  font-size: 14px;
  color: #3a4a6b;
}

.final-fee-box .final-fee {
  font-size: 20px;
  font-weight: 700;
  color: #1e3a8a;
  margin-top: 4px;
}

.scholarship-box .note {
  font-size: 14px;
  color: #4a5568;
  margin-top: 10px;
}
.payment-section {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  padding: 25px 28px;
  border-radius: 12px;
  margin-top: 20px;
}

.payment-section .section-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f1b40;
  margin-bottom: 12px;
}

.payment-section .section-desc {
  font-size: 15px;
  color: #444444;
  margin-bottom: 22px;
  line-height: 1.6;
}

.payment-section .subheading {
  font-size: 17px;
  font-weight: 600;
  color: #1b1b1b;
  margin-top: 18px;
  margin-bottom: 10px;
}

.payment-section ul li {
  font-size: 15px;
  margin-bottom: 8px;
  color: #333;
  line-height: 1.5;
}

.payment-section .note {
  font-size: 14px;
  color: #4a5568;
  margin-top: 12px;
}
.fees-single-box {
  background: #ffffff;
  border: 1px solid #e2e2e2;
  padding: 22px 26px;
  border-radius: 12px;
  margin-top: 20px;
}
.scholarship-section,
.payment-section {
  margin-bottom: 22px;
}

.scholarship-section .title {
  font-size: 20px;
  font-weight: 700;
  color: #0f1b40;
}

.subline {
  font-size: 14px;
  color: #4a5568;
  margin-bottom: 8px;
}

.base-fee {
  margin-top: 8px;
  margin-bottom: 10px;
  font-size: 16px;
}

.final-fee-box {
  background: #eef2ff;
  border: 1px solid #c6d4ff;
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.final-fee {
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a;
}

.section-title {
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
}

.list li {
  margin-bottom: 6px;
  font-size: 15px;
}

.note {
  font-size: 14px;
  color: #4a5568;
}
.scholarship-section .title,
.section-title {
  font-size: 22px;
  font-weight: 700;
  color: #0f1b40; /* deep navy */
  margin-bottom: 10px;
}
.subline {
  font-size: 14px;
  color: #6b7280; /* neutral grey */
  margin-bottom: 12px;
}

.base-fee {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 12px;
}

.final-fee-box {
  background: #eef2ff;
  border: 1px solid #d4ddff;
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 16px;
}
.final-fee-box .small-text {
  color: #4b5563;
  font-size: 14px;
}
.final-fee-box .final-fee {
  font-size: 19px;
  font-weight: 700;
  color: #1e3a8a;
  margin-top: 4px;
}
.section-desc,
.note,
p {
  font-size: 15px;
  line-height: 1.6;
  color: #374151; /* professional gray */
  margin-bottom: 14px;
}

.subheading {
  font-size: 17px;
  font-weight: 600;
  color: #111827;
  margin-top: 20px;
  margin-bottom: 8px;
}
.list li {
  font-size: 15px;
  color: #374151;
  margin-bottom: 6px;
  line-height: 1.5;
}
.payment-section {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid #e5e7eb; /* thin light border */
}
.prereq-list {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.prereq-list li {
  display: flex;
  align-items: flex-start;
  font-size: 15px;
  margin-bottom: 6px;       /* smaller spacing between boxes */
  line-height: 1.4;
  color: #333;
  background: #f8f9ff;
  padding: 6px 12px;        /* reduced padding (height shrinks) */
  border-radius: 6px;       /* smaller rounded corners */
  border-left: 3px solid #5e4bff; /* thinner border */
}
.prereq-list li::before {
  content: "✔";
  color: #5e4bff;
  font-size: 16px;
  font-weight: bold;
  margin-right: 10px;
  margin-top: 2px;
}
.prereq-list .key {
  font-weight: 700;
  color: #1e1e4d;
  margin-right: 6px;
}
#tab4 .prereq-list li {
  display: block !important;  
  padding: 15px 0;
}
#tab4 .prereq-list li .key {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}
#tab4 .prereq-list li .value {
  display: block;
  line-height: 1.6;
}
#tab4 .prereq-list li {
  display: block !important;
  padding: 20px;
  background: #f3f4ff;
  border-radius: 10px;
  margin-bottom: 15px;
}
#tab4 .prereq-list li .key {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 8px;
}
#tab4 .prereq-list li .value {
  font-size: 15px;
  line-height: 1.6;
}
#tab4 .prereq-list li::before {
  display: none !important;
  content: none !important;
}
.course-details-content {
  font-size: 16px;
  line-height: 1.65;
  color: #1E1E2D;
}
.fees-box-wrapper {
  padding: 28px;
  border-radius: 12px;
  margin-top: 25px;
}
.course-details-content p strong {
  font-weight: 700;
}
.fees-subtitle {
  font-size: 20px;
  font-weight: 600;
  margin-top: 22px;
  margin-bottom: 14px;
  color: #1C1C63;
  display: flex;
  align-items: center;
  gap: 10px;
}
.fees-subtitle::before {
  content: "";
  width: 6px;
  height: 22px;
  background: #6C63FF;
  border-radius: 4px;
}
.single-list-wrap {
  margin-top: 10px;
}
.single-list-inner.style-check-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.single-list-inner.style-check-box i {
  color: #6C63FF !important;
  margin-top: 2px;
  font-size: 18px;
}
.course-details-content p.detail {
  margin-bottom: 12px;
}
.course-details-content p.detail strong {
  margin-right: 4px;
}
.tab-pane .course-details-content {
  width: 100%;
}
.section-main-title {
  font-size: 22px;
  font-weight: 700;
  color: #1C1C63;
  margin-bottom: 8px;
  line-height: 1.4;
}
.section-sub-title {
  font-size: 15px;
  font-weight: 500;
  color: #444;
  margin-bottom: 18px;
}
.section-main-title {
  border-left: 6px solid #6C63FF;
  padding-left: 12px;
}
.disclaimer-box {
  background: #eef0ff;
  border-left: 5px solid #6C63FF;
  padding: 12px 18px;
  margin: 15px 0 20px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: #1e1e1e;
}
.disclaimer-icon {
  color: #6C63FF;
  font-size: 18px;
  margin-top: 2px;
  min-width: 18px;
}
@media (max-width: 600px) {
  .disclaimer-box {
    font-size: 14px;
    padding: 10px 14px;
  }
}

/* Tools Covered Styles - Right Sidebar */
.widget_tools {
  background: #ffffff;
  padding: 22px;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  margin-top: 20px;
}

.widget_tools .widget-title {
  font-size: 18px;
  font-weight: 700;
  color: #1C1C63;
  margin-bottom: 15px;
  text-align: center;
}

.tools-images {
  display: flex;
  flex-direction: column;
  
}

.tools-img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  
}

/* Main Section */
.admission-process-section {
  margin-top: 40px;
  margin-bottom: 50px;
  text-align: center;
}

.admission-title {
  font-size: 28px;
  font-weight: 700;
  color: #0B2A75;
  margin-bottom: 8px;
}

.admission-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 35px;
}

/* Cards Container */
.admission-steps-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 22px;
  flex-wrap: nowrap;         /* Prevents wrapping on large displays */
  overflow-x: auto;          /* Horizontal scroll on small screens */
  padding-bottom: 15px;
  scroll-behavior: smooth;
}

/* Cards */
.admission-card {
  background: #ffffff;
  border-radius: 12px;
  width: 240px;              /* Perfect to fit 5 in a row */
  min-height: 250px;
  padding: 22px;
  border: 1px solid #e6e6e6;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  text-align: left;
  transition: 0.3s ease;
  flex-shrink: 0;           /* Prevents auto shrinking */
}

.admission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.10);
}

/* Step label */
.step-no {
  color: #0B2A75;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Icon Holder */
.icon-circle {
  width: 46px;
  height: 46px;
  background: rgba(11,42,117,0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.icon-circle i {
  font-size: 22px;
  color: #0B2A75;
}

/* Title */
.step-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #071c4d;
}

/* Description */
.step-desc {
  font-size: 13.8px;
  color:black;
  line-height: 20px;
}

@media (max-width: 1200px) {
  .admission-steps-container {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: hidden;
  }

  .admission-card {
    width: 260px;
    margin-bottom: 20px;
  }
}

/* Mobile screens */
@media (max-width: 767px) {
  .admission-card {
    width: 100%;
    max-width: 320px;
  }
}

.googleform input{
    width: 100%;
}
/* .submitbtn, */
.updatebtn,
.uploadbtn{
    height: 40px;
    margin-top: 5%;
    background-color: rgb(61, 187, 61);
    border: 1px solid black;
    border-radius: 5px;
    color: white;
    float: right;
}
.submitbtn{
    background-color: rgb(0, 0, 104);
    color: white;
    margin-top: 5px;
}
.inputcontents{
    display: flex;
    flex-direction: row;
}
.updatebtn{
    margin-top: 2%;
}
.coursesubmit{
    background-color: rgb(0, 0, 104);
    color: white;
}
.formsection{
    border: 1px solid rgb(0, 0, 104);
    padding: 2%;
    border-radius: 5px;
}
@media (max-width: 600px) {
    .inputcontents{
        display: flex;
        flex-direction: column;
    }
}
/* Signin or signup  */
.sign-container {
    background: linear-gradient(135deg, #e7eeff, #c9d6ff);
    padding: 55px 0px;
    border-radius: 14px;
    max-width: 600px;
    margin: 60px auto;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(150, 160, 255, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin-top: 50px !important;
}

.sign-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(60, 75, 150, 0.22);
}

.sign-container input {
    background: #ffffff;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #c2c7ff;
    transition: border-color 0.25s;
}

.sign-container input:focus {
    border-color: #6b7bff;
    box-shadow: 0 0 0 2px rgba(107, 123, 255, 0.25);
}


.sign-container button {
    height: 42px;
    font-size: 15px;
    border-radius: 6px;

}


.sign-container .input-group .btn:hover {
    background-color: #5666f7;
    color: #fff;
}

.sign-container input,
.sign-container select {
    width: 100%;
}

.sign-container .input-group select {
    border: none !important;
}


.sign-container .input-group .form-control {
    border-radius: 8px !important;
}

.primary-auth-btn {
    width: 85%;
    margin: 0 auto;
    display: block;
    background: #6b7bff;
    color: #fff;
    height: 42px;
    font-size: 15px;
    border-radius: 6px;
    border: none;
    transition: 0.25s;
}

.primary-auth-btn:hover {
    background-color: #5666f7;
    color: #fff;
}

.google-btn-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    width: 100%;
}

.google-signin-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 85%;
    max-width: 300px;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #c2c7ff;
    background: white;
    cursor: pointer;
    transition: all 0.25s ease;
}

.google-signin-btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Sign-in Modal Styles */
.modal {
    overflow-y: auto;
}

.modal-dialog {
    margin: 1.75rem auto;
    max-width: 500px;
    width: auto;
}

.modal-content {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    max-height: calc(100vh - 3.5rem);
    overflow-y: auto;
}

.modal-header {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    background-color: #f8f9fa;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.modal-title {
    font-size: 1.25rem;
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
}

.modal-body {
    padding: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

.modal-footer {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    background-color: #f8f9fa;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.modal-footer .btn {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1 1 auto;
    min-width: 100px;
}

@media (max-width: 576px) {
    .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    .modal-body {
        padding: 0.75rem;
    }
    
    .modal-header, .modal-footer {
        padding: 0.75rem;
    }
    
    .modal-body p {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .modal-footer {
        flex-direction: column;
        gap: 10px;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin: 0;
        padding: 10px;
        font-size: 16px;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
}

/* Desktop improvements */
@media (min-width: 577px) {
    .modal-footer .btn {
        padding: 0.375rem 0.75rem;
        white-space: normal;
        word-break: break-word;
        line-height: 1.2;
    }
}
.custom-submit-btn {
    /* same blue like Sign-In */
    height: 42px;
    font-size: 15px;
    border-radius: 6px;
    color: white;
    border: none;
    transition: 0.25s;
}

.custom-submit-btn:hover {
    background-color: #5666f7;
    color: #fff;
}
.coming-soon-wrapper {
    padding: 120px 20px;
    background: #ffffff;   /* clean white background */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


.coming-card {
    background: #ffffff;
    padding: 50px 40px;
    max-width: 650px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0px 10px 35px rgba(0, 0, 0, 0.15);
}

.coming-title {
    font-size: 42px;
    font-weight: 700;
    color: #16154E;
    margin-bottom: 10px;
}

.coming-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #4b4b4b;
    margin-bottom: 8px;
}

.coming-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #565656;
    margin-bottom: 30px;
}

/* Loader animation */
.coming-loader {
    width: 60px;
    height: 60px;
    border: 6px solid #e3e3e3;
    border-top-color: #16154E;
    border-radius: 50%;
    margin: 25px auto;
    animation: spin 1.4s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.coming-footer-text {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

.mentors-section {
  padding: 50px 8%;
  background-color: #f8f9fb;
  text-align: center;
  min-height: 100vh;
}

.mentors-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.mentors-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 50px;
}

/* ===== GRID LAYOUT ===== */
.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 40px;
  gap: 40px;
  justify-items: center;
  align-items: start;
  padding: 20px 0;
}

/* ===== TRAINER CARD ===== */
.trainer-full-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 28px;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease-in-out;
  overflow: hidden;
}

/* ✅ Equal initial height for all collapsed cards */
.trainer-full-card {
  min-height: 520px;
  /* uniform baseline height for all collapsed cards */
}

/* ✅ When expanded, all cards become equal height */
.trainer-full-card.expanded {
  min-height: 650px;
}

/* Hover */
.trainer-full-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

/* ===== IMAGE ===== */
.mentor-img {
  display: block;
  margin: 0 auto 15px auto;
  border: 3px solid #f0f0f0;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===== TEXT ===== */
.trainer-full-card h3 {
  font-size: 1.3rem;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.mentor-role {
  font-weight: 600;
  color: #6d79f6;
  margin-bottom: 8px;
}

.mentor-expertise {
  font-size: 0.95rem;
  color: #333;
  margin: 8px 0 10px;
}

/* ===== LINKEDIN BUTTON ===== */
.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #0077b5;
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  margin: 6px 0 14px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.linkedin-link:hover {
  background-color: #005582;
  transform: translateY(-2px);
}

/* ===== RECOGNITIONS ===== */
.trainer-recognitions {
  text-align: left;
  margin-top: 6px;
  /* reduced gap */
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.trainer-recognitions h4 {
  font-size: 1rem;
  color: #0077ff;
  margin-bottom: 6px;
  font-weight: 600;
}

.trainer-recognitions ul {
  list-style: disc;
  padding-left: 18px;
  color: #444;
  line-height: 1.55;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* Hide extra recognitions */
.trainer-full-card:not(.expanded) .trainer-recognitions ul li:nth-child(n + 2) {
  display: none;
}

/* ===== READ MORE BUTTON ===== */
.read-more-btn {
  background: none;
  border: none;
  color: #0077ff;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-top: 2px;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.read-more-btn:hover {
  color: #0056b3;
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .mentors-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }

  .trainer-full-card {
    max-width: 340px;
    min-height: 500px;
  }

  .trainer-full-card.expanded {
    min-height: 630px;
  }
}

@media (max-width: 768px) {
  .mentors-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .trainer-full-card {
    max-width: 90%;
    min-height: auto;
  }
}

/* Fix header overlap on mobile */
@media (max-width: 575px) {
  .mentors-section {
    padding-top: 120px !important;
    /* pushes subtitle down so it's visible */
  }

  .mentors-title {
    font-size: 1.8rem !important;
  }

  .mentors-subtitle {
    font-size: 1rem !important;
    margin-top: 6px !important;
  }
}
---------- Global Styles ---------- */
body, html {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Roboto", sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

.education-dashboard {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* ---------- Header ---------- */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.dashboard-header h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.dashboard-header p {
  color: #666;
  font-size: 14px;
  margin: 5px 0 0;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #0073e6;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 20px;
}

/* ---------- Grid Layout ---------- */
.dashboard-main {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* Left Column */
.dashboard-column.left-column {
  flex: 1 1;
  min-width: 300px;
}

/* Right Column */
.dashboard-column.right-column {
  flex: 1 1;
  min-width: 300px;
}

/* ---------- Dashboard Cards ---------- */
.dashboard-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  padding: 20px;
  transition: transform 0.2s;
}

.dashboard-card:hover {
  transform: translateY(-2px);
}

/* Card Headers */
.dashboard-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.dashboard-card h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

.edit-button {
  background-color: transparent;
  border: none;
  color: #0073e6;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
}

.edit-button:hover {
  text-decoration: underline;
}

/* ---------- Profile Info ---------- */
.profile-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-group label {
  font-weight: 500;
  color: #555;
  display: block;
  margin-bottom: 5px;
}

.info-value {
  font-size: 16px;
  color: #333;
}

.profile-info input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}

.profile-info input:focus {
  border-color: #0073e6;
}

/* Phone input style */
.phone-inputs {
  display: flex;
  gap: 10px;
}

.phone-inputs .country-code {
  width: 80px;
}

.phone-inputs .phone-number {
  flex: 1 1;
}

/* Edit Buttons */
.edit-actions {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.btn {
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s;
}

.btn-success {
  background-color: #28a745;
  color: #fff;
}

.btn-success:hover {
  background-color: #218838;
}

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #5a6268;
}

.btn-danger {
  background-color: #dc3545;
  color: #fff;
}

.btn-danger:hover {
  background-color: #c82333;
}

/* ---------- Progress Card ---------- */
.progress-card p {
  font-size: 16px;
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  height: 15px;
  background-color: #e6e6e6;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  background-color: #0073e6;
  width: 0%;
  border-radius: 10px;
  transition: width 0.5s ease;
}

/* ---------- Stats Card ---------- */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.stat-item {
  background-color: #f3f8ff;
  padding: 15px;
  border-radius: 10px;
  flex: 1 1 45%;
  text-align: center;
}

.stat-item p {
  margin: 5px 0 0;
  font-weight: 600;
}

/* ---------- Activity Card ---------- */
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.activity-item {
  padding: 10px;
  border-radius: 8px;
  background-color: #f9f9f9;
  border-left: 4px solid #0073e6;
  transition: all 0.2s;
}

.activity-item:hover {
  background-color: #f1f5fb;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
  .dashboard-main {
    flex-direction: column;
  }

  .dashboard-column {
    width: 100%;
  }
}


/* file uploade (pic) */
/* .file-input-container {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Inter', sans-serif;
  margin-top: 10px;
}

.file-input-label {
  background-color: #0073e6;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s;
}

.file-input-label:hover {
  background-color: #005bb5;
}

.file-input {
  display: none; 
}

.file-name {
  font-size: 14px;
  color: #555;
}




/* Shared button base styles */
.btn {
    border-radius: 8px !important;
    padding: 10px 20px !important;
    font-weight: 500;
    transition: all 0.3s ease !important;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* === MAIN THEME COLOR === */
/* Default: #1C1C63 | Hover: #4A4BB3 (more faint) */

/* Edit Profile (Primary) */
.btn-primary {
    background-color: #1C1C63 !important;
    border-color: #1C1C63 !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #4A4BB3 !important;  /* more faint */
    border-color: #4A4BB3 !important;
    transform: translateY(-2px);
}

/* Save (Success) */
.btn-success {
    background-color: #1C1C63 !important;
    border-color: #1C1C63 !important;
    color: #fff !important;
}

.btn-success:hover {
    background-color: #4A4BB3 !important;
    border-color: #4A4BB3 !important;
    transform: translateY(-2px);
}

/* Cancel */
.btn-secondary {
    background-color: #E5E6FF !important;
    border-color: #E5E6FF !important;
    color: #1C1C63 !important;
}

.btn-secondary:hover {
    background-color: #D6D7FF !important;
    border-color: #D6D7FF !important;
    transform: translateY(-2px);
}

/* Logout */
.btn-danger {
    background-color: #1C1C63 !important;
    border-color: #1C1C63 !important;
    color: #fff !important;
}

.btn-danger:hover {
    background-color: #4A4BB3 !important;   /* more faint */
    border-color: #4A4BB3 !important;
    transform: translateY(-2px);
}

/* === EDUCATION DASHBOARD STYLES === */

.education-dashboard {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Rubik', sans-serif;
}

.dashboard-header {
    margin-bottom: 30px;
    background: linear-gradient(120deg, #1C1C63, #4A4BB3);
    border-radius: 16px;
    padding: 25px;
    color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-section h1 {
    font-size: 32px;
    margin: 0 0 10px 0;
    font-weight: 700;
    color: white !important;
}

.welcome-text {
    font-size: 18px;
    margin: 0;
    color: white !important;
    opacity: 1;
}

.user-shortcut {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.avatar-initial {
    color: white;
}

.dashboard-main {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

/* Sidebar Styles */
.dashboard-sidebar {
    width: 250px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px 0;
    height: -webkit-fit-content;
    height: fit-content;
}

.sidebar-menu {
    display: flex;
    flex-direction: column;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #565872;
    font-weight: 500;
    border-left: 3px solid transparent;
}

.sidebar-item:hover {
    background: #f8f9ff;
    color: #1C1C63;
}

.sidebar-item.active {
    background: #f8f9ff;
    color: #1C1C63;
    border-left: 3px solid #1C1C63;
}

.sidebar-item i {
    width: 20px;
    text-align: center;
}

/* Main Content Area */
.dashboard-content {
    flex: 1 1;
}

.dashboard-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.card-header {
    background: linear-gradient(120deg, #1C1C63, #4A4BB3);
    color: white !important;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: white !important;
}

.edit-button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white !important;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.edit-button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.card-body {
    padding: 25px;
}

/* Profile Card Styles */
.profile-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

/* Column Layout for Profile Information */
.info-column {
    background: #f8f9ff;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.info-column h3 {
    color: #1C1C63;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eef0f7;
    font-size: 20px;
}

.info-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
}

.info-group label {
    font-weight: 600;
    color: #1e194d;
    font-size: 16px;
    margin: 0;
}

.info-value {
    color: #565872;
    font-size: 16px;
    margin: 0;
    padding: 10px 15px;
    background: #f8f9ff;
    border-radius: 8px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #1C1C63;
    outline: none;
    box-shadow: 0 0 0 3px rgba(28, 28, 99, 0.1);
}

.phone-inputs {
    display: flex;
    gap: 10px;
}

.country-code {
    flex: 1 1;
}

.phone-number {
    flex: 2 1;
}

.edit-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.edit-actions .btn {
    flex: 1 1;
}

.profile-footer .btn {
    width: 100%;
}

/* ID Proof Styles */
.id-proof-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.id-proof-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.id-proof-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.id-proof-status {
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.status-badge.verified {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-badge.not-verified {
    background-color: #f8d7da;
    color: #721c24;
}

.document-images {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.document-image {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.document-image p {
    margin: 0;
    font-size: 14px;
    color: #565872;
    font-weight: 500;
}

.document-image img {
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* Progress Card Styles */
.course-info h3 {
    color: #1e194d;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 20px;
}

.progress-container {
    margin-bottom: 25px;
}

.progress-bar {
    height: 12px;
    background: #eef0f7;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1C1C63, #4A4BB3);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.progress-percentage {
    font-weight: 700;
    color: #1C1C63;
    font-size: 18px;
}

.progress-text {
    color: #565872;
    font-size: 14px;
}

.course-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.course-actions .btn {
    width: 100%;
}

.no-courses {
    text-align: center;
    padding: 20px 0;
}

.no-courses-icon {
    font-size: 48px;
    color: #1C1C63;
    margin-bottom: 15px;
}

.no-courses h3 {
    color: #1e194d;
    margin: 0 0 10px 0;
}

.no-courses p {
    color: #565872;
    margin: 0 0 20px 0;
}

/* Stats Card Styles */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    gap: 20px;
}

.stat-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(120deg, #1C1C63, #4A4BB3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.stat-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #1C1C63;
    margin-bottom: 5px;
}

.stat-label {
    color: #565872;
    font-size: 14px;
}

/* Activity Card Styles */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.activity-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f8f9ff;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.activity-item:hover {
    transform: translateY(-3px);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(120deg, #1C1C63, #4A4BB3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.activity-content {
    flex: 1 1;
}

.activity-content h4 {
    margin: 0 0 5px 0;
    color: #1e194d;
    font-size: 16px;
}

.activity-content p {
    margin: 0 0 8px 0;
    color: #565872;
    font-size: 14px;
}

.activity-time {
    color: #888;
    font-size: 12px;
}

/* Alert Styles */
.alert {
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeaa7;
    color: #856404;
}

.alert-warning strong {
    color: #856404;
}

/* Profile Picture Styles */
.profile-picture-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.file-input-container {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Inter', sans-serif;
    margin-top: 10px;
}

.file-input-label {
    background-color: #0073e6;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
    margin: 0;
}

.file-input-label:hover {
    background-color: #005bb5;
}

.file-input {
    display: none; 
}

.file-name {
    font-size: 14px;
    color: #555;
    flex: 1 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.upload-button {
    align-self: flex-start;
    margin-top: 10px;
}

.user-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.avatar-initial {
    color: white;
}

/* Sign In button - match all profile buttons */
.sign-container button[type="submit"] {
    width: 170px !important;     /* Same width as Save/Cancel/Edit/Logout */
    display: block !important;
    margin: 0 auto !important;   /* Centers the button */
    border-radius: 8px !important; /* Same rounded corners */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .education-dashboard {
        padding: 15px;
    }
    
    .dashboard-main {
        flex-direction: column;
    }
    
    .dashboard-sidebar {
        width: 100%;
    }
    
    .sidebar-menu {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .sidebar-item {
        flex: 1 1;
        min-width: 150px;
        border-left: none;
        border-top: 3px solid transparent;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
        padding: 15px 10px;
    }
    
    .sidebar-item.active {
        border-top: 3px solid #1C1C63;
        border-left: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .welcome-section h1 {
        font-size: 28px;
    }
    
    .dashboard-header {
        padding: 20px;
    }
    
    .card-body {
        padding: 20px;
    }
    
    .phone-inputs {
        flex-direction: column;
        gap: 10px;
    }
    
    .edit-actions {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .document-images {
        flex-direction: column;
        gap: 15px;
    }
    
    /* Profile info columns stack on mobile */
    .profile-info {
        flex-direction: column;
    }
    
    .info-column {
        width: 100%;
        min-width: 0;
        min-width: initial;
    }
    
    /* Modal adjustments for mobile */
    .modal-dialog {
        margin: 10px;
        max-width: calc(100% - 20px);
    }
    
    /* Sidebar adjustments */
    .sidebar-menu {
        gap: 5px;
    }
    
    .sidebar-item {
        min-width: 120px;
        padding: 12px 8px;
        font-size: 14px;
    }
    
    .sidebar-item i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .sidebar-menu {
        flex-direction: column;
    }
    
    .sidebar-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        min-width: 0;
        min-width: initial;
    }
    
    .sidebar-item i {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .education-dashboard {
        padding: 10px;
    }
    
    .dashboard-header {
        padding: 15px;
    }
    
    .welcome-section h1 {
        font-size: 24px;
    }
    
    .welcome-text {
        font-size: 16px;
    }
    
    .card-header {
        padding: 15px;
    }
    
    .card-header h2 {
        font-size: 20px;
    }
    
    .card-body {
        padding: 15px;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .stat-info {
        align-items: center;
    }
    
    .sidebar-menu {
        flex-direction: column;
    }
    
    .sidebar-item {
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
    }
    
    /* Further modal adjustments for small screens */
    .modal-content {
        margin: 0;
    }
    
    .modal-header, .modal-body, .modal-footer {
        padding: 15px;
    }
    
    .modal-title {
        font-size: 18px;
    }
    
    .modal-body p {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .profile-info {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .info-column {
        flex: 1 1;
        min-width: 300px;
        margin-right: 0;
        margin-bottom: 0;
    }
    
    .info-column:last-child {
        margin-right: 0;
    }
}

@media (min-width: 1024px) {
    .info-column {
        min-width: 350px;
    }
}

/* Receipt Card Styles */
.receipt-content {
    text-align: center;
}

.receipt-info p {
    color: #565872;
    font-size: 16px;
    margin-bottom: 20px;
}

.receipt-info .btn {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.no-receipt {
    text-align: center;
    padding: 20px 0;
}

.no-receipt-icon {
    font-size: 48px;
    color: #1C1C63;
    margin-bottom: 15px;
}

.no-receipt h3 {
    color: #1e194d;
    margin: 0 0 10px 0;
}

.no-receipt p {
    color: #565872;
    margin: 0 0 20px 0;
}

.mt-3 {
    margin-top: 1rem;
}
/* ========================= INVOICE MAIN CONTAINER ========================= */

.invoice-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    z-index: 1;
}

/* ========================= NEW HEADER (MATCHES YOUR IMAGE) ========================= */

.invoice-header-v2 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 25px;
    margin-bottom: 30px;
    border-bottom: 2px solid #1C1C63;
}

.header-left-logo {
    height: 100px;
    width: auto;
}

.header-right-icon {
    height: 80px;
    width: auto;
}

.header-center {
    flex: 1 1;
    text-align: center;
}

.header-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #1C1C63;
    letter-spacing: 2px;
}

.header-sub {
    margin: 8px 0 0;
    font-size: 14px;
    color: #000;
}

/* Responsive Header Layout */
@media (max-width: 768px) {
    .invoice-header-v2 {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .header-left-logo,
    .header-right-icon {
        height: 60px;
    }
}

/* ========================= RECEIPT INFO SECTION ========================= */

.receipt-info-section {
    text-align: center;
    text-align: right;
    margin-bottom: 30px;
}

.invoice-title {
    color: #000;
    font-size: 32px;
    margin-bottom: 10px;
}

.invoice-details p {
    margin: 5px 0;
    font-size: 14px;
    color: #000;
}

.invoice-details {
    display: inline-block;
    text-align: left;
}

/* ========================= BILL TO SECTION ========================= */

.bill-to-section {
    margin-bottom: 30px;
}

.bill-to-section h3 {
    color: #000;
    border-bottom: 2px solid #1C1C63;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.bill-to-section p {
    margin: 5px 0;
    font-size: 14px;
    color: #000;
}

/* ========================= INVOICE TABLE ========================= */

.invoice-items {
    margin-bottom: 30px;
}

.invoice-table {
    width: 100%;
    border-collapse: collapse;
}

.invoice-table th {
    background-color: transparent;
    color: #000;
    padding: 12px 15px;
    text-align: left;
    border-bottom: 2px solid #1C1C63;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.4;
    line-height: 1.4;
    font-weight: bold;
    line-height: 1.4;
}

.invoice-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #000;
    color: #000;
    font-size: 14px;
}

.invoice-table tbody tr:last-child td {
    border-bottom: none;
}

/* Hover effect removed for cleaner print/PDF */
.invoice-table tbody tr:hover {
    background-color: transparent;
}

/* ========================= TOTAL SECTION ========================= */

.invoice-total {
    text-align: right;
    margin-bottom: 30px;
}

.total-row {
    display: inline-block;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    border-top: 2px solid #1C1C63;
    padding-top: 10px;
}

.total-row span:last-child {
    margin-left: 20px;
}

/* ========================= PAYMENT DETAILS ========================= */

.payment-details {
    margin-bottom: 30px;
}

.payment-details h3 {
    color: #000;
    border-bottom: 2px solid #1C1C63;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.payment-info p {
    margin: 8px 0;
    color: #000;
}

/* ========================= FOOTER ========================= */

.invoice-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #000;
}

.invoice-footer p {
    margin: 5px 0;
    color: #000;
}

.footer-note {
    margin-top: 5px;
    font-style: italic;
    font-size: 12px;
    color: #000;
}

/* ========================= ACTION BUTTONS ========================= */

.invoice-actions {
    text-align: center !important;
    margin-top: 30px;
}

.btn {
    border-radius: 8px !important;
    padding: 10px 20px !important;
    font-weight: 500;
    transition: all 0.3s ease !important;
    width: 170px !important;
    margin: 10px 5px !important;
}

/* Primary */
.btn-primary {
    background-color: #1C1C63 !important;
    border-color: #1C1C63 !important;
    color: #fff !important;
}

.btn-primary:hover {
    background-color: #4A4BB3 !important;
    border-color: #4A4BB3 !important;
    transform: translateY(-2px);
}

/* Secondary */
.btn-secondary {
    background-color: #E5E6FF !important;
    border-color: #E5E6FF !important;
    color: #1C1C63 !important;
}

.btn-secondary:hover {
    background-color: #D6D7FF !important;
    border-color: #D6D7FF !important;
    transform: translateY(-2px);
}

/* ========================= MOBILE BUTTONS ========================= */

@media (max-width: 576px) {
    .btn {
        width: 90% !important;
    }
}

