/* Emblem Starts */

/* ===== RESET ===== */

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
    color: #000;
}

/* ===== FULL WIDTH SECTION ===== */

.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

/* Remove theme width restriction safely */

.container,
.region-content,
.layout-content,
.main-content,
.page-content,
.block-system-main-block {
    max-width: 100% !important;
    width: 100% !important;
}

/* ===== MAIN FLEX LAYOUT ===== */

.content {
    display: flex;
    align-items: center;          /* perfect vertical alignment */
    justify-content: flex-start;
    gap: 25px;                    /* improved spacing */
    width: 100%;
    padding: 10px 15px;           /* breathing space */
    box-sizing: border-box;
}

/* ===== LEFT IMAGE ===== */

.left {
    flex: 0 0 220px;              /* slightly larger emblem space */
    text-align: center;
}

.badge {
    max-width: 200px;             /* slightly larger image */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 8px;
}

.years {
    font-size: 16px;
    color: #333;
}

/* ===== RIGHT TEXT ===== */

.right {
    flex: 1;
}

.description {
    font-size: 17px;              /* slightly larger text */
    line-height: 1.65;            /* better readability */
    text-align: justify;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {

    .content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .left {
        flex: none;
    }

    .badge {
        max-width: 170px;
    }

    .description {
        font-size: 16px;
        line-height: 1.6;
        padding: 0 12px;
    }
}

/* Emblem Ends */

/*Slider Starts*/
/* ===== DLIS FULL WIDTH SLIDER FIXED ===== */

.dlis-slider {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* Make it full width even inside container */
.dlis-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Slides */
.dlis-slides {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.dlis-slides img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
}

/* Arrow buttons */
.dlis-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    
    width: 55px;
    height: 55px;

    background: rgba(0,0,0,0.45);
    color: #ffffff;

    border: none;
    border-radius: 50%;

    font-size: 26px;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 1000;

    transition: all 0.3s ease;
}

/* Proper side spacing */
.dlis-prev {
    left: 30px;
}

.dlis-next {
    right: 30px;
}

.dlis-slider:hover .dlis-arrow {
    opacity: 1;
}

.dlis-arrow:hover {
    background: rgba(0,0,0,0.85);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .dlis-slider {
        height: 280px;
    }

    .dlis-slides img {
        height: 280px;
    }

    .dlis-prev { left: 15px; }
    .dlis-next { right: 15px; }
}
/*Slider Ends*/

/*Glance Starts*/
    body {
        margin: 0;
        font-family: Arial, Helvetica, sans-serif;
    }

    .stats-section {
        background-color: #ef3338;
        padding: 40px 0;
    }

    .stats-container {
        max-width: 1400px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        text-align: center;
        color: #ffffff;
    }

    .stat-box {
        flex: 1;
        padding: 10px;
    }

    .stat-number {
        font-size: 36px;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .stat-text {
        font-size: 16px;
        line-height: 1.4;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .stats-container {
            flex-direction: column;
        }

        .stat-box {
            margin-bottom: 20px;
        }
    }
/*Glance Ends*/

/*About Starts Here*/

/* ===== DLIS VIRTUAL TOUR FULL WIDTH ===== */

body {
    margin: 0;
    padding: 0;
}

/* FULL WIDTH SECTION */
.dlis-virtual-section {
    width: 100%;
    margin: 0;
    padding: 60px 80px;
    box-sizing: border-box;

    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.dlis-left {
    flex: 1;
    display:flex;
    flex-direction:column;
    justify-content:center;   /* vertical centering */
}

.dlis-left h2 {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 20px;
}

.dlis-left p {
    font-size: 17px;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 30px;
}

/* BUTTON */
.dlis-read-more-btn,
.dlis-tour-btn {
    background-color: #532d7f;
    color: white;
    padding: 12px 22px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    transition: 0.3s ease;
}

.dlis-read-more-btn:hover,
.dlis-tour-btn:hover {
    background-color: #6a3ca3;
}

/* RIGHT SIDE */
.dlis-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

/* VIDEO BOX */
.dlis-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;   /* This fixes the white space */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(123,63,151,0.25);
}

.dlis-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Overlay */
.dlis-tour-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.dlis-tour-start-btn {
    background: #532d7f;
    color: #fff;
    padding: 16px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    cursor: pointer;
    /* positioning */
    position:absolute;
    bottom:30px;
    left:50%;
    transform:translateX(-50%);
white-space:nowrap;
    display:inline-block;
    max-width:90%;

}
.dlis-virtual-tour-container{
    position:relative;
}
.dlis-tour-start-btn:hover {
    background-color: #6a3ca3;
}

/* TOUR BUTTON ALIGNMENT */
.dlis-tour-btn {
    margin-top: 20px;
    align-self: flex-start;
}

/* RESPONSIVE */
@media (max-width: 992px) {

    .dlis-virtual-section {
        padding: 40px 40px;
        gap: 40px;
    }

    .dlis-video-wrapper iframe {
    height: 420px;
}

.dlis-video-wrapper {
        height: 420px;
    }
}

@media (max-width: 768px) {

    .dlis-virtual-section {
        flex-direction: column;
        padding: 30px 20px;
    }

    .dlis-tour-btn {
        align-self: center;
    }

    .dlis-video-wrapper iframe {
        height: 260px;
    }
.dlis-video-wrapper {
        height: 300px;
    }
}

/* ===== FORCE ABOUT SECTION TO ALIGN WITH FULL WIDTH ===== */

.dlis-virtual-section {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 60px 80px;
    box-sizing: border-box;
}

/*About Ends here*/

/* Notifications Starts Here */

/* ===== DLIS NOTIFICATIONS FULL WIDTH ===== */

.dlis-dept-wrapper {
  width: 100%;
  margin: 0;
  padding: 50px 60px;   /* slightly reduced side padding */
  box-sizing: border-box;

  background: #ffffff;
  display: grid;

  /* UPDATED COLUMN WIDTHS */
  grid-template-columns: 1.4fr 1.2fr 1.4fr;

  gap: 28px;
  font-family: 'Poppins', sans-serif;
}

/* Section */
.dlis-dept-section {
  border: 1px solid #ddd;
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dlis-dept-section:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Header */
.dlis-dept-header {
  background: #7b3f97;
  color: #ffffff;
  padding: 14px 18px;
  font-size: 18px;
  font-weight: 600;
}

/* Latest Section */
.dlis-dept-latest-list {
  padding: 12px 18px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 6px;
}

.dlis-dept-latest-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #ead7f2;
  transition: background 0.3s ease;
}

.dlis-dept-latest-item:hover {
  background: #faf6fc;
}

.dlis-dept-date-box {
  min-width: 62px;
  text-align: center;
  border-radius: 12px;
  border: 1px solid #7b3f97;
  color: #7b3f97;
  padding: 6px 0;
  font-weight: 600;
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* ensures perfect center */
}

.dlis-dept-date-box span {
  display: block;
  font-size: 12px;
  font-weight: 500;
}

.dlis-dept-latest-item:hover .dlis-dept-date-box {
  background: #7b3f97;
  color: #ffffff;
}

.dlis-dept-latest-content h4 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 500;
  color: #222;
}

.dlis-dept-latest-content p {
  margin: 0;
  font-size: 12px;
  color: #777;
}

/* Faculty Section */
.dlis-dept-faculty-list {
  padding: 16px 22px;
  max-height: 360px;
  overflow-y: auto;
  padding-right: 6px;
}

.dlis-dept-faculty-list ul {
  padding-left: 18px;
  margin: 0;
}

.dlis-dept-faculty-list li {
  margin-bottom: 14px;
  line-height: 1.55;
  border-bottom: 1px solid #ead7f2;
  padding-bottom: 10px;
  font-size: 14px;
}

.dlis-dept-faculty-list a {
  color: #0047ff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.dlis-dept-faculty-list a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: #0047ff;
  transition: width 0.3s ease;
}

.dlis-dept-faculty-list a:hover::after {
  width: 100%;
}

/* Video Section */
.dlis-dept-video-box {
  padding: 18px;
}

.dlis-dept-video-frame {
  width: 100%;
  height: 280px;
  border-radius: 6px;
  border: none;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.dlis-dept-video-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Scrollbar Styling */
.dlis-dept-latest-list::-webkit-scrollbar,
.dlis-dept-faculty-list::-webkit-scrollbar {
  width: 6px;
}

.dlis-dept-latest-list::-webkit-scrollbar-track,
.dlis-dept-faculty-list::-webkit-scrollbar-track {
  background: #f2f2f2;
  border-radius: 10px;
}

.dlis-dept-latest-list::-webkit-scrollbar-thumb,
.dlis-dept-faculty-list::-webkit-scrollbar-thumb {
  background: #7b3f97;
  border-radius: 10px;
}

.dlis-dept-latest-list::-webkit-scrollbar-thumb:hover,
.dlis-dept-faculty-list::-webkit-scrollbar-thumb:hover {
  background: #5f2f76;
}

/* Firefox Scrollbar */
.dlis-dept-latest-list,
.dlis-dept-faculty-list {
  scrollbar-width: thin;
  scrollbar-color: #7b3f97 #f2f2f2;
}

/* Responsive */
@media (max-width: 1100px) {
  .dlis-dept-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 40px;
  }
}

@media (max-width: 768px) {
  .dlis-dept-wrapper {
    padding: 30px 20px;
  }
}

/* Notification Ends here */



/*Award Starts Here*/
        body {
            margin: 0;
            font-family: "Segoe UI", Georgia, serif;
            line-height: 1.6;
            background-color: #ffffff;
            color: #222;
        }

        h1 {
            text-align: center;
            padding: 25px 10px;
            font-size: 28px;
            font-weight: 600;
        }

        /* ---------- Common Layout ---------- */
        .container {
            width: 100%;
            box-sizing: border-box;
        }

        .award-section {
            display: flex;
            align-items: flex-start;
            padding: 40px 60px;
            gap: 30px;
        }

        .award-section.reverse {
            flex-direction: row-reverse;
        }

        /* ---------- Purple Highlight Section ---------- */
        .highlight {
            background-color: #6b2c7a;
            color: #ffffff;
        }

        /* ---------- Image Styling ---------- */
        .award-image {
            flex-shrink: 0;
        }

        .award-image img {
            width: 160px;
            height: 160px;
            border-radius: 50%;
            object-fit: cover;
            border: 6px solid #ffffff;
        }

        /* ---------- Text Content ---------- */
        .award-content h2 {
            margin-top: 0;
            font-size: 18px;
            font-weight: 700;
        }

        .award-content p {
            margin: 10px 0;
            font-size: 15px;
            text-align: justify;
        }

        /* ---------- Second Section Background ---------- */
        .plain {
            background-color: #ffffff;
            color: #000000;
        }

        .plain .award-image img {
            border-color: #e6c8f0;
        }

        /* ---------- Responsive ---------- */
        @media (max-width: 768px) {
            .award-section,
            .award-section.reverse {
                flex-direction: column;
                padding: 30px 20px;
            }

            .award-image {
                text-align: center;
            }
        }
/*Award Ends Here*/ 

/*Medals Starts Here */

/* ===== Wrapper ===== */
.lisdu-ach-wrapper {
  width: 100%;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ===== Title ===== */
.lisdu-ach-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin: 40px 0;
  color: #4b2a5a;
}

/* ===== Rows ===== */
.lisdu-ach-row {
  width: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lisdu-ach-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.18);
}

