




.carousel-item {
    height: 800px;
}

.carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


@media (max-width: 991px){
    .carousel-item{
        height: 400px;   /* tablet */
    }
}

@media (max-width: 576px){
    .carousel-item{
        height: 250px;   /* mobile */
    }
}








.about-section{
padding:100px 0;
background:#f8f8f8;
}

.about-img img{
width:100%;
border-radius:10px;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
}

.about-tag{
color:#2e2f77 !important;
font-weight:600;
letter-spacing:1px;
margin-bottom:10px;
}

.about-title{
font-size:31px;
font-weight:700;
margin-bottom:20px;
}

.about-text{
color:#555;
line-height:1.8;
}

.about-btn{
background:#2e2f77 !important;
color:white;
padding:12px 30px;
border:none;
margin-top:20px;
}

.about-btn:hover{
background:#2e2f77 !important;
} 

/* SECTION SPACING */
.about-section {
  padding: 80px 0;
}

/* EQUAL HEIGHT ROW */
.about-row {
  display: flex;
  align-items: stretch;
}
.about-title{
font-size:31px;
font-weight:700;
margin-bottom:20px;
}
/* IMAGE SIDE */
.about-img {
  height: 550px;
  overflow: hidden;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* CONTENT SIDE */
.about-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 30px;
}

/* SCROLL AREA (IMPORTANT FOR LONG CONTENT) */
.about-scroll {
  overflow-y: auto;
  max-height: 400px;
  padding-right: 10px;
}

/* TEXT */
.about-text {
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* TAG */
.about-tag {
  color: #ff6600;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* BUTTON */
.about-btn {
  margin-top: 20px;
  padding: 10px 25px;
  background: #ff6600;
  color: #fff;
  border: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: #e65c00;
}

/* SCROLLBAR DESIGN */
.about-scroll::-webkit-scrollbar {
  width: 5px;
}

.about-scroll::-webkit-scrollbar-thumb {
  background: #ff6600;
}

/* MOBILE FIX */
@media (max-width: 991px) {
  .about-row {
    display: block;
  }

  .about-img {
    height: auto;
    margin-bottom: 20px;
  }

  .about-scroll {
    max-height: none;
  }

  .about-content {
    padding-left: 18px;
    text-align: justify;
    
  }
  .about-title {
    font-size: 28px;
  }
  
}





/* SECTION BACKGROUND */
.pgdm-section {
    background: #f8f9fa;
}

/* TITLE */
.pgdm-title {
    font-size: 36px;
    font-weight: 700;
    color: #2e2f77;
}

.pgdm-subtitle {
    color: #777;
    font-size: 16px;
}

/* CARD DESIGN */
.pgdm-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    transition: 0.3s;
}

/* HOVER EFFECT */
.pgdm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* CARD TITLE */
.pgdm-card h4 {
    color: #2e2f77;
    margin-bottom: 15px;
}

/* LIST */
.pgdm-card ul {
    padding-left: 18px;
    color: #555;
}

.pgdm-card ul li {
    margin-bottom: 8px;
}




/* SECTION */
/* .academic-section {
    background: #f8f9fa;
} */


/* PREMIUM BACKGROUND */
.academic-section {
    position: relative;
    background: linear-gradient(135deg, #eef1ff, #f8f9fa);
    overflow: hidden;
}

/* FLOATING SHAPES */
.academic-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(46,47,119,0.08);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.academic-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(244,180,0,0.15);
    border-radius: 50%;
    bottom: -80px;
    right: -80px;
}

/* OPTIONAL GRID PATTERN */
.academic-section .container {
    position: relative;
    z-index: 2;
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2e2f77;
}

.section-subtitle {
    color: #666;
}

/* TIMELINE */
.timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

/* CENTER LINE */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background: #2e2f77;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

/* ITEM */
.timeline-item {
    padding: 20px 30px;
    position: relative;
    width: 50%;
}

/* LEFT */
.timeline-item.left {
    left: 0;
}

/* RIGHT */
.timeline-item.right {
    left: 50%;
}

/* CONTENT BOX */
.timeline-item .content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* HOVER */
.timeline-item .content:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* DOT */
.timeline-item::before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    right: -8px;
    background: #2e2f77;
    border-radius: 50%;
    top: 30px;
    z-index: 1;
}

