/* Limit logo size with fixed height and auto width for alignment */
.navbar-brand img {
    height: 86px;
    width: 100px;
    display: block;
}

/* Add some margin between logo and menu */
.navbar-brand {
    margin-right: 20px;
    display: flex;
    align-items: center;
    /* Vertically center align */
}

/* Reduce padding between menu items */
.navbar-nav .nav-item .nav-link {
    padding-right: 13px;
    font-size: 13px;
    /* slightly smaller font */
}

/* Reduce padding inside dropdown items */
.dropdown-menu .dropdown-item {
    padding: 5px 15px;
}

/* Fix submenu dropdown position */
.dropdown-submenu>.dropdown-menu {
    left: 100%;
    top: 0;
    margin-top: 0;
}

/* Make navbar container flexbox to align logo and menu */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .navbar-brand img {
        height: 40px;
        /* smaller height on smaller screens */
        width: auto;
    }

    .navbar-nav .nav-item .nav-link {
        padding-left: 8px;
        padding-right: 8px;
        font-size: 13px;
    }
}

/* Button styles */
.apply-now-btn {
    padding: 6px 15px;
    font-size: 14px;
    color: #fff;
    background-color: #007bff;
    /* Bootstrap primary color */
    border-radius: 25px !important;
    border: none !important;
    box-shadow: none !important;
    transition: background-color 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    text-transform: uppercase;
    /* Ensure buttons text is uppercase */
    overflow: hidden;
}

.apply-now-btn:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
    color: #fff;
    text-decoration: none;
}

/* Different color for Alumni button */
.apply-now-btn.alumni-btn {
    background-color: #28a745;
    /* Bootstrap success green */
}

.apply-now-btn.alumni-btn:hover {
    background-color: #1e7e34;
    /* Darker green on hover */
    color: #fff;
    text-decoration: none;
}

/* Align the button vertically center with nav links */
.navbar-nav .nav-item {
    display: flex;
    align-items: center;
    margin-right: -14px;
}

/* Container for buttons to add spacing - renamed to avoid Bootstrap conflict */
.my-btn-group {
    display: flex;
    gap: 10px;
    /* Space between buttons */
    margin-left: 10px;
    align-items: center;
}

.yellow-round-container {
    width: 82%
        /* adjust size to match the yellow round button size */
        height: 400px;
    /* same as width for a perfect circle */
    border-radius: 10%;
    /* makes the container perfectly round */
    background-color: #f9a825;
    /* your yellow color */
    overflow: hidden;
    /* hide anything outside the circle */
    position: relative;
    margin: 0 auto;
    /* center horizontally */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.yellow-round-container .choose-slider {
    width: 100%;
    height: 100%;
}

.yellow-round-container .choose-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* ensures image covers container without distortion */
    display: block;
}

.green-line-container {
    display: flex;
    justify-content: center;
    /* center horizontally */
    margin: 20px 0;
    /* space above and below */
}