/* ===== Backgrounds ===== */
.lisdu-ach-purple {
  background: #6b2f84;
  color: #ffffff;
}

.lisdu-ach-white {
  background: #ffffff;
  color: #000000;
}

/* ===== Inner ===== */
.lisdu-ach-inner {
  max-width: 1200px;
  margin: auto;
  padding: 50px 40px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

/* ===== Text ===== */
.lisdu-ach-text {
  flex: 1;
}

.lisdu-ach-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.lisdu-ach-text p,
.lisdu-ach-text li {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 10px;
}

/* ===== Images (RECTANGULAR) ===== */
.lisdu-ach-photo img {
  max-width: 180px;
  height: auto;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 6px #d8b6e8;
}

/* ===== Purple text safety ===== */
.lisdu-ach-purple *,
.lisdu-ach-purple h3,
.lisdu-ach-purple p,
.lisdu-ach-purple li {
  color: #ffffff !important;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lisdu-ach-inner {
    flex-direction: column;
    text-align: center;
  }
}



/* Medals Ends here */


/* Padmashri Code Starts here */

/* ===== Padma Shri Wrapper ===== */
.lisdu-padmashri-wrapper {
  width: 100%;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ===== Title ===== */
.lisdu-padmashri-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin: 40px 0;
  color: #4b2a5a;
}

/* ===== Rows ===== */
.lisdu-padmashri-row {
  width: 100%;
}

.lisdu-bg-purple {
  background: #6b2f84;
  color: #ffffff;
}

.lisdu-bg-white {
  background: #ffffff;
  color: #000000;
}

/* ===== Inner ===== */
.lisdu-padmashri-inner {
  max-width: 1200px;
  margin: auto;
  padding: 50px 40px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

/* ===== Text ===== */
.lisdu-padmashri-text {
  flex: 1;
}

.lisdu-padmashri-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.lisdu-padmashri-text p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 14px;
}

/* ===== Image ===== */
.lisdu-padmashri-photo img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 0 0 6px #d8b6e8;
}

/* ===== Purple override ===== */
.lisdu-bg-purple *,
.lisdu-bg-purple h3,
.lisdu-bg-purple p {
  color: #ffffff !important;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lisdu-padmashri-inner {
    flex-direction: column;
    text-align: center;
  }
}
/* ✨ Hover animation for Padma Shri rows */
.lisdu-padmashri-row {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lisdu-padmashri-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  z-index: 2;
  position: relative;
}

/* Padmashri Code Ends here */

/* Faculty Awards Code Starts here */

/* ===== Wrapper ===== */
.lisdu-awards-wrapper {
  width: 100%;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ===== Title ===== */
.lisdu-awards-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin: 40px 0;
  color: #4b2a5a;
}

/* ===== Rows ===== */
.lisdu-awards-row {
  width: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lisdu-awards-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

/* ===== Backgrounds ===== */
.lisdu-bg-purple {
  background: #6b2f84;
  color: #ffffff;
}

.lisdu-bg-white {
  background: #ffffff;
  color: #000000;
}

/* ===== Inner ===== */
.lisdu-awards-inner {
  max-width: 1200px;
  margin: auto;
  padding: 50px 40px;
  display: flex;
  align-items: flex-start;
  gap: 50px;
}

/* ===== Text ===== */
.lisdu-awards-text {
  flex: 1;
}

.lisdu-awards-text h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.lisdu-awards-text ol {
  padding-left: 20px;
  font-size: 16px;
  line-height: 1.75;
}

/* ===== Image ===== */
.lisdu-awards-photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 0 0 6px #d8b6e8;
}

/* ===== Purple override ===== */
.lisdu-bg-purple *,
.lisdu-bg-purple h3,
.lisdu-bg-purple li {
  color: #ffffff !important;
}