.timeline-item.right::before {
    left: -8px;
}

/* TEXT */
.timeline-item h4 {
    color: #2e2f77;
    margin-bottom: 5px;
}

.timeline-item p {
    font-size: 14px;
    color: #555;
}

/* RESPONSIVE */
@media screen and (max-width: 768px) {

    .timeline::after {
        left: 10px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 30px;
        padding-right: 15px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item::before {
        left: 0;
    }
}









/* SECTION BACKGROUND */
.admissions-section {
    background: linear-gradient(135deg, #ffffff, #eef1ff);
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2e2f77;
}

.section-subtitle {
    color: #666;
}

/* LEFT BOX */
.admission-box {
    background: #fff;
    padding: 25px;
    border-left: 5px solid #2e2f77;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.admission-box h4 {
    color: #2e2f77;
    margin-bottom: 15px;
}

.admission-box ul {
    padding-left: 18px;
    color: #555;
}

/* PROCESS BOX */
.process-box {
    background: #2e2f77;
    color: #fff;
    padding: 25px;
    border-radius: 10px;
}

.process-box h4 {
    margin-bottom: 20px;
}

/* STEPS */
.step {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.step span {
    background: #f4b400;
    color: #000;
    font-weight: bold;
    padding: 8px 12px;
    border-radius: 50%;
    margin-right: 15px;
}

/* HIGHLIGHT BOX */
.highlight-box {
    background: #f4b400;
    padding: 20px;
    border-radius: 10px;
    color: #000;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}















/* BACKGROUND */
.campus-section {
    background: linear-gradient(135deg, #f8f9fa, #eef1ff);
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2e2f77;
}

.section-subtitle {
    color: #666;
}

/* IMAGE */
.campus-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.campus-image img {
    width: 100%;
    border-radius: 15px;
    transition: 0.4s;
}

/* HOVER ZOOM */
.campus-image:hover img {
    transform: scale(1.05);
}

/* OVERLAY */
.overlay-box {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(46,47,119,0.9);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
}

/* CONTENT */
.campus-content h4 {
    color: #2e2f77;
    margin-bottom: 15px;
}

/* FEATURES */
.feature {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.feature span {
    font-size: 20px;
    margin-right: 10px;
}

.feature p {
    margin: 0;
    color: #555;
}

/* HOVER EFFECT */
.feature:hover {
    transform: translateX(5px);
    transition: 0.3s;
}




/* BACKGROUND */
.governance-section {
    background: linear-gradient(135deg, #eef1ff, #ffffff);
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2e2f77;
}

.section-subtitle {
    color: #666;
}

/* BLOCK DESIGN */
.gov-block {
    background: #fff;
    padding: 20px 25px;
    margin-bottom: 20px;
    border-left: 5px solid #2e2f77;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* HOVER */
.gov-block:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* TEXT */
.gov-block h4 {
    color: #2e2f77;
    margin-bottom: 5px;
}

.gov-block p {
    color: #555;
    font-size: 14px;
}

/* COMMITTEE SECTION */
.committee-section h4 {
    color: #2e2f77;
}

/* COMMITTEE ITEMS */
.committee-item {
    background: #2e2f77;
    color: #fff;
    padding: 10px 20px;
    margin: 8px;
    border-radius: 25px;
    font-size: 14px;
    transition: 0.3s;
}

/* HOVER */
.committee-item:hover {
    background: #f4b400;
    color: #000;
}







/* BACKGROUND */
.student-section {
    background: linear-gradient(135deg, #2e2f77, #4a4ccf);
    color: #fff;
}

/* TITLE */
.student-section .section-title {
    font-size: 36px;
    font-weight: 700;
}

.student-section .section-subtitle {
    color: #ddd;
}

/* BOX */
.student-box {
    padding: 25px 10px;
    border-radius: 12px;
    transition: 0.4s;
    position: relative;
}

/* ICON */
.student-box i {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

/* TEXT */
.student-box p {
    margin: 0;
    font-size: 14px;
}

/* HOVER EFFECT */
.student-box:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-8px);
}

/* GLOW EFFECT */
.student-box:hover i {
    color: #f4b400;
    transform: scale(1.2);
}










/* BACKGROUND */
.research-section-home {
    background: linear-gradient(135deg, #ffffff, #eef1ff);
}

/* TITLE */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2e2f77;
}

.section-subtitle {
    color: #666;
}

/* ITEM */
.research-item {
    margin-bottom: 20px;
}

.research-item h5 {
    margin-bottom: 8px;
    color: #2e2f77;
}

/* PROGRESS BAR */
.progress {
    height: 8px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: #2e2f77;
    width: 0;
    transition: width 1s ease-in-out;
}

/* ANIMATION ON LOAD */
.research-section .progress-bar {
    animation: loadBar 1.5s ease forwards;
}

@keyframes loadBar {
    from { width: 0; }
}

/* RIGHT CONTENT */
.research-content {
    background: #2e2f77;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
}

.research-content h4 {
    margin-bottom: 10px;
}



/*inner page css start*/


/* .overview-section {
    background: linear-gradient(135deg, #f8f9fa, #eef1ff);
}


.overview-text h2,
.overview-text h3 {
    color: #2e2f77;
    margin-bottom: 15px;
}

.overview-text p {
    color: #555;
    line-height: 1.7;
}


.overview-img {
    overflow: hidden;
    border-radius: 15px;
}

.overview-img img {
    width: 100%;
    border-radius: 15px;
    transition: 0.4s;
}


.overview-img:hover img {
    transform: scale(1.05);
}


.overview-highlight {
    background: #2e2f77;
    color: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-top: 15px;
}


.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeLeft 1s forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeRight 1s forwards;
}

@keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    to { opacity: 1; transform: translateX(0); }
} */


/* ABOUT MAIN */
.about-main {
  padding: 4px 0;
  background: #fff;
}

.section-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #222;
  /*border-left: 5px solid #ffc62d;*/
  padding-left: 10px;
}

.about-main p {
  margin-bottom: 18px;
  line-height: 1.7;
  color: #555;
}

/* VISION MISSION */
.vision-mission {
  background: #f4f6f9;
  padding: 60px 0;
}

.vm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.vm-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.vm-card:hover {
  transform: translateY(-5px);
}

.vm-card h3 {
  margin-bottom: 15px;
  color: #ff6600;
}

.vm-card p {
  color: #555;
  line-height: 1.6;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .vm-grid {
    grid-template-columns: 1fr;
  }

 
}





/* HERO */
.location-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1505761671935-60b3a7427bad');
    background-size: cover;
    padding: 100px 20px;
}

/* SECTION */
.location-page {
    background: linear-gradient(135deg, #f8f9fa, #eef1ff);
}

/* TEXT */
.location-page h3 {
    color: #2e2f77;
    margin-bottom: 10px;
}

.location-page p {
    color: #555;
    line-height: 1.7;
}

/* IMAGE */
/* CONTROL IMAGE SIZE */
.location-page img {
    width: 100%;
    height: 260px;          /* 🔥 reduce height */
    object-fit: cover;      /* keeps image proper */
    border-radius: 12px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.location-page img:hover {
    transform: scale(1.03);
}

/* HIGHLIGHT */
.highlight-section {
    background: #2e2f77;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
}

/* SUMMARY */
.summary-box {
    background: linear-gradient(135deg, #f4b400, #ffd95c);
    padding: 30px;
    border-radius: 12px;
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeLeft 1s forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeRight 1s forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    to { opacity: 1; transform: translateX(0); }
}







/* SECTION */
.acad-ops-section {
    background: linear-gradient(135deg, #eef2ff, #ffffff);
}

/* TITLE */
.acad-title {
    font-size: 34px;
    font-weight: 700;
    color: #2e2f77;
}

.acad-subtitle {
    color: #666;
}

/* PANEL */
.acad-panel {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    border-left: 6px solid #2e2f77;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* BOX */
.acad-box {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

/* LEFT ACCENT LINE */
.acad-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 5px;
    background: #f4b400;
}

/* TEXT */
.acad-box h4 {
    color: #2e2f77;
    margin-bottom: 10px;
}

.acad-box ul {
    padding-left: 18px;
}

/* IMAGE */
.acad-image {
    border-radius: 12px;
    overflow: hidden;
}

.acad-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: 0.3s;
}

.acad-image:hover img {
    transform: scale(1.05);
}

/* POINTS STYLE */
.acad-points {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.point {
    background: #2e2f77;
    color: #fff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    transition: 0.3s;
}

.point:hover {
    background: #f4b400;
    color: #000;
}



.acad-panel {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(8px);
    padding: 25px;
    border-radius: 12px;
    border-left: 5px solid #2e2f77;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.acad-panel h4 {
    color: #2e2f77;
    margin-bottom: 10px;
}

.acad-panel p {
    color: #555;
    line-height: 1.7;
}

.acad-panel ul {
    padding-left: 18px;
    margin-bottom: 10px;
}

.acad-panel ul li {
    margin-bottom: 6px;
}







/* SECTION */
.industry-page {
    background: linear-gradient(135deg, #eef1ff, #ffffff);
}

/* TITLE */
.industry-title {
    font-size: 36px;
    font-weight: 700;
    color: #2e2f77;
}

.industry-subtitle {
    color: #666;
}

/* BOX */
.industry-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

/* HOVER */
.industry-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* TITLE */
.industry-box h4 {
    color: #2e2f77;
    margin-bottom: 10px;
}

/* TEXT */
.industry-box ul {
    padding-left: 18px;
}

.industry-box ul li {
    margin-bottom: 6px;
}

/* SOURCE */
.source {
    font-size: 12px;
    color: #888;
    position: absolute;
    bottom: 15px;
    right: 20px;
}

/* COMPLIANCE BOX */

.industry-compliance {
    background: linear-gradient(135deg, #2e2f77, #4a4cc7);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ICON */
.compliance-icon {
    width: 80px;
    height: 80px;
    background: #ffffff1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.compliance-icon i {
    font-size: 32px;
    color: #f4b400;
}

/* TITLE */
.industry-compliance h4 {
    font-weight: 600;
}

/* HIGHLIGHT TEXT */
.highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: #f4b400;
}

/* TAG STYLE POINTS */
.compliance-points {
    margin-top: 10px;
}

.compliance-points span {
    display: inline-block;
    background: #ffffff1a;
    padding: 8px 14px;
    border-radius: 20px;
    margin-right: 8px;
    margin-top: 5px;
    font-size: 13px;
    transition: 0.3s;
}

.compliance-points span:hover {
    background: #f4b400;
    color: #000;
}




/* SECTION BACKGROUND */
.faculty-page {
    background: linear-gradient(135deg, #eef1ff, #ffffff);
}

/* TITLE */
.faculty-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #2e2f77;
}

.faculty-subtitle {
    color: #666;
}

/* INTRO BOX */
.faculty-intro-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    border-left: 5px solid #2e2f77;
}

/* BLOCK */
.faculty-block {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.4s;
}

/* HOVER */
.faculty-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* HEADINGS */
.faculty-block h4 {
    color: #2e2f77;
    margin-bottom: 10px;
}

/* LIST */
.faculty-block ul {
    padding-left: 18px;
}

.faculty-block ul li {
    margin-bottom: 6px;
}

/* HIGHLIGHT */
.faculty-highlight {
    background: #2e2f77;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

/* ANIMATIONS */
.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeLeft 1s forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeRight 1s forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

@keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}




/* SECTION */
.admissions-section {
    background: linear-gradient(135deg, #f4f6ff, #ffffff);
}

/* TITLE */
.admission-title {
    font-size: 36px;
    font-weight: 700;
    color: #2e2f77;
}

.admission-subtitle {
    color: #777;
}

/* CARD */
.admission-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border-left: 4px solid #2e2f77;
}

/* ================= PROCESS ================= */
.process-steps {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step1 {
    background: #fff;
    padding: 18px 15px;
    border-radius: 12px;
    width: 220px; /* FIX WIDTH */
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* HOVER */
.step1:hover {
    transform: translateY(-6px);
}

/* STEP NUMBER */
.step1 span {
    display: inline-block;
    width: 38px;
    height: 38px;
    background: #2e2f77;
    color: #fff;
    border-radius: 50%;
    line-height: 38px;
    font-weight: bold;
    margin-bottom: 8px;
}

/* ================= BOX ================= */
.admission-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border-left: 4px solid #2e2f77;
    transition: 0.3s;
}

.admission-box:hover {
    transform: translateY(-6px);
}

/* ================= DIGITAL ================= */
.admission-card p {
    margin-bottom: 0;
}

/* ================= COMPLIANCE (FIXED) ================= */
.admission-compliance {
    background: linear-gradient(135deg, #2e2f77, #4043a8);
    color: #fff;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* HIGHLIGHT */
.admission-compliance .highlight {
    color: #ffcc00;
    font-weight: 600;
    margin-bottom: 10px;
}

/* LIST FIX */
.admission-compliance ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.admission-compliance ul li {
    margin: 6px 0;
    position: relative;
    padding-left: 18px;
}

/* CUSTOM BULLET */
.admission-compliance ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #ffcc00;
    font-size: 12px;
}

/* ================= ANIMATION FIX ================= */
.fade-left,
.fade-right,
.fade-up {
    opacity: 1;
    transform: none;
    animation: none;
}







/* SECTION */
.campus-section {
    background: linear-gradient(135deg, #f4f6ff, #ffffff);
}

/* TITLE */
.campus-title {
    font-size: 38px;
    font-weight: 700;
    color: #2e2f77;
}

.campus-subtitle {
    color: #777;
}

/* TEXT */
.campus-text h3 {
    color: #2e2f77;
    margin-bottom: 15px;
}

.campus-text p {
    color: #555;
    line-height: 1.7;
}

/* IMAGE */
.campus-img {
    overflow: hidden;
    border-radius: 15px;
}

.campus-img img {
    width: 100%;
    height: 260px; /* controlled height */
    object-fit: cover;
    transition: 0.4s;
}

.campus-img:hover img {
    transform: scale(1.05);
}

/* HIGHLIGHT */
.campus-highlight {
    background: #2e2f77;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-top: 15px;
}

/* CARD */
.campus-card {
    background: #fff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.3s;
}

.campus-card:hover {
    transform: translateY(-6px);
}

/* LIST */
.campus-list {
    list-style: none;
    padding: 0;
}

.campus-list li {
    margin: 10px 0;
    color: #444;
}

.campus-list i {
    color: #2e2f77;
    margin-right: 8px;
}

/* FINAL */
.campus-final {
    background: linear-gradient(135deg, #2e2f77, #4043a8);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

/* ANIMATION */
.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeLeft 1s forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeRight 1s forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

@keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}





/* SECTION */
.governance-section {
    background: linear-gradient(135deg, #f4f6ff, #ffffff);
}

/* TITLE */
.gov-title {
    font-size: 38px;
    font-weight: 700;
    color: #2e2f77;
}

.gov-subtitle {
    color: #777;
}

/* TIMELINE */
.gov-timeline {
    position: relative;
    margin: 40px 0;
}

.gov-timeline::before {
    content: "";
    position: absolute;
    width: 4px;
    background: #2e2f77;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ITEMS */
.gov-item {
    position: relative;
    width: 50%;
    padding: 20px;
}

.gov-item.left {
    left: 0;
    text-align: right;
}

.gov-item.right {
    left: 50%;
}

/* CARD */
.gov-card {
    background: rgba(255,255,255,0.9);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
}

/* BOX */
.gov-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.gov-box:hover {
    transform: translateY(-5px);
}

/* FINAL */
.gov-final {
    background: linear-gradient(135deg, #2e2f77, #4043a8);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

/* ANIMATION */
.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fadeLeft 1s forwards;
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fadeRight 1s forwards;
}

.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s forwards;
}

@keyframes fadeLeft {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}







/* SECTION */
.student-life-section {
    background: linear-gradient(135deg, #f4f6ff, #ffffff);
}

/* TITLE */
.sl-title {
    font-size: 38px;
    font-weight: 700;
    color: #2e2f77;
}

.sl-subtitle {
    color: #777;
}

/* CARD */
.sl-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    border-bottom: 4px solid #2e2f77;
}

.sl-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* FINAL */
.sl-final {
    background: linear-gradient(135deg, #2e2f77, #4043a8);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}




/* SECTION */
.research-section {
    background: linear-gradient(135deg, #1a1c3b, #2e2f77);
    color: #fff;
}

/* TITLE */
.research-title {
    font-size: 40px;
    font-weight: 700;
}

.research-subtitle {
    color: #ccc;
}

/* CARD */
.research-card {
    background: rgba(255,255,255,0.08);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    border: 1px solid rgba(255,255,255,0.1);
}

/* HOVER GLOW */
.research-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* HIGHLIGHT */
.research-highlight {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #000;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}








/* SECTION */
.contact-section {
    background: linear-gradient(135deg, #f4f6ff, #ffffff);
}

/* TITLE */
.contact-title {
    font-size: 38px;
    font-weight: 700;
    color: #2e2f77;
}

.contact-subtitle {
    color: #777;
}

/* INFO BOX */
.contact-info {
    background: #2e2f77;
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    height: 100%;
}

.contact-info h4 {
    margin-top: 20px;
    font-weight: 600;
}

/* FORM */
.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* INPUT */
.contact-form .form-control {
    border-radius: 10px;
    padding: 12px;
    border: 1px solid #ddd;
}

.contact-form .form-control:focus {
    border-color: #2e2f77;
    box-shadow: none;
}

/* BUTTON */
.contact-btn {
    background: #2e2f77;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    border: none;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #4043a8;
}

/* MAP */
.contact-map iframe {
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}






/* SECTION */
.chairman-section {
  padding: 80px 0;
  background: #f5f7fa;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.chairman-card {
  display: flex;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* IMAGE */
.chairman-img {
  width: 40%;
  min-height: 450px;
}

.chairman-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.chairman-content {
  width: 90%;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

/* TAG */
.chairman-tag {
  color: #ff6600;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 14px;
}

/* NAME */
.chairman-name {
  font-size: 28px;
  margin-bottom: 5px;
  color: #222;
}

/* TITLE */
.chairman-title {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

/* TEXT AREA */
.chairman-text {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 10px;
}

/* TEXT */
.chairman-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 15px;
}

/* SIGNATURE */
.signature {
  font-weight: bold;
  color: #222;
}

/* SCROLLBAR */
.chairman-text::-webkit-scrollbar {
  width: 5px;
}

.chairman-text::-webkit-scrollbar-thumb {
  background: #ff6600;
}

/* BUTTON */
.read-more-btn {
  margin-top: 20px;
  align-self: flex-start;
  border: 2px solid #2e2f77;
  background: transparent;
  padding: 10px 20px;
  color: #2e2f77;
  cursor: pointer;
  transition: 0.3s;
}

.read-more-btn:hover {
  background: #2e2f77;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .chairman-card {
    flex-direction: column;
  }

  .chairman-img {
    width: 100%;
    height: 250px;
  }

  .chairman-content {
    width: 100%;
    padding: 20px;
  }

  .chairman-text {
    max-height: none;
  }
}

/* responsive */