.green-line {
    width: 100%;
    /* length of the green line */
    height: 2px;
    /* thickness */
    background-color: #bc1820;
    /* green color */
    border-radius: 1px;
    /* rounded edges */
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.about-img img:hover {
    transform: scale(1.05);
    /* subtle zoom on hover */
}

.img-label {
    margin-top: 8px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.about-img a {
    text-decoration: none;
    color: inherit;
}

.about-img .col-md-4 {
    margin-bottom: 15px;
}


.photos {
    width: calc((100% / 4) - 7.5px);
    height: auto;
}

.marquee-container {
    height: 60px;
    /* Set the height you want to show */
    overflow: hidden;
    position: relative;
}

.marquee-container p {
    margin: 0;
    padding: 0;
    line-height: 20px;
    /* adjust line height */
    animation: scrollUp 6s linear infinite;
}

/* Move paragraphs upward */
@keyframes scrollUp {
    0% {
        transform: translateY(100%);
    }

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


.marquee-bar {
    background-color:#bc1820;
    color: white;
    overflow: hidden;
    font-weight: bold;
    font-size: 13px;
}

/* Optional: style the marquee text inside */
.marquee-bar marquee {
    white-space: nowrap;
}

.btn-primary {
    background-color: #007bff;
    color: #fff;
    border: none;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
    border: none;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #343a40;
    /* Darker gray on hover */
}

.pricing-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
    color: white;
}

.pricing-item .pricing-header h4 {
    margin-bottom: 5px;
}

.pricing-item hr {
    border: 1px solid #ffffff;
    width: 100%;
    opacity: 1 !important;

}

/* Background colors for each box */
.pricing-item.vision {
    background-color: #fbc213;
}

.pricing-item.mission {
    background-color: green;
}

.pricing-item.objectives {
    background-color: red;
}

/* Make links inside pricing items white */
.pricing-item a.theme-btn {
    color: white;
    text-decoration: none;
}

/* Optional: hover effect for buttons */
.pricing-item a.theme-btn:hover {
    text-decoration: underline;
}

.tabs-container {
    border: 1px solid #dcdcdc;
    font-family: Arial, sans-serif;
    width: 600px;
    /* adjust as needed */
}

.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    border-bottom: 1px solid #dcdcdc;
    font-weight: bold;
    font-size: 14px;
}

.tabs-nav li {
    padding: 10px 20px;
    cursor: pointer;
    border: 1px solid transparent;
    border-bottom: none;
    color: #81b8e3;
    /* blue for inactive */
    user-select: none;
}

.tabs-nav li.active {
    color: #6abe50;
    /* green for active */
    border-color: #dcdcdc #dcdcdc white;
    /* border on top, left, right */
    background-color: white;
    position: relative;
    top: 1px;
}

.tabs-content {
    padding: 15px 20px;
    background-color: white;
    font-weight: normal;
    font-size: 14px;
    color: #000;
    line-height: 1.5;
}


/* Add dot before li in tab content */
.tab-content ul li::before {
    content: "• ";
    /* bullet dot */
    color: #000;
    /* dot color */
    font-weight: bold;
}

.tab-content ul li {
    margin-bottom: 0.5rem;
    /* spacing between items */
    margin-left: 34px;
}

.nav-tabs .nav-item {
    margin-right: 1rem;
    /* margin between tabs */
}


.governance-btn {
    width: 100%;
    /* full width */

    margin: 0 auto;
    /* center horizontally */

    font-weight: 600;
    font-size: 1.25rem;
    border: 1px solid #000;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #fff;
    color: #000;
}

.governance-btn:hover {
    background-color: #007bff;
    /* blue background on hover */
    color: #fff;
    /* white text on hover */
}


/* Title */
h4.title {

    margin-bottom: 30px;
    text-align: center;
}

/* Box container for meeting cards */
.meeting-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 15px;
    margin-bottom: 50px;
}

/* Each box */
.meeting-box {
    border: 1px solid #333;
    border-radius: 8px;
    padding: 15px;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s, color 0.3s;
    cursor: pointer;
    user-select: none;
}

/* Hover effect */
.meeting-box:hover {
    background-color: #007bff;
    color: white;
}

/* Table styling */
table.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 50px;
    border-width: 1px !important;
}

table.custom-table th,
table.custom-table td {
    border: 1px solid #ddd;
    padding: 12px 15px;
    text-align: left;
}

table.custom-table th {
    background-color: #f2f2f2;
    font-weight: 700;
}

table.custom-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Bottom buttons container */
.bottom-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.bottom-button {
    border: 1px solid #333;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    user-select: none;
    transition: background-color 0.3s, color 0.3s;
}

.bottom-button:hover {
    background-color: #007bff;
    color: white;
}

/* Icon for bottom buttons */
.bottom-button svg {
    vertical-align: middle;
    margin-right: 6px;
    fill: currentColor;
    width: 18px;
    height: 18px;
}


.program-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 45px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.10);
    border-left: 6px solid #00a3c8;
    transition: 0.4s;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 14px 40px rgba(0, 0, 0, 0.18);
}