/* ===== Note ===== */
.lisdu-awards-note {
  max-width: 1200px;
  margin: 30px auto;
  font-size: 14px;
  color: #333;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lisdu-awards-inner {
    flex-direction: column;
    text-align: center;
  }

  .lisdu-awards-text ol {
    text-align: left;
  }
}

/*Faculty Awards Code Ends here */



/* Faculty Starts here */

/* ===== Wrapper ===== */
.lisdu-faculty-wrapper {
  width: 100%;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ===== Rows ===== */
.lisdu-faculty-row {
  width: 100%;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lisdu-faculty-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* ===== Backgrounds ===== */
.lisdu-bg-white {
  background: #ffffff;
  color: #000000;
}

.lisdu-bg-purple {
  background: #6b2f84;
  color: #ffffff;
}

/* ===== Inner ===== */
.lisdu-faculty-inner {
  max-width: 1200px;
  margin: auto;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* ===== Text ===== */
.lisdu-faculty-text {
  flex: 1;
}

.lisdu-faculty-text h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
}

.lisdu-role {
  font-size: 15px;
  font-weight: 600;
}

.lisdu-contact,
.lisdu-area {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 10px;
}

/* ===== Icons ===== */
.lisdu-icons img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  transition: transform 0.3s ease;
}

.lisdu-icons img:hover {
  transform: scale(1.15);
}

/* ===== Photo (DOUBLE BORDER) ===== */
.lisdu-faculty-photo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #ffffff;
  box-shadow: 0 0 0 5px #d8b6e8;
  transition: transform 0.4s ease;
}

.lisdu-bg-purple .lisdu-faculty-photo img {
  border-color: #6b2f84;
  box-shadow: 0 0 0 5px #ffffff;
}

/* ===== Buttons ===== */
.lisdu-profile-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 22px;
  background: #6b2f84;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.lisdu-profile-btn:hover {
  background: #552368;
  transform: translateY(-2px);
}

.lisdu-btn-light {
  background: #ffffff;
  color: #6b2f84 !important;
}

/* ===== Purple Text Safety ===== */
.lisdu-bg-purple h3,
.lisdu-bg-purple p,
.lisdu-bg-purple strong {
  color: #ffffff;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lisdu-faculty-inner {
    flex-direction: column;
    text-align: center;
  }
}
/* 🔒 FORCE WHITE TEXT ON PURPLE ROW (THEME OVERRIDE FIX) */
.lisdu-bg-purple,
.lisdu-bg-purple * {
  color: #ffffff !important;
}

/* Keep button exception */
.lisdu-bg-purple .lisdu-btn-light {
  color: #6b2f84 !important;
}
/* 🎓 Designation / Role Styling (SAFE & READABLE) */
.lisdu-role {
  display: inline-block;
  margin: 8px 0 6px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  background: #f2e9f7;        /* light lavender */
  color: #6b2f84;             /* DU purple text */
  border-left: 4px solid #6b2f84;
}

/* 🔒 Purple row override – FORCE contrast */
.lisdu-bg-purple .lisdu-role {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff !important;
  border-left: 4px solid #ffffff;
}

/* Faculty Ends here */

/* HoD Starts Here */

/* ===== HOD Page Wrapper ===== */
.lisdu-hod-wrapper {
  max-width: 900px;
  margin: 40px auto;
  padding: 40px 50px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ===== Title ===== */
.lisdu-hod-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #4b2a5a;
  margin-bottom: 30px;
}

/* ===== List ===== */
.lisdu-hod-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== List Item ===== */
.lisdu-hod-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid #eee;
  font-size: 18px;
}

/* Remove border for last item */
.lisdu-hod-list li:last-child {
  border-bottom: none;
}

/* ===== Year ===== */
.lisdu-hod-year {
  min-width: 110px;
  font-weight: 600;
  color: #6b2f84;
}

/* ===== Name ===== */
.lisdu-hod-name {
  color: #1a1a1a;
}

/* ===== Hover Effect ===== */
.lisdu-hod-list li:hover {
  background: #f8f3fb;
  border-radius: 4px;
  padding-left: 8px;
  transition: all 0.25s ease;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .lisdu-hod-wrapper {
    padding: 30px 20px;
  }

  .lisdu-hod-title {
    font-size: 24px;
  }

  .lisdu-hod-list li {
    flex-direction: column;
    align-items: flex-start;
    font-size: 17px;
  }

  .lisdu-hod-year {
    min-width: auto;
  }
}

/* HoD Ends here */

/* Former Faculty Starts here */

#duls-lfs-former-faculty-2026 {
  max-width: 920px;
  margin: 30px auto;
  padding: 28px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
}

#duls-lfs-former-faculty-2026 .ff-header h2 {
  text-align: center;
  font-size: 26px;
  color: #2c2c2c;
  margin-bottom: 32px;
  padding-bottom: 12px;
  border-bottom: 2px solid #8a49a0;
}

#duls-lfs-former-faculty-2026 .ff-section {
  margin-bottom: 26px;
  padding: 22px;
  background: #f8f8fd;
  border-left: 6px solid #8a49a0;
  border-radius: 6px;
}

#duls-lfs-former-faculty-2026 .ff-section h3 {
  margin-bottom: 14px;
  font-size: 20px;
  color: #8a49a0;
}

#duls-lfs-former-faculty-2026 .ff-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#duls-lfs-former-faculty-2026 .ff-section ul li {
  padding: 6px 0;
  font-size: 15px;
  color: #333333;
  border-bottom: 1px dashed #dddddd;
}

#duls-lfs-former-faculty-2026 .ff-section ul li:last-child {
  border-bottom: none;
}

#duls-lfs-former-faculty-2026 .ff-footer {
  margin-top: 30px;
  padding-top: 22px;
  text-align: center;
  border-top: 1px solid #dddddd;
}

#duls-lfs-former-faculty-2026 .ff-footer p {
  font-size: 14px;
  color: #444444;
  margin: 6px 0;
}

#duls-lfs-former-faculty-2026 .ff-footer a {
  color: #8a49a0;
  font-weight: 600;
  text-decoration: none;
}

#duls-lfs-former-faculty-2026 .ff-footer a:hover {
  text-decoration: underline;
}

#duls-lfs-former-faculty-2026 .ff-readmore {
  display: inline-block;
  margin-top: 14px;
  padding: 9px 20px;
  background: #1f2c8c;
  color: #ffffff !important;
  border-radius: 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

#duls-lfs-former-faculty-2026 .ff-readmore:hover {
  background: #15206b;
}


/* Former Faculty Ends here */

/* Office & Library Staff Starts here */

#duls-lfs-staff-cards-2026 {
  max-width: 1000px;
  margin: 30px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
}

#duls-lfs-staff-cards-2026 .staff-header h2 {
  text-align: center;
  font-size: 26px;
  color: #2a2a2a;
  margin-bottom: 35px;
  padding-bottom: 12px;
  border-bottom: 2px solid #8a49a0;
}

#duls-lfs-staff-cards-2026 .staff-section {
  margin-bottom: 35px;
}

#duls-lfs-staff-cards-2026 .staff-section h3 {
  font-size: 21px;
  color: #8a49a0;
  margin-bottom: 18px;
}

#duls-lfs-staff-cards-2026 .staff-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

#duls-lfs-staff-cards-2026 .staff-card {
  display: flex;
  align-items: center;
  padding: 18px;
  background: #f8f8fd;
  border-radius: 8px;
  border-left: 5px solid #8a49a0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

#duls-lfs-staff-cards-2026 .staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

#duls-lfs-staff-cards-2026 .staff-photo {
  flex-shrink: 0;
  margin-right: 16px;
}

#duls-lfs-staff-cards-2026 .staff-photo img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #8a49a0;
}

#duls-lfs-staff-cards-2026 .staff-info h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: #222222;
}

#duls-lfs-staff-cards-2026 .staff-info p {
  margin: 2px 0;
  font-size: 14px;
  color: #444444;
}

#duls-lfs-staff-cards-2026 .staff-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #dddddd;
  text-align: center;
}

#duls-lfs-staff-cards-2026 .staff-footer p {
  font-size: 14px;
  color: #444444;
  margin: 6px 0;
}

#duls-lfs-staff-cards-2026 .staff-footer a {
  color: #8a49a0;
  font-weight: 600;
  text-decoration: none;
}

#duls-lfs-staff-cards-2026 .staff-footer a:hover {
  text-decoration: underline;
}


/* Office & Library Staff Ends here */

/* Departmental and University Committees Starts Here */

#duls-lfs-committees-2026 {
  max-width: 950px;
  margin: 30px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
}

#duls-lfs-committees-2026 .comm-header h2 {
  text-align: center;
  font-size: 26px;
  color: #2a2a2a;
  margin-bottom: 35px;
  padding-bottom: 12px;
  border-bottom: 2px solid #8a49a0;
}

#duls-lfs-committees-2026 .comm-section {
  margin-bottom: 26px;
  padding: 22px;
  background: #f9f9fd;
  border-left: 6px solid #8a49a0;
  border-radius: 6px;
}

#duls-lfs-committees-2026 .comm-section h3 {
  margin-bottom: 14px;
  font-size: 19px;
  color: #8a49a0;
}

#duls-lfs-committees-2026 .comm-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#duls-lfs-committees-2026 .comm-section ul li {
  padding: 6px 0;
  font-size: 15px;
  color: #333333;
  border-bottom: 1px dashed #dddddd;
}

#duls-lfs-committees-2026 .comm-section ul li:last-child {
  border-bottom: none;
}

#duls-lfs-committees-2026 .comm-footer {
  margin-top: 35px;
  padding-top: 22px;
  text-align: center;
  border-top: 1px solid #dddddd;
}

#duls-lfs-committees-2026 .comm-footer p {
  font-size: 14px;
  color: #444444;
  margin: 6px 0;
}

#duls-lfs-committees-2026 .comm-footer a {
  color: #8a49a0;
  font-weight: 600;
  text-decoration: none;
}

#duls-lfs-committees-2026 .comm-footer a:hover {
  text-decoration: underline;
}


/* Departmental and University Committees Ends Here */

/* BLiSc Code Starts here */

#duls-blisc-course-2026 {
  max-width: 960px;
  margin: 30px auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

#duls-blisc-course-2026 .course-header h2 {
  text-align: center;
  font-size: 26px;
  color: #2a2a2a;
  margin-bottom: 36px;
  padding-bottom: 12px;
  border-bottom: 2px solid #8a49a0;
}

#duls-blisc-course-2026 .course-section {
  margin-bottom: 26px;
  padding: 22px;
  background: #f9f9fd;
  border-left: 6px solid #8a49a0;
  border-radius: 6px;
}

#duls-blisc-course-2026 .course-section h3 {
  font-size: 19px;
  color: #8a49a0;
  margin-bottom: 12px;
}

#duls-blisc-course-2026 .course-section ul {
  margin: 0;
  padding-left: 18px;
}

#duls-blisc-course-2026 .course-section ul li {
  margin-bottom: 6px;
  font-size: 15px;
  color: #333333;
}

#duls-blisc-course-2026 p {
  font-size: 15px;
  color: #333333;
  margin: 8px 0;
}

#duls-blisc-course-2026 .course-note {
  margin-top: 10px;
  font-size: 14px;
  color: #555555;
}

#duls-blisc-course-2026 a {
  color: #8a49a0;
  font-weight: 600;
  text-decoration: none;
}

#duls-blisc-course-2026 a:hover {
  text-decoration: underline;
}

#duls-blisc-course-2026 .course-footer {
  text-align: center;
  margin-top: 30px;
}

#duls-blisc-course-2026 .course-readmore {
  display: inline-block;
  padding: 9px 20px;
  background: #1f2c8c;
  color: #ffffff !important;
  border-radius: 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

#duls-blisc-course-2026 .course-readmore:hover {
  background: #15206b;
}


/* BLiSc Code Ends here */


/* MLiSc Code Starts here */

#duls-mlisc-course-2026 {
  max-width: 960px;
  margin: 30px auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

#duls-mlisc-course-2026 .course-header h2 {
  text-align: center;
  font-size: 26px;
  color: #2a2a2a;
  margin-bottom: 36px;
  padding-bottom: 12px;
  border-bottom: 2px solid #8a49a0;
}

#duls-mlisc-course-2026 .course-section {
  margin-bottom: 26px;
  padding: 22px;
  background: #f9f9fd;
  border-left: 6px solid #8a49a0;
  border-radius: 6px;
}

#duls-mlisc-course-2026 .course-section h3 {
  font-size: 19px;
  color: #8a49a0;
  margin-bottom: 12px;
}

#duls-mlisc-course-2026 .course-subheading {
  margin-top: 14px;
  font-size: 16px;
  color: #444444;
}

#duls-mlisc-course-2026 ul {
  padding-left: 18px;
  margin: 0;
}

#duls-mlisc-course-2026 ul li {
  margin-bottom: 6px;
  font-size: 15px;
  color: #333333;
}

#duls-mlisc-course-2026 p {
  font-size: 15px;
  color: #333333;
  margin: 8px 0;
}

#duls-mlisc-course-2026 .course-note {
  margin-top: 10px;
  font-size: 14px;
  color: #555555;
}

#duls-mlisc-course-2026 a {
  color: #8a49a0;
  font-weight: 600;
  text-decoration: none;
}

#duls-mlisc-course-2026 a:hover {
  text-decoration: underline;
}


/* MLiSc Code Ends here */


/* PhD Code Starts here */

#duls-phd-course-2026 {
  max-width: 960px;
  margin: 30px auto;
  padding: 32px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}

#duls-phd-course-2026 .course-header h2 {
  text-align: center;
  font-size: 26px;
  color: #2a2a2a;
  margin-bottom: 36px;
  padding-bottom: 12px;
  border-bottom: 2px solid #8a49a0;
}

#duls-phd-course-2026 .course-section {
  margin-bottom: 26px;
  padding: 22px;
  background: #f9f9fd;
  border-left: 6px solid #8a49a0;
  border-radius: 6px;
}

#duls-phd-course-2026 .course-section h3 {
  font-size: 19px;
  color: #8a49a0;
  margin-bottom: 12px;
}

#duls-phd-course-2026 ul {
  padding-left: 18px;
  margin: 0;
}

#duls-phd-course-2026 ul li {
  margin-bottom: 6px;
  font-size: 15px;
  color: #333333;
}

#duls-phd-course-2026 p {
  font-size: 15px;
  color: #333333;
  margin: 8px 0;
}

#duls-phd-course-2026 a {
  color: #8a49a0;
  font-weight: 600;
  text-decoration: none;
}

#duls-phd-course-2026 a:hover {
  text-decoration: underline;
}

#duls-phd-course-2026 .course-readmore {
  display: inline-block;
  padding: 8px 18px;
  background: #1f2c8c;
  color: #ffffff !important;
  border-radius: 4px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


/* PhD Code Ends here */

/* Contact Us Starts here */

/* ===== Main Section ===== */
#dlisContactSection {
  max-width: 1100px;
  margin: 60px auto;
  padding: 40px 30px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ===== Title ===== */
#dlisContactSection .dlisContactTitle {
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 45px;
  color: #4b2a5a;
}

/* ===== Grid Layout ===== */
#dlisContactSection .dlisContactGrid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== Cards ===== */
#dlisContactSection .dlisContactCard {
  flex: 1;
  min-width: 340px;
  padding: 35px;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