.image-box {
    background: linear-gradient(135deg, #d8e1e8, #bfc8d0);
    height: 300px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-box::before {
    content: "";
    width: 180px;
    height: 180px;
    border-radius: 50%;
    position: absolute;
    background: rgba(255, 255, 255, 0.45);
}

.syllabus-btn {
    background: #00a3c8;
    padding: 10px 25px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.syllabus-btn:hover {
    background: #007b9e;
    color: #fff;
}

h2 {
    font-weight: 700;
    letter-spacing: .5px;
}

.bbaadmission img {
    width: 100%;
    /* make images fill their column */
    height: auto;
    /* keep aspect ratio */


}


.paragrap .about-text {
    margin-top: -16%;
}

.bbaname {
    color: blue;
    margin-top: -49px;
}





 /* Left menu buttons */
    .menu-btn {
      background-color: #2f117a;
      color: white;
      font-weight: 600;
      font-size: 13px;
      width: 100%;
      border-radius: 4px;
      border: none;
      padding: 6px;
      margin-bottom: 4px;
      display: block;
      text-align: center;
      text-decoration: none;
      transition: 0.2s;
    }

    .menu-btn:hover {
      background-color: #1d0a53;
      color: #fff;
    }

    /* Main content area */
    .main-content {
      text-align: center;
    }

    .main-content h4 {
      font-weight: 700;
      color: #000;
      margin-bottom: 15px;
    }

    .main-content p {
      font-size: 17px;
      font-weight: 500;
      line-height: 1.5;
    }

    /* Highlight boxes */
    .highlight-box {
      background-color: #ccff00;
      border: 1px solid #000;
      padding: 0px;
      border-radius: 5px;
      font-size: 16px;
      font-weight: 600;
      color: #000;
      margin: 25px auto;
      width: 80%;
    }

    /* Apply button */
    .apply-btn {
      background-color: #6c63e4;
      color: white;
      font-weight: 600;
      font-size: 15px;
      padding: 5px;
      border-radius: 6px;
      display: inline-block;
      text-decoration: none;
      width: 100%;
      margin: 10px auto;
      transition: 0.2s;
    }

    .apply-btn:hover {
      background-color: #5a52d4;
      color: #fff;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .highlight-box, .apply-btn {
        width: 100%;
      }
    }
    .mba-slider .item img {
    border-radius: 8px;
    width: 100%;
    height: 120px; /* 👈 small thumbnail height */
    object-fit: cover;
}
.owl-nav button {
    background: #2f117a !important;
    color: #fff !important;
    border-radius: 50% !important;
    width: 30px;
    height: 30px;
    margin: 0 5px;
}
.owl-dots .owl-dot span {
    background: #6c63e4 !important;
}

    .mba-slider .item {
        height: 200px; /* adjust according to your image height */
        overflow: hidden;
    }

    .mba-slider .item img {
        height: 100%;
        width: auto;
        display: block;
        margin-left: auto;
        margin-right: auto;
        object-fit: contain;
        border-radius: 8px; /* optional */
    }
 .programme-objectives {
        color: black;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .programme-objectives h5 {
        font-weight: bold;
        color: black;
        margin-bottom: 10px;
    }

    .programme-objectives ul {
        list-style-type: disc;     /* round black bullets */
        padding-left: 25px;        /* indent bullets properly */
        margin-bottom: 10px;
    }

    .programme-objectives ul li {
        color: black;              /* bullet + text color */
        font-weight: 600;          /* makes text bold but elegant */
        line-height: 1.7;          /* spacing between lines */
        margin-bottom: 6px;
    }

    .programme-objectives hr {
        border: 1px solid black;   /* black horizontal line */
        margin-top: 10px;
        width: 100%;
    }


    .overview-box {
        border: 1px solid black;
        border-radius: 8px;
        padding: 25px;
        background-color: #fff;
        margin-top: 15px;
    }

    .overview-box h4 {
        font-weight: bold;
        color: black;
        margin-bottom: 15px;
    }

    .overview-box p {
        color: black;
        line-height: 1.6;
        margin-bottom: 10px;
    }



    @media (max-width: 767px) {
        .overview-box {
            padding: 15px;
        }


    }

     .brochure-card {
        display: flex;
        justify-content: center;
        margin-bottom: 30px;
    }

    .brochure-box {
        border: 1px solid #000;
        border-radius: 10px;
        padding: 25px 15px;
        width: 100%;
        background-color: #fff;
        transition: all 0.3s ease-in-out;
    }

    .brochure-box:hover {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        transform: translateY(-3px);
    }

    .brochure-img {
        max-width: 200px;
        height: auto;
        margin-bottom: 20px;
    }

    /* DOWNLOAD BOX – ICON + TEXT IN ONE LINE */
    .download-box {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        border: 1px solid #000;
        border-radius: 10px;
        padding: 15px 25px;
        color: #000;
        text-decoration: none;
        background-color: #fdfdfd;
        transition: 0.3s;
    }

    .download-box:hover {
        background-color: #e6f3ff;
        border-color: #007bff;
        color: #007bff;
    }

    .download-box i {
        font-size: 28px;
        color: #00aaff;
    }

    .download-box span {
        text-align: left;
        font-size: 16px;
        line-height: 1.4;
        color: #000;
    }

    .download-box strong {
        color: #000;
        font-weight: 600;
    }

    @media (max-width: 767px) {
        .brochure-box {
            padding: 20px 10px;
        }

        .download-box {
            flex-direction: column;
            text-align: center;
            gap: 8px;
        }
    }

    /* Heading styling */
.placement-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  display: inline-block;
}

/* Highlighted word setup */
.highlight-word {
  position: relative;
  display: inline-block;
  padding: 2px 6px;
}

/* Circle border effect */
.highlight-word::after {
  content: "";
  position: absolute;
  left: -6px;
  top: -4px;
  width: calc(100% + 12px);
  height: calc(100% + 8px);
  border: 2px solid #007bff;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.3);
  animation: circlePulse 4s ease-in-out infinite; /* total 4s = 2s delay + 2s visible */
}

/* Animation: appears at 2s, disappears, then repeats */
@keyframes circlePulse {
  0%, 40% {
    opacity: 0;
    transform: scale(0.3);
  }
  50%, 70% {
    opacity: 1;
    transform: scale(1);
  }
  80%, 100% {
    opacity: 0;
    transform: scale(0.3);
  }
}

.theme-btn1 {
    font-size: 10px;
    color: var(--color-white);
    padding: 7px 5px;
    transition: var(--transition);
    text-transform: uppercase;
    position: relative;
    border-radius: 42px 50px 50px 0;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    border: none;
    background: var(--theme-color2);
    box-shadow: var(--box-shadow);
    z-index: 1;
}

.imghight{
    height: 264px !important;
    width: 264px !important;
}

 .career-header {
      text-align: center;
      margin-bottom: 50px;
    }

    .career-header h1 {
      font-weight: 800;
      font-size: 2.5rem;
      color: #007BFF;
      margin-bottom: 10px;
    }

    .career-header p {
      font-size: 1.1rem;
      color: #495057;
    }

    .section-title {
      text-align: center;
      margin: 40px 0 20px 0;
      font-size: 1.8rem;
      font-weight: 600;
      color: #343a40;
    }

    .vacancy-card {
      position: relative;
      background-color: #fff;
      border-radius: 15px;
      padding: 25px 20px;
      margin-bottom: 30px;
      transition: all 0.4s ease;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      border: 1px solid #007BFF; /* solid border */
    }

    .vacancy-card i {
      font-size: 2rem;
      color: #007BFF;
      margin-bottom: 15px;
      transition: color 0.4s;
    }

    .vacancy-card strong, .vacancy-card p {
      transition: color 0.4s;
    }

    .vacancy-card strong {
      font-size: 1.1rem;
      color: #343a40;
    }

    .vacancy-card p {
      color: #6c757d;
      font-size: 0.95rem;
      margin: 10px 0 15px 0;
    }

    .vacancy-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 25px rgba(0,0,0,0.15);
      background: linear-gradient(135deg, #007BFF, #00CFFD);
      color: #fff;
      border-color: #0056b3; /* darker border on hover */
    }

    .vacancy-card:hover i,
    .vacancy-card:hover strong,
    .vacancy-card:hover p {
      color: #fff;
    }

    .btn-view {
      display: inline-block;
      padding: 10px 20px;
      background: #007BFF;
      color: #fff;
      border-radius: 8px;
      font-weight: 500;
      text-decoration: none;
      transition: all 0.3s ease;
      text-align: center;
    }

    .btn-view:hover {
      background: linear-gradient(135deg, #00CFFD, #007BFF);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    @media (max-width: 768px) {
      .vacancy-card i {
        font-size: 1.8rem;
      }
      .btn-view {
        width: 100%;
        text-align: center;
      }
    }


     .modal-content {
      background-color: #2a167d;
      border-radius: 27px;

      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .modal-title {
      color: #ff7b8c;
      font-weight: 600;
      text-align: center;
      font-size: 1.6rem;
    }

    .btn-close {
      filter: invert(1);
      opacity: 0.8;
    }

    .input-group-text {
      background-color: #fff;
      border: none;
      color: #ff7b8c;
      font-size: 14px;
    }

    .form-control,
    .form-select {
      border-radius: 8px;
      height: 40px;
      padding-left: 10px;
      font-size: 1rem;
    }

    .form-control:focus,
    .form-select:focus {
      box-shadow: 0 0 0 2px rgba(255, 123, 140, 0.4);
      outline: none;
    }

    .btn-submit {
      background-color: #ff7b8c;
      color: #fff;
      border: none;
      border-radius: 30px;
      font-weight: 600;
      width: 100%;
      height: 45px;
      transition: all 0.3s ease;
      font-size: 1.1rem;
    }

    .btn-submit:hover {
      background-color: #ff5170;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(255, 123, 140, 0.4);
    }

    .form-check-label {
      font-size: 0.9rem;
      color: #322a2a;
    }

    .footer-text {
      text-align: center;
      font-size: 0.9rem;
      margin-top: 10px;
    }

    .footer-text a {
      color: #ff7b8c;
      font-weight: 600;
      text-decoration: none;
    }



    .modal.fade .modal-dialog {
      transform: translateY(-80px);
      transition: transform 0.5s ease-out;
    }

    .modal.fade.show .modal-dialog {
      transform: translateY(0);
    }

    .mb-3 {
      margin-bottom: 1rem !important;
    }


.iqac-btn {
    border: 1px solid #000;
    border-radius: 10px;
    padding: 2px 55px;
    width: 100%;
    max-width: 525px;
    font-weight: bold;

    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .iqac-btn:hover {
    background-color: #2d1973;
    color: #fff;
  }
  .button-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    justify-items: center;
  }


.iqac-btn1 {
    border: 1px solid #000;
    border-radius: 10px;
  padding: 3px 172px;
    width: 100%;

    font-weight: bold;

    background-color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .iqac-btn1:hover {
    background-color: #2d1973;
    color: #fff;
  }


    .syllabus-btn1 {
    display: inline-block;
    background: #00a3c8;
    padding: 10px 25px;
    border-radius: 50px;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;         /* rounded corners */
  }

  .syllabus-btn1:hover {
    background-color: #0056b3;   /* hover effect */
  }

  .governance-btn-new {
    width: 100%;
    margin: 0 auto;
    font-weight: 400;
    font-size: 1.00rem;
    border: 1px solid #000;
    border-radius: 7px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    background-color: #fff;
    color: #000;
}
.governance-btn-new:hover {
    background-color: #007bff;
    /* blue background on hover */
    color: #fff;
    /* white text on hover */
}

.fixed-img {
  width: 100%;
  max-width: 500px; /* keeps images same width */
  height: 300px;    /* fixes height for uniform look */
  object-fit: cover; /* crops slightly but keeps proportions */
  border-radius: 10px;
}  .notification-box {
      margin-bottom: 20px;
      border: 1px solid #ddd;
      border-radius: 8px;
      overflow: hidden; /* Hide any overflow */
    }
    .notification-header {
      background-color: #C8102E;
      color: white;
      padding: 12px 15px;
      font-weight: bold;
      border-radius: 8px 8px 0 0;
    }
    .notification-body {
      background-color: #f8f9fa;
      padding: 15px;
      max-height: 150px; /* Limit the height of the body */
      overflow: hidden; /* Hide anything outside the body */
    }
    .notification-footer {
      padding: 10px;
      text-align: center;
      background-color: #f8f9fa;
    }
    .btn-read-more {
      background-color: #C8102E;
      color: white;
      border: none;
      border-radius: 5px;
      padding: 8px 20px;
      text-transform: uppercase;
    }
    .marquee-container {
      background-color: #C8102E;
      color: white;
      padding: 8px 0;
      font-size: 18px;
      text-align: center;
      height: 80px; /* Set a height for the marquee */
      overflow: hidden; /* Hide the overflow text */
    }
    .marquee {
      display: block;
      font-weight: bold;
      animation: marquee 10s linear infinite;
      line-height: 1.5; /* Make the text line spacing clear */
    }
    @keyframes marquee {
      0% { transform: translateY(100%); }
      100% { transform: translateY(-100%); }
    }
    .notification-body ul {
      list-style: none;
      padding-left: 0;
      margin: 0;
    }
    .notification-body li {
      padding: 8px 0;
      border-bottom: 1px solid #ddd;
    }
    .notification-body li:last-child {
      border-bottom: none;
    }
     /* Section Title */
    h2.section-title {
      color: #e50914;
      font-weight: 700;
      text-align: center;
      margin-bottom: 50px;
      font-size: 2.5rem;
    }

    /* Card Container */
    .explore-card {
      position: relative;
      background-image: url('https://via.placeholder.com/600x400'); /* Replace with your actual image */
      background-size: cover;
      background-position: center;
      border-radius: 10px;
      overflow: hidden;
      height: 200px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: pointer;
    }

    /* Overlay (default dark) */
    .explore-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
      transition: background 0.4s ease;
    }

    /* Hover Effect - Blue Overlay */
    .explore-card:hover::before {
      background: rgba(0, 123, 255, 0.75); /* Bootstrap blue color */
    }

    /* Hover Lift */
    .explore-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    }

    /* Centered Text */
    .explore-card-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #fff;
      text-align: center;
      font-weight: 600;
      font-size: 1.3rem;
      z-index: 2;
      transition: color 0.3s ease;
    }

    /* Optional text color change on hover */
    .explore-card:hover .explore-card-content {
      color: #fff;
    }

    /* Responsive Adjustments */
    @media (max-width: 767px) {
      .explore-card {
        height: 180px;
      }
      .explore-card-content {
        font-size: 1.1rem;
      }
    }
     .audit-section {
            background: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.08);
        }

        .audit-title {
            font-size: 28px;
            font-weight: 700;
            color: #1a237e;
            margin-bottom: 25px;
            border-left: 5px solid #1a237e;
            padding-left: 15px;
        }

        .audit-btn {
            display: block;
            width: 100%;
            background: #1a237e;
            color: #fff;
            padding: 14px 20px;
            border-radius: 8px;
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
        }

        .audit-btn:hover {
            background: #3949ab;
            transform: translateY(-3px);
        }

        .audit-year-card {
            background: #f5f7ff;
            padding: 30px;
            border-radius: 14px;
            margin-bottom: 40px;
            border-left: 6px solid #1a237e;
        }
          /* ---------- Sidebar ---------- */
        .department-sidebar {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        }

        .widget-title {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 700;
            color: #333;
        }

        .category-list a {
            display: block;
            padding: 10px 12px;
            margin-bottom: 8px;
            background: #f7f7f7;
            border-radius: 8px;
            font-size: 15px;
            color: #333;
            transition: .3s;
        }

        .category-list a:hover {
            background: #0d6efd;
            color: #fff;
            padding-left: 18px;
        }

        /* ---------- Buttons ---------- */
        .button-container {
            display: grid;
            grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
            gap: 15px;
        }

        .iqac-btn {
            background: #ffffff;
            padding: 16px 20px;
            text-align: center;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            border: 1.5px solid #0d6efd;
            color: #0d6efd;
            transition: .3s;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .iqac-btn:hover {
            background: #0d6efd;
            color: #fff;
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(13,110,253,0.3);
        }

        /* ---------- Gallery Wrapper ---------- */
        .department-details h3 {
            font-weight: 700;
            font-size: 26px;
            margin-bottom: 20px;
        }

        .enhanced-breadcrumb {
            position: relative;
            background-size: cover !important;
            background-position: center !important;
        }

        .enhanced-breadcrumb:before {
            content: "";
            position: absolute;
            top:0;
            left:0;
            width:100%;
            height:100%;
            background: rgba(0,0,0,0.4);
        }

        .enhanced-breadcrumb .breadcrumb-title,
        .enhanced-breadcrumb .breadcrumb-menu {
            position: relative;
            z-index: 2;
            color: #fff;
        }



        .highlight-box {
            background: #fff7e6;
            border-left: 5px solid #f7a200;
            padding: 12px 18px;
            margin-bottom: 15px;
            border-radius: 5px;
            font-weight: 500;
        }
        .apply-btn {
            display: inline-block;
            background: #004aad;
            color: #fff !important;
            padding: 12px 22px;
            border-radius: 6px;
            margin: 15px 0;
            font-weight: 600;
            transition: 0.3s;
        }
        .apply-btn:hover {
            background: #00347a;
            text-decoration: none;
        }
        .department-sidebar .widget {
            background: #f6f9ff;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 25px;
            border: 1px solid #e3e9ff;
        }
        .category-list a {
            display: block;
            padding: 8px 0;
            font-weight: 500;
            color: #333;
        }
        .category-list a:hover {
            color: #0d6efd;
            padding-left: 5px;
        }
        .department-download a {
            display: block;
            padding: 8px 0;
            color: #222;
            font-weight: 500;
        }
        .department-download a:hover {
            color: #0d6efd;
        }

   table.custom-table {
        width: 100%;
        border-collapse: separate;
        border-spacing: 0;
        border: 1px solid #000;
        border-radius: 2px;
        overflow: hidden;
    }
    table.custom-table th,
    table.custom-table td {
        border: 1px solid #000;
        padding: 8px;
        text-align: center;
    }
    table.custom-table th {
        background: #f2f2f2;
        font-weight: bold;
    }

    .partner-item {
    display: inline-block;
    margin: 5px;
    padding: 5px;
    border: 2px solid #ccc;
    border-radius: 10px;
}
.partner-item img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px; /* optional: rounded image inside div */
}


    .result-btn {
        display: flex;          /* flex for single line */
        align-items: center;    /* vertically center icon and text */
        gap: 10px;              /* spacing between icon and text */
        width: 100%;
        padding: 15px 20px;
        margin: 12px 0;
        background: white;
        color: #222;
        border-radius: 10px;
        border: 2px solid #dcdcdc;
        font-size: 18px;
        font-weight: 600;
        text-decoration: none;
        box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        transition: 0.3s ease;
    }

    .result-btn:hover {
        background: #4b2bb3;
        color: white;
        border-color: #4b2bb3;
        transform: translateY(-3px);
    }

    .pdf-icon {
        font-size: 20px;
    }


.apply-now-global {
           font-family: Poppins, sans-serif;
    position: fixed;
    top: 40%;
    right: -35px;
    transform: rotate(90deg) translate(0, -50%);
    background: #bc1820;
    color: #fff;
    border-radius: 20px;
    border: none;
    padding: 8px 15px;
    min-width: 150px;
    font-size: 15px;
    font-weight: 500;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;

    /* 👇 ADD THESE 2 LINES */
    z-index: 99999 !important;
    pointer-events: auto;
        }


        @media(max-width: 768px){
            .apply-now-global {
                top: 90px;
                right: 10px;
                padding: 10px 20px;
                font-size: 16px;
            }
        }



        .apply-now-global1 {
    font-family: Poppins, sans-serif;
    position: fixed;
    top: 40%;
    left: -35px; /* moved to left */
    transform: rotate(-90deg) translate(0, -50%); /* rotate the opposite way */
    background: #bc1820;
    color: #fff;
    border-radius: 20px;
    border: none;
    padding: 8px 15px;
    min-width: 150px;
    font-size: 15px;
    font-weight: 500;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;

    z-index: 99999 !important;
    pointer-events: auto;
}

@media(max-width: 768px){
    .apply-now-global1 {
        top: 90px;
        left: 10px; /* adjust for mobile */
        padding: 10px 20px;
        font-size: 16px;
        transform: rotate(0deg); /* optional: make it horizontal on mobile */
    }
}

/* COMMON STYLE FOR LEFT SIDE BUTTONS */
.apply-now-global1,
.apply-now-global2 {
    font-family: Poppins, sans-serif;
    position: fixed;
    left: -55px; /* Move slightly out of screen for tab effect */
    transform: rotate(-90deg);
    background: #bc1820;
    color: #fff;
    border-radius: 20px;
    border: none;
    padding: 8px 15px;
    min-width: 150px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    z-index: 99999;
}

/* FIRST BUTTON — TOP ONE */
.apply-now-global1 {
    top: 40%;
}

/* SECOND BUTTON — JUST BELOW FIRST ONE */
.apply-now-global2 {
    top: 69%;
    background: #bc1820; /* Optional: different color */
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px){
    .apply-now-global1,
    .apply-now-global2 {
        transform: rotate(0);
        left: 10px;
        padding: 10px 20px;
        min-width: auto;
        height: auto;
        font-size: 16px;
    }

    .apply-now-global1 {
        top: 100px;
    }

    .apply-now-global2 {
        top: 155px;
    }
}



        /* Menu background color and text styling */
.main-navigation {
    background: #bc1820 !important;
}

.navbar-nav .nav-link {
    color: white !important;
}

.navbar-nav .nav-link:hover {
    color: white !important;
}

.navbar-brand {
    color: white !important;
}

.dropdown-menu {
    background: #bc1820 !important;
}

.dropdown-menu .dropdown-item {
    color: white !important;
}

.dropdown-menu .dropdown-item:hover {
    background: #a01619 !important;
    color: white !important;
}
/* About Section Styles */
.about-area {
    padding: 60px 0; /* Add padding to the top and bottom of the section */
}

/* Image Styling */
.rounded-image {
    width: 100%; /* Make sure the image takes full width of its container */
    border-radius: 15px; /* Add rounded corners to the image */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow to the image */
    margin-bottom: 20px; /* Add space below the image */
}

/* About Text Styling */
.about-text {
    font-size: 1.1rem; /* Increase font size for better readability */
    line-height: 1.8; /* Increase line height to add spacing between lines */
    color: #333; /* Ensure text is dark for good contrast */
    margin-bottom: 20px; /* Space after paragraphs */
}

/* Adjusting the Spacing Between Image and Text */
.about-right {
    padding-left: 30px; /* Add some space between the image and text */
}

.site-heading {
    margin-bottom: 15px; /* Space between the title and the paragraph */
}

.site-title-tagline {
    font-size: 1.2rem; /* Title font size */
    color: #5c5c5c; /* Lighter color for the tagline */
    font-weight: normal;
}

/* View More Button */
.theme-btn {
    background-color: #007bff; /* Add a blue background for the button */
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.theme-btn:hover {
    background-color: #0056b3; /* Darker blue when hovered */
}

/* Custom CSS for toasts */
.toast-top-center {
  position: fixed !important;
  top: 20px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  z-index: 9999;
}

.toast {
  margin-bottom: 10px;
}

.toast-message {
  font-size: 14px; /* Adjust font size if needed */
}

    .placements-section {
        text-align: center;
        padding: 50px 20px;
    }

    .placements-section h1 {
        font-size: 36px;
        margin-bottom: 10px;
    }

    .placements-section h3 {
        color: #8b0000;
        font-size: 18px;
        font-weight: 600;
        margin-top: 0;
    }

    .tagline {
        font-size: 20px;
        color: #bf0000;
        margin: 20px 0;
    }

    .description {
        max-width: 800px;
        margin: 0 auto;
        font-size: 16px;
        color: #444;
        line-height: 1.6;
    }

    /* Stronger Top Line */
    .top-line {
        width: 100%;
        border-top: 2px solid #b10000;
        margin: 40px 0;
    }

    .stats-container {
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: nowrap;
    }

    .stat-box {
        flex: 1;
        padding: 30px 10px;
        border-right: 2px solid #c8c8c8;
    }

    .stat-box:last-child {
        border-right: none;
    }

    .stat-value {
        font-size: 32px;
        color: #c00000;
        font-weight: bold;
    }

    .stat-label {
        margin-top: 10px;
        font-size: 15px;
        color: #555;
    }

    @media (max-width: 768px) {
        .stats-container {
            flex-direction: column;
        }

        .stat-box {
            border-right: none;
            border-bottom: 2px solid #c8c8c8;
        }

        .stat-box:last-child {
            border-bottom: none;
        }
    }

    .explore-card {
    background-size: cover;
    background-position: center;
    height: 200px;
    border-radius: 8px;
}



    .container22 {
        width: 90%;
        max-width: 1300px;
        margin: auto;
        padding: 30px 0;
    }

    .grid-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }

    .card {
        background: #fff;
        border-radius: 6px;
        overflow: hidden;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .card img {
        width: 100%;
        height: 210px;
        object-fit: cover;
    }

    .card:hover {
        transform: scale(1.03);
    }

    .title {
        padding: 10px 5px;
        font-size: 12px;
        font-weight: 600;
        color: #333;
        text-align: left;
        margin: 0; /* remove p-tag default margin */
    }

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

    @media (max-width: 600px) {
        .grid-container {
            grid-template-columns: repeat(1, 1fr);
        }
    }
/* Background for full section */
.attractive-team {
    background: linear-gradient(135deg, #eef2f3, #ffffff);
}

/* Subtitle */
.team-subtitle {
    font-size: 16px;
    font-weight: 600;
    color: #ff5f6d;
}

/* Main title */
.team-title {
    font-weight: 700;
    font-size: 32px;
}

/* Light description */
.team-desc {
    color: #666;
    margin-top: 8px;
}

/* Premium Glass Card */
.staff-card-glass {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    box-shadow: 0 12px 25px rgba(0,0,0,0.10);
    transition: all 0.4s ease;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

/* Default Gradient Border (Always Visible) */
.staff-card-glass::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
    border-radius: 20px;
    background: linear-gradient(45deg, #ff5f6d, #ffc371);
    opacity: 1; /* ← Always visible now */
    transition: 0.4s;
}



/* Image Style - Rounded and Equal Size */
.staff-card-glass img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 14px;
    transition: transform 0.4s ease;
}

/* Name */
.staff-card-glass h6 {
    margin-top: 15px;
    font-size: 17px;
    font-weight: 700;
    color: #333;
}

/* Position */
.staff-card-glass p {
    color: #0a0a0a;
    font-size: 14px;
    margin-bottom: 0;
}

/* Hover FX */
.staff-card-glass:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

/* Activate gradient border */
.staff-card-glass:hover::before {
    opacity: 1;
}

/* Image zoom */
.staff-card-glass:hover img {
    transform: scale(1.07);
}
 :root { --accent: #b22222; }

  /* NEW CLASS */
  .pm-area-box { padding: 40px 0; }

  .pm-title-head {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
  }

  .pm-frame-box {
    border: 4px solid var(--accent);
    padding: 5px;
    background: #fff;
  }

  .pm-slide-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
  }

  .owl-dots,
  .owl-nav {
    display: none !important;
  }



  /* ---------- LEFT BIG VIDEO BLOCK ---------- */
.big-video-box {
    position: relative;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
}

.big-video-box iframe {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.big-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
}

/* Play Button */
.play-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    cursor: pointer;
}

/* ---------- RIGHT SMALL BLOCKS ---------- */
.right-box {
    position: relative;
    height: 240px;
    border-radius: 5px;
    overflow: hidden;
}

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

.right-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
}

/* Buttons */
.red-btn {
    color: #ff1b1b;
    font-weight: 600;
    text-decoration: none;
}

.red-btn i {
    margin-left: 5px;
}


.ts-testimonial-area {

    background: #f4f4f9;
}

.ts-site-heading {
    text-align: center;
    margin-bottom: 50px;
}

.ts-site-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

/* -------------------- CARD DESIGN -------------------- */
.ts-testi-card {
     background: linear-gradient(135deg, #dcd2d2, #f8f0ee);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s, box-shadow 0.3s;
}

.ts-testi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.ts-testi-rate i {
    color: #ffdd57;
    font-size: 18px;
    margin: 0 3px;
}

.ts-testi-quote p {
    font-size: 16px;
    color: #333;
    margin: 20px 0;
    line-height: 1.6;
    height: auto;
}

.ts-testi-author h5 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.ts-testi-author span, .ts-testi-author p {
    font-size: 15px;
    color: #555;
}

/* -------------------- DOT STYLE -------------------- */
.ts-owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: #bbb !important;
}

.ts-owl-dots .owl-dot.active span {
    background: #ff1b1b !important;
}