#dlisContactSection .dlisContactCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* ===== HOD Highlight ===== */
#dlisContactSection .dlisHodCard {
  background: #6b2f84;
  color: #ffffff;
}

#dlisContactSection .dlisHodCard .dlisEmailLink {
  color: #ffffff;
  text-decoration: underline;
}

/* ===== Headings ===== */
#dlisContactSection .dlisCardHeading {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===== Designation ===== */
#dlisContactSection .dlisDesignation {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  opacity: 0.9;
}

/* ===== Address ===== */
#dlisContactSection .dlisAddressBlock {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
}

/* ===== Info ===== */
#dlisContactSection .dlisInfoBlock {
  font-size: 16px;
  line-height: 1.8;
}

#dlisContactSection .dlisLabel {
  font-weight: 600;
}

/* ===== Email Link ===== */
#dlisContactSection .dlisEmailLink {
  color: #6b2f84;
  text-decoration: none;
  font-weight: 500;
}

#dlisContactSection .dlisEmailLink:hover {
  text-decoration: underline;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  #dlisContactSection .dlisContactGrid {
    flex-direction: column;
  }
}
/* ===== FORCE TEXT VISIBILITY INSIDE PURPLE CARD ===== */
#dlisContactSection .dlisHodCard,
#dlisContactSection .dlisHodCard h3,
#dlisContactSection .dlisHodCard p,
#dlisContactSection .dlisHodCard span,
#dlisContactSection .dlisHodCard .dlisDesignation,
#dlisContactSection .dlisHodCard .dlisAddressBlock,
#dlisContactSection .dlisHodCard .dlisInfoBlock,
#dlisContactSection .dlisHodCard .dlisLabel {
    color: #ffffff !important;
}

/* Email inside purple */
#dlisContactSection .dlisHodCard .dlisEmailLink {
    color: #ffffff !important;
    text-decoration: underline;
}

#dlisContactSection .dlisContactGrid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT COLUMN */
#dlisContactSection .dlisContactLeft {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* RIGHT FORM CARD */
#dlisContactSection .dlisContactFormCard {
  flex: 1.2;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

#dlisContactSection .dlisContactFormCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* FORM TITLE */
#dlisContactSection .dlisFormTitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #4b2a5a;
  text-align: center;
}

/* FORM WRAPPER */
#dlisContactSection .dlisFormWrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  #dlisContactSection .dlisContactGrid {
    flex-direction: column;
  }
}

/* ===== CONTACT GRID STRUCTURE UPDATE ===== */

#dlisContactSection .dlisContactGrid {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT COLUMN */
#dlisContactSection .dlisContactLeft {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* RIGHT FORM CARD */
#dlisContactSection .dlisContactFormCard {
  flex: 1.3;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

#dlisContactSection .dlisContactFormCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* FORM TITLE */
#dlisContactSection .dlisFormTitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #4b2a5a;
  text-align: center;
}

/* FORM WRAPPER */
#dlisContactSection .dlisFormWrapper {
  width: 100%;
  height: 850px; /* Adjusted to prevent excessive scroll */
  overflow: hidden;
  border-radius: 8px;
}

/* IFRAME FULL WIDTH */
#dlisContactSection .dlisFormWrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  #dlisContactSection .dlisContactGrid {
    flex-direction: column;
  }

  #dlisContactSection .dlisFormWrapper {
    height: 950px;
  }
}
/* ===== FEEDBACK CARD STYLING ===== */

#dlisContactSection .dlisFeedbackCard {
  flex: 1.3;
  background: #f9f6fc;
  border-left: 6px solid #6b2f84;
}

#dlisContactSection .dlisFeedbackText {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #333333;
  text-align: justify;
}

#dlisContactSection .dlisFeedbackEmail {
  font-size: 16px;
  margin-top: 15px;
  margin-bottom: 15px;
}

#dlisContactSection .dlisFeedbackNote {
  font-size: 14px;
  background: #ffffff;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #e4d7f2;
  margin-top: 15px;
  color: #444444;
}
/* ===== FEEDBACK CARD STYLING ===== */

#dlisContactSection .dlisFeedbackCard {
  flex: 1.3;
  background: #f9f6fc;
  border-left: 6px solid #6b2f84;
}

#dlisContactSection .dlisFeedbackText {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #333333;
  text-align: justify;
}

/* Button Wrap */
#dlisContactSection .dlisFeedbackButtonWrap {
  margin-top: 25px;
  text-align: center;
}

/* Button */
#dlisContactSection .dlisFeedbackBtn {
  display: inline-block;
  padding: 14px 28px;
  background: #6b2f84;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(107, 47, 132, 0.25);
}

#dlisContactSection .dlisFeedbackBtn:hover {
  background: #552368;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(107, 47, 132, 0.35);
}
/* ===== FULL WIDTH FEEDBACK CARD ===== */

#dlisContactSection .dlisFullWidthCard {
  flex: 100%;
  margin-top: 10px;
}
/* ===== FORCE TOP TWO CARDS SAME HEIGHT ===== */

#dlisContactSection .dlisContactGrid {
  align-items: stretch;
}

#dlisContactSection .dlisContactCard {
  display: flex;
  flex-direction: column;
}

/* Optional: keep content aligned nicely */
#dlisContactSection .dlisContactCard .dlisInfoBlock {
  margin-top: auto;
}
/* Contact us ends here */

/* Showcase Starts here */
/* ===== DLIS SHOWCASE FINAL (EQUAL + CLEAN + SAFE) ===== */

#dlisShowcaseSection {
  width: 100%;
  margin: 0;
  padding: 50px 60px;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* GRID */
#dlisShowcaseSection .dlisShowcaseGrid {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.4fr;
  gap: 28px;
  align-items: stretch; /* 🔥 ensures equal height */
}

/* COLUMN */
#dlisShowcaseSection .dlisShowcaseColumn {
  border: 1px solid #ddd;
  background: #fff;

  border-radius: 14px;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  height: 100%; /* 🔥 equal height */

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#dlisShowcaseSection .dlisShowcaseColumn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* HEADER */
#dlisShowcaseSection .dlisShowcaseHeading {
  background: #7b3f97;
  color: #ffffff;

  padding: 14px 18px;
  font-size: 18px;
  font-weight: 600;

  border-radius: 14px 14px 0 0;
}

/* SLIDER */
#dlisShowcaseSection .dlisUniversalSlider {
  position: relative;
  flex: 1; /* 🔥 fill remaining space */
  height: 100%;
  overflow: hidden;
}

/* TRACK */
#dlisShowcaseSection .dlisUniversalTrack {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

/* SLIDE */
#dlisShowcaseSection .dlisUniversalSlide {
  min-width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;

  padding: 25px 20px;
}

/* IMAGE (BIGGER + CLEAN) */
#dlisShowcaseSection .dlisUniversalSlide img {
  width: 115px;   /* 🔥 increased */
  height: 115px;
  border-radius: 50%;
  object-fit: cover;

  margin-bottom: 14px;

  transition: transform 0.3s ease;
}

#dlisShowcaseSection .dlisUniversalSlide img:hover {
  transform: scale(1.05);
}

/* TEXT (UNIFORM) */
#dlisShowcaseSection .dlisUniversalSlide h4 {
  margin: 6px 0;
  font-size: 15px;
  font-weight: 500;
  color: #222;
}

#dlisShowcaseSection .dlisUniversalSlide p {
  margin: 3px 0;
  font-size: 12px;
  color: #777;
}

#dlisShowcaseSection .dlisUniversalSlide span {
  font-size: 12px;
  color: #7b3f97;
}

/* TESTIMONIAL TEXT */
#dlisShowcaseSection .dlisTestimonialText {
  font-style: italic;
  font-size: 14px;
  margin-bottom: 12px;
  max-width: 85%;
}

/* ARROWS (FIXED + CLEAN) */
#dlisShowcaseSection .dlisArrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 34px;
  height: 34px;

  border-radius: 50%;
  border: none;

  background: rgba(123, 63, 151, 0.9);
  color: #fff;

  font-size: 16px;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 100;
}

#dlisShowcaseSection .dlisPrev {
  left: 10px;
}

#dlisShowcaseSection .dlisNext {
  right: 10px;
}

#dlisShowcaseSection .dlisArrow:hover {
  background: #5f2f76;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  #dlisShowcaseSection .dlisShowcaseGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #dlisShowcaseSection {
    padding: 30px 20px;
  }
}

/* Showcase Ends here */



/*Shadow Starts Here*/
.block,
.region,
.custom-social-icons {
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
}

/* Optional: center the icons */
.custom-social-icons {
    text-align: center;
}

/* Adjust icon size */
.custom-social-icons img {
    width: 40px;
    height: 40px;
    margin: 0 8px;
}

.block-block-content,
.card,
.section {
    box-shadow: none !important;
    border: none !important;
}
/*Shadow Ends Here*/


/*Alma Mater Starts Here*/

body{
    font-family: Arial, Helvetica, sans-serif;
    background:#f5f5f5;
    margin:0;
    padding:40px 0;
}

.container{
    width:70%;
    margin:auto;
    background:#f8f8f8;
    padding:40px 60px;
    box-shadow:0 2px 8px rgba(0,0,0,0.15);
}

h1{
    text-align:center;
    font-size:36px;
    color:#5a3d1f;
    margin-bottom:40px;
}

p{
    font-size:17px;
    line-height:1.8;
    color:#333;
    text-align:justify;
}

.signature{
    margin-top:30px;
}

.container{
    max-width:900px;
    margin:auto;
    background:#f8f8f8;
    padding:40px 60px;
    box-shadow:0 2px 8px rgba(0,0,0,0.15);
}
/*Alma Mater Ends Here*/

/* Remove No Content Error Starts*/

/* REMOVE ALL EMPTY STRIPS / SHADOW CONTAINERS */

.region,
.region-content,
.layout-content,
.layout-container,
.content-wrapper {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* REMOVE ANY EMPTY DIV SPACE */
.region:empty,
.layout-content:empty,
.content-wrapper:empty {
  display: none !important;
}

/* REMOVE HR LINES IF ANY */
hr {
  display: none !important;
}

/* REMOVE RANDOM SHADOW BAR */
div[style*="box-shadow"] {
  box-shadow: none !important;
}

/* REMOVE ALL EMPTY STRIPS / SHADOW CONTAINERS */

.region,
.region-content,
.layout-content,
.layout-container,
.content-wrapper {
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}

/* REMOVE ANY EMPTY DIV SPACE */
.region:empty,
.layout-content:empty,
.content-wrapper:empty {
  display: none !important;
}

/* REMOVE HR LINES IF ANY */
hr {
  display: none !important;
}

/* REMOVE RANDOM SHADOW BAR */
div[style*="box-shadow"] {
  box-shadow: none !important;
}

/* 🔥 REMOVE EMPTY CONTENT WRAPPER STRIP ONLY */
.region-content:empty,
.layout-content:empty,
.page-content:empty {
  display: none !important;
}

/* 🔥 REMOVE SHADOW/BACKGROUND FROM EMPTY WRAPPER */
.region-content,
.layout-content,
.page-content {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* REMOVE THAT EXACT GREY BAR */
main > div:empty {
  display: none !important;
}

/* Remove No Content Error Ends */


/* Faculty Publication Starts here */

/* Title */
.dlis-facpubx-title {
    text-align: center;
    font-weight: 900;
    margin-bottom: 35px;
}

/* Center the whole block */
.dlis-facpubx-wrapper {
    max-width: 1000px;   /* controls width */
    margin: 0 auto;      /* centers horizontally */
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 10px;
}

/* Each row styled like a clean card */
.dlis-facpubx-row {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 25px;
    align-items: center;
    padding: 18px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Subtle hover effect */
.dlis-facpubx-row:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Image styling */
.dlis-facpubx-img img {
    width: 180px;
    height: 240px;
    object-fit: cover;
    display: block;
    margin: auto;
    border-radius: 6px;
}

/* Content */
.dlis-facpubx-content p {
    margin: 0;
    text-align: justify;
    font-size: 17px;
    line-height: 1.7;
    color: #222;
}

/* Bullet styling improvement */
.dlis-facpubx-content p::first-letter {
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .dlis-facpubx-wrapper {
        max-width: 95%;
    }

    .dlis-facpubx-row {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 15px;
    }

    .dlis-facpubx-img img {
        width: 150px;
        height: auto;
    }

    .dlis-facpubx-content p {
        text-align: left;
    }
}

/* Faculty Publication Ends here */


/*Video Scroll Starts Here*/
/* Video box */
.dlis-dept-video-box {
  display: inline-block;
  width: 520px;
  margin-right: 20px;
  vertical-align: top;
  padding: 14px;
}

/* Perfect fit using aspect ratio */
.dlis-dept-video-frame {
  width: 100%;
  aspect-ratio: 16 / 9; /* ideal for YouTube */
  border-radius: 6px;
  border: none;
}

/* 24:11 aspect ratio */
.dlis-dept-video-frame {
  width: 100%;
  height: 260px;
  border-radius: 6px;
  border: none;
}

/* Horizontal scroll */
.dlis-dept-section:nth-child(3) {
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  padding-bottom: 8px;
}
/*Video Scroll Ends Here*/


/*Padma Shri Front Page Starts here */
/*Padma Shri Front Page Starts here */

/* =========================================
   DLIS SEMI-CIRCLE SHOWCASE (FINAL VERSION)
========================================= */

/* SECTION */
.dlisCircleSection {
  height: 420px;              /* 🔥 reduced from 600 */
  background: none;           /* ✅ removed background */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTAINER */
.dlisCircleContainer {
  position: relative;
  width: 750px;
  height: 450px;
}

/* =========================================
   CENTER CIRCLE
========================================= */

.dlisCenterContent {
  position: absolute;
  bottom: 60px;
  left: 50%;
  transform: translateX(-50%);

  width: 180px;
  height: 180px;

  background: #7b3fa0;
  border-radius: 50%;

  color: #ffffff;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.dlisCenterContent h2,
.dlisCenterContent p {
  color: #ffffff !important;
}

/* FIX TEXT ALIGNMENT */
.dlisCenterContent h2 {
  font-size: 16px;
  margin-bottom: 6px;
  line-height: 1.3;
  text-align: center;
}

.dlisCenterContent p {
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  max-width: 140px;
}


/* =========================================
   ITEMS
========================================= */

.dlisOrbitItem {
  position: absolute;
  text-align: center;

  opacity: 0;
  transform: translateY(40px) scale(0.8);
  transition: all 0.6s ease;
}

/* SEMI-CIRCLE POSITIONS (FIXED) */

.dlisOrbitItem.pos1 { left: 80px; top: 140px; }

.dlisOrbitItem.pos2 { left: 260px; top: 20px; }

.dlisOrbitItem.pos3 { left: 440px; top: 20px; }

.dlisOrbitItem.pos4 { right: 80px; top: 140px; }

/* =========================================
   ANIMATION (ONE BY ONE)
========================================= */

.dlisCircleSection.active .dlisOrbitItem {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dlisCircleSection.active .dlisOrbitItem:nth-child(2) { transition-delay: 0.3s; }
.dlisCircleSection.active .dlisOrbitItem:nth-child(3) { transition-delay: 0.6s; }
.dlisCircleSection.active .dlisOrbitItem:nth-child(4) { transition-delay: 0.9s; }
.dlisCircleSection.active .dlisOrbitItem:nth-child(5) { transition-delay: 1.2s; }

/* =========================================
   IMAGE
========================================= */

.dlisOrbitItem img {
  width: 95px;
  height: 95px;
  border-radius: 50%;
  border: 3px solid #7b3fa0;
  object-fit: cover;
  background: #fff;
}

/* HOVER */
.dlisOrbitItem:hover img {
  transform: scale(1.1);
}

/* =========================================
   NAME TEXT
========================================= */

.dlisOrbitItem span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #333;
  font-weight: 500;
}

.dlisOrbitItem span small {
  display: block;
  font-size: 11px;
  color: #7b3fa0;
  font-weight: 600;
  margin-top: 2px;
}

.dlisOrbitItem .dlisName {
  display: inline-block;
  margin-top: 6px;
  font-size: 14px;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
  line-height: 1.2;
}

.dlisOrbitItem .dlisYear {
  display: block;
  font-size: 12px;
  color: #7b3fa0;
  font-weight: 600;
  margin-top: 2px;
}

/* INITIAL HIDDEN STATE */
.dlisOrbitItem {
  opacity: 0;
  transform: translateY(40px) scale(0.8);
  transition: all 0.6s ease;
}

/* WHEN ACTIVE */
.dlisOrbitItem.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.dlisOrbitItem {
  width: 120px;
  text-align: center;
}

.dlisOrbitItem img {
  display: block;
  margin: 0 auto;
}

/* =========================================
   🔥 LIGHTING BORDER (ADDED ONLY)
========================================= */

/* Outer Glow Border */
.dlisCircleContainer {
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(123, 63, 160, 0.4),
              0 0 30px rgba(123, 63, 160, 0.3),
              0 0 45px rgba(123, 63, 160, 0.2);
  animation: dlisGlowPulse 3s infinite alternate;
}

/* Smooth Glow Animation */
@keyframes dlisGlowPulse {
  from {
    box-shadow: 0 0 10px rgba(123, 63, 160, 0.3),
                0 0 20px rgba(123, 63, 160, 0.2);
  }
  to {
    box-shadow: 0 0 25px rgba(123, 63, 160, 0.6),
                0 0 50px rgba(123, 63, 160, 0.4);
  }
}

/* Optional Center Glow */
.dlisCenterContent {
  box-shadow: 0 0 20px rgba(123, 63, 160, 0.6),
              0 0 40px rgba(123, 63, 160, 0.4);
}

/* Image Glow on Hover */
.dlisOrbitItem:hover img {
  box-shadow: 0 0 10px rgba(123, 63, 160, 0.7),
              0 0 20px rgba(123, 63, 160, 0.5);
}

/*Padma Shri Front Page Ends here */
/* 🔥 FIX: Prevent glow from getting cut */
.dlisCircleSection {
  padding: 30px;              /* creates breathing space for glow */
  overflow: visible;          /* ensures shadow is not clipped */
}

/* 🔥 FIX: Add inner spacing so border is fully visible */
.dlisCircleContainer {
  margin: 20px auto;          /* keeps glow away from edges */
}

/* 🔥 OPTIONAL: If parent container is restricting */
body, html {
  overflow-x: hidden;         /* avoids unwanted horizontal scroll */
}

/* 🔥 Ensure bottom glow is visible */
.dlisCircleSection {
  padding-bottom: 60px;   /* creates space below */
  overflow: visible;
}

/* 🔥 Lift container slightly upward */
.dlisCircleContainer {
  margin-bottom: 40px;    /* pushes glow into visible area */
}

/* 🔥 Make bottom glow soft like top */
.dlisCircleContainer {
  box-shadow: 
    0 0 15px rgba(123, 63, 160, 0.4),
    0 0 30px rgba(123, 63, 160, 0.3),
    0 15px 45px rgba(123, 63, 160, 0.25); /* 🔥 downward soft spread */
}

/* 🔥 Smooth animation also balanced */
@keyframes dlisGlowPulse {
  from {
    box-shadow: 
      0 0 10px rgba(123, 63, 160, 0.3),
      0 0 20px rgba(123, 63, 160, 0.2),
      0 10px 25px rgba(123, 63, 160, 0.2);
  }
  to {
    box-shadow: 
      0 0 25px rgba(123, 63, 160, 0.6),
      0 0 50px rgba(123, 63, 160, 0.4),
      0 20px 60px rgba(123, 63, 160, 0.3);
  }
}
/*Padma Shri Front Page Ends here */


/* Footer (Left) Code Starts Here */

/* =====================================================
   DU FOOTER – LEFT SECTION (Strong Override + Formal UI)
   ===================================================== */

/* Container */
.du-footer-left {
  background-color: #ffffff !important;
  padding: 0; /* remove inner gap so header sits flush */
  border-left: none; /* remove old left border */
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden; /* keeps header clean */
}

/* NEW: Purple Header Bar */
.du-footer-left .du-footer-left-title {
  background-color: #7b3f98; /* purple like image */
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  padding: 12px 16px;
  line-height: 1.4;
}


/* Content spacing */
.du-footer-left-links {
  list-style: none;
  padding: 16px;
  margin: 0;
}

/* List items */
.du-footer-left-links li {
  margin-bottom: 9px;
}

/* LINKS – SUBTLE & FORMAL (UGC/DU style) */
.du-footer-left-links li a {
  color: #444444 !important;     /* professional grey */
  font-size: 14px;
  font-weight: 500;
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

/* Hover – minimal, dignified */
.du-footer-left-links li a:hover,
.du-footer-left-links li a:focus {
  color: #8a49a0 !important;
  border-bottom: 1px solid #8a49a0;
  text-decoration: none !important;
}

/* Last item spacing */
.du-footer-left-links li:last-child {
  margin-bottom: 0;
}

/* ABSOLUTE SAFETY: override white text inheritance */
.du-footer-left,
.du-footer-left * {
  text-shadow: none !important;
}


/* Footer (Left) Code Ends Here */

/* Footer (Middle) Map Starts Here */

/* =====================================================
   DU FOOTER – MIDDLE SECTION (MAP)
   ===================================================== */

.du-footer-middle {
  background-color: #ffffff !important;
  padding: 0;
overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.du-footer-middle-title {
background-color: #7b3f98;
color: #ffffff !important;
font-size: 16px;
font-weight: 700;
margin: 0;
padding: 12px 16px;
line-height: 1.4;
}

/* Map container – responsive */
.du-footer-map-wrapper {
  position: relative;
  width: 94%;
  padding-top: 56%; /* 16:9 aspect ratio */
  border: 1px solid #dddddd;
  overflow: hidden;
}
.du-footer-map-wrapper {
  margin: 16px;
}

/* Map iframe */
.du-footer-map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
  border: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .du-footer-middle {
    padding: 16px;
  }

  .du-footer-middle-title {
    font-size: 16px;
  }
}


/* Footer (Middle) Map Ends Here */

/* Footer (Right) Contact Us Starts Here */

/* =====================================================
   DU FOOTER – RIGHT SECTION (CONTACT)
   ===================================================== */

.du-footer-right {
  background-color: #ffffff !important;
  padding: 22px 20px;
  font-family: Arial, Helvetica, sans-serif;
}

/* Title */
.du-footer-right-title {
  font-size: 18px;
  font-weight: 700;
  color: #2b2b2b !important;
  margin: 0 0 14px 0;
  line-height: 1.4;
}

/* Contact text */
.du-footer-contact-line {
  font-size: 14px;
  color: #444444 !important;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

/* Links (email & website) */
.du-footer-contact-line a {
  color: #444444 !important;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

/* Hover – subtle & formal */
.du-footer-contact-line a:hover,
.du-footer-contact-line a:focus {
  color: #8a49a0 !important;
  border-bottom: 1px solid #8a49a0;
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .du-footer-right {
    padding: 16px;
  }

  .du-footer-right-title {
    font-size: 16px;
  }

  .du-footer-contact-line {
    font-size: 13px;
  }
}

/*Common code for footer */
/* =====================================================
   DU FOOTER – UNIFICATION LAYER (CSS ONLY)
   Works with SEPARATE DRUPAL BLOCKS
   ===================================================== */

/* 1. Give all footer blocks the SAME visual base */
.du-footer-left,
.du-footer-middle,
.du-footer-right {
  background-color: #ffffff !important;
  padding: 22px 20px !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

/* 2. Normalize all footer headings */
.du-footer-left-title,
.du-footer-middle-title,
.du-footer-right-title {
  font-size: 18px !important;
  font-weight: 700;
  color: #2b2b2b !important;
  margin: 0 0 14px 0 !important;
  line-height: 1.4;
}

/* 3. Normalize body text */
.du-footer-left,
.du-footer-middle,
.du-footer-right,
.du-footer-left p,
.du-footer-right p {
  font-size: 14px;
  color: #444444 !important;
  line-height: 1.5;
}

/* 4. Calm the map so it doesn’t dominate */
.du-footer-map-wrapper {
  border: 1px solid #dddddd;
  filter: grayscale(100%);
}

/* 5. Make all links subtle & formal */
.du-footer-left a,
.du-footer-right a {
  color: #444444 !important;
  text-decoration: none !important;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.du-footer-left a:hover,
.du-footer-right a:hover {
  color: #8a49a0 !important;
  border-bottom: 1px solid #8a49a0;
}

/* 6. Mobile consistency */
@media (max-width: 768px) {
  .du-footer-left,
  .du-footer-middle,
  .du-footer-right {
    padding: 16px !important;
  }

  .du-footer-left-title,
  .du-footer-middle-title,
  .du-footer-right-title {
    font-size: 16px !important;
  }
}
/* =====================================================
   DU FOOTER – RESET DARK THEME BACKGROUND
   (Works with Solo & similar themes)
   ===================================================== */

/* 1. Reset footer region background */
.site-footer,
.footer,
.region-footer,
.footer-region,
footer {
  background-color: #f6f6f6 !important;  /* DU-style light grey */
  background-image: none !important;
  color: #333333 !important;
}

/* 2. Remove dark overlays / shadows if any */
.site-footer::before,
.site-footer::after {
  display: none !important;
}

/* 3. Ensure blocks stay clean on light background */
.du-footer-left,
.du-footer-middle,
.du-footer-right {
  background-color: #ffffff !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

/* 4. Restore Google Map colors (IMPORTANT) */
.du-footer-map-wrapper,
.du-footer-map-wrapper iframe {
  filter: none !important;
}

/* 5. Prevent inherited white text */
.du-footer-left *,
.du-footer-middle *,
.du-footer-right * {
  color: inherit;
}
/* =====================================================
   DU FOOTER – UNIFORM HEIGHT FIX (CSS ONLY)
   Based on actual rendered layout in screenshot
   ===================================================== */

/* 1. Make all footer blocks behave like equal cards */
.du-footer-left,
.du-footer-middle,
.du-footer-right {
  display: flex;
  flex-direction: column;
  min-height: 340px;              /* adjust once, applies to all */
}

/* 2. Ensure content flows naturally inside blocks */
.du-footer-left > *,
.du-footer-middle > *,
.du-footer-right > * {
  flex-shrink: 0;
}

/* 3. Control map height so it doesn’t stretch the block */
.du-footer-map-wrapper {
  height: 220px;                  /* fixed visual height */
  padding-top: 0 !important;      /* disable aspect-ratio trick */
}

/* 4. Force iframe to respect wrapper height */
.du-footer-map-wrapper iframe {
  width: 100%;
  height: 100%;
}

/* 5. If any block has less content, keep spacing clean */
.du-footer-left,
.du-footer-right {
  justify-content: flex-start;
}

/* 6. Mobile – remove forced height (stacked layout) */
@media (max-width: 768px) {
  .du-footer-left,
  .du-footer-middle,
  .du-footer-right {
    min-height: auto;
  }

  .du-footer-map-wrapper {
    height: 200px;
  }
}

/* Footer (Right) Contact Us Ends Here */

/*Footer Border Starts Here*/
/* =====================================================
   DU FOOTER – PURPLE HEADER BAR (ALL SECTIONS)
   ===================================================== */

/* Remove spacing so header bar sits flush */
.du-footer-left,
.du-footer-middle,
.du-footer-right {
  padding: 0 !important;
  overflow: hidden;
}

/* Common purple header style */
.du-footer-left-title,
.du-footer-middle-title,
.du-footer-right-title {
  background-color: #7b3f98;   /* same purple */
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700;
  margin: 0 !important;
  padding: 12px 16px;
  line-height: 1.4;
}

/* Restore inner spacing for content */
.du-footer-left-links,
.du-footer-map-wrapper,
.du-footer-contact-line {
  margin: 16px;
}

/* Fix map alignment specifically */
.du-footer-map-wrapper {
  margin: 16px;
}

/* Fix contact text spacing */
.du-footer-contact-line {
  margin: 0 16px 8px 16px;
}
/*Footer Border Ends Here*/

/*Double Scroll Starts Here*/
body {
    font-family: 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #eef2f7, #f8fafc);
}

.dlis-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 30px 15px;
}

/* Title */
.dlis-title {
    background-color: #7b3f98;
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding: 12px 16px;
    text-align: center;
    letter-spacing: normal;

width: 100%;
border-radius: 6px;
}

.dlis-wrapper {
    padding: 30px 0; /* remove side padding */
    margin-top: 0 !important;
    padding-top: 0 !important;
}

body {
    margin-top: 0 !important;
}

.dlis-title:first-child {
    margin-top: 0 !important;
}

/* Slider */
.dlis-slider {
    overflow: hidden;
    position: relative;
}

/* Track */
.dlis-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.dlis-track-reverse {
    animation: scroll 25s linear infinite reverse;
}

/* Pause on hover */
.dlis-slider:hover .dlis-track {
    animation-play-state: paused;
}

/* Card */
.dlis-card {
    min-width: 220px;
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.6);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.dlis-card:hover {
    transform: translateY(-6px);
}

/* Image */
.dlis-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* Text */
.dlis-card h4 {
    margin: 8px 0 5px;
    font-size: 16px;
}

.dlis-card p {
    margin: 0;
    font-size: 13px;
    color: #555;
text-align: center;
}

.dlis-card span {
    font-size: 12px;
    color: #888;
text-align: center;
}

/* Infinite Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/*Double Scroll Ends Here*/


/* Remove top gap from Drupal/section wrappers */
.region-content,
.block,
.block-block-content,
.layout-content,
.section,
.container,
.row {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove gap before first element */
.region-content > *:first-child,
.block > *:first-child {
    margin-top: 0 !important;
}

main,
.main-content,
.site-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Remove gap ABOVE your section only */
.dlis-wrapper {
    margin-top: 0 !important;
}

/* Remove margin from Drupal block wrapper */
.block {
    margin-bottom: 0 !important;
}

/* Remove hidden block title spacing */
.block > h2 {
    display: none;
}

/* Remove first child margin collapse */
.dlis-wrapper > *:first-child {
    margin-top: 0 !important;
}