.widget{
    border:0;
}
.footer-widget.widget_nav_menu a {
    margin-bottom: 13px;
}

.main-menu > ul > li {
        margin: 0px 4px !important;
    }
.main-menu a{
    font-size: 16px;
}
.container-fluid{
    padding-right: var(--bs-gutter-x, 2rem) !important;
    padding-left: var(--bs-gutter-x, 2rem) !important;
}


.header-info-right{
    gap: 20px;
    
}

.hero-1 .th-hero-bg::before{
  background: transparent !important;
}
.menu-area {
    background: linear-gradient(
        180deg,
        rgba(3, 6, 14, 0.8) 0%,
        rgba(3, 6, 14, 0) 100%
    );
}

/* om-start*/

/* ================================
   ARTICLE ACCORDION STYLES
   ================================ */
/* ============================================
   YEAR TABS STYLING (Browse Issues)
   ============================================ */
   /* about  */
/* Rankings Section */
/* Programs Section */
/* Info Cards Section */
/* Info Cards Section */
/* Info Cards Section - Fixed Version */
/* Info Cards Section - Using background-image approach */

/* Info Cards Section - Fixed stretching issue */
/* Staff Container Styles */
/* ==========================================
   KNOWLEDGE RESOURCE CENTRE - HORIZONTAL TABS LAYOUT
   ========================================== */

/* Secondary tabs row (Home, About, Membership, etc.) */
/* faculty card  */
/* FACULTY GRID */
/* Grid Container for Faculty Cards */

.faculty-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Individual Faculty Card */
.faculty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faculty-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Image Styling */
.faculty-card img {
  width: 100%;
  max-width: 220px;
  max-height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  display: block;
  margin: 0 auto 20px;
}

/* Text Styling */
.faculty-card h4 {
  margin: 10px 0 8px;
  text-align: center;
  color: #c41e3a;
  font-size: 20px;
  font-weight: 600;
}

.faculty-card p {
  margin: 5px 0;
  text-align: center;
  color: #333;
}

.faculty-card .designation {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 5px;
}

.faculty-card .qualification {
  font-style: italic;
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Button Styling */
.view-profile-btn {
  background-color: #ffc107;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.view-profile-btn:hover {
  background-color: #ffb300;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .faculty-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .faculty-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.faculty-card {
  text-align: center;
  background: #fff;
  padding: 16px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}
.faculty-card h4 {
  color: #c40000;
  margin: 8px 0;
}
.faculty-card .designation,
.faculty-card .qualification {
  font-size: 14px;
  margin-bottom: 6px;
}
.view-profile-btn {
  margin-top: 10px;
  padding: 8px 16px;
  background: #feca14;
  
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}
.view-profile-btn:hover {
  background-color: #c02222;
  color: #fff;
}
/* MODAL */
.faculty-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}

.modal-content {
  background: #fff;
  max-width: 800px;
  margin: 60px auto;
  padding: 24px;
  border-radius: 12px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 26px;
  cursor: pointer;
}

.modal-header {
  display: flex;
  gap: 20px;
}

.modal-header img {
  width: 100%;
  max-width: 220px;
  max-height: 220px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  display: block;
  margin: 0 auto 20px;
}

@media (max-width: 768px) {
  .modal-header {
    flex-direction: column;
    text-align: center;
  }
}

/* faculty card end  */

.spec-content {
  display: none;
}

.spec-content.active {
  display: block;
}

.krc-secondary-tabs {
  margin-top: 20px;
  margin-bottom: 30px;
}

.krc-secondary-tabs .specialisation-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.krc-secondary-tabs .spec-tab-btn {
  padding: 10px 20px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
  font-size: 14px;
}

.krc-secondary-tabs .spec-tab-btn:hover {
  background: #e8e8e8;
}

.krc-secondary-tabs .spec-tab-btn.active {
  background: #8B0000;
  color: rgb(1, 1, 1);
  font-weight: 600;
  border-color: #8B0000;
}

/* Content Area - FULL WIDTH */
.krc-content-area {
  width: 100%;
}

/* Hide inactive content */
.spec-content {
  display: none;
}

.spec-content.active {
  display: block;
}

/* Staff Container Styles */
.staff-container {
  display: flex;
  gap: 40px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.staff-member {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #f9f9f9;
}

.staff-photo {
  margin-bottom: 15px;
}

.staff-photo img {
  max-width: 200px;
  height: 200px;
  border: 3px solid #8B0000;
  padding: 5px;
  background: #fff;
  border-radius: 4px;
}

.staff-member h5 {
  color: #8B0000;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.qualification {
  font-style: italic;
  color: #555;
  margin: 5px 0;
  font-size: 14px;
}

.designation {
  font-weight: 600;
  margin: 10px 0;
  color: #333;
}

.contact, .phone {
  margin: 8px 0;
  font-size: 14px;
  color: #666;
}

.contact a {
  color: #0066cc;
  text-decoration: none;
  word-break: break-word;
}

.contact a:hover {
  text-decoration: underline;
}

/* KRC Slider Styles */
.krc-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 20px 0;
  overflow: hidden;
  border-radius: 8px;
}

.krc-slides {
  position: relative;
  width: 100%;
  height: 400px;
}

.krc-slides img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.krc-slides img.active {
  opacity: 1;
}

.krc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px 20px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
  transition: background 0.3s;
}

.krc-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}

.krc-arrow.left {
  left: 10px;
}

.krc-arrow.right {
  right: 10px;
}

.krc-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.krc-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background 0.3s;
}

.krc-dots span.active {
  background: white;
}

.krc-useful {
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}

.krc-useful h4 {
  margin-bottom: 15px;
  color: #8B0000;
}

.krc-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.krc-links-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.krc-links-grid li {
  margin-bottom: 10px;
}

.krc-links-grid a {
  color: #0066cc;
  text-decoration: none;
}

.krc-links-grid a:hover {
  text-decoration: underline;
}

/* Newsletter Grid */
.newsletter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.newsletter-item {
  text-align: center;
}

.newsletter-item img {
  width: 100%;
  height: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.newsletter-item p {
  margin-top: 10px;
  font-size: 14px;
}

/* Library Table Styles */
.library-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.library-table thead {
  background: #c02222;
  color: white;
}

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

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

.library-table tbody tr:hover {
  background: #f0f0f0;
}

/* About Library Section */
.about-library h4,
.library-membership h4,
.borrowing-facility h4 {
  color: #8B0000;
  margin-bottom: 15px;
  font-size: 20px;
}

.about-library p,
.library-membership p,
.borrowing-facility p {
  line-height: 1.8;
  margin-bottom: 15px;
}

.rules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.rules h5 {
  color: #8B0000;
  margin-bottom: 10px;
}

.rules ul {
  list-style: disc;
  padding-left: 20px;
}

.rules li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Membership Rules */
.membership-rules {
  list-style: disc;
  padding-left: 20px;
}

.membership-rules li {
  margin-bottom: 15px;
  line-height: 1.8;
}

/* E-Resources List */
.eresources-list {
  list-style: disc;
  padding-left: 20px;
  column-count: 2;
  column-gap: 30px;
}

.eresources-list li {
  margin-bottom: 10px;
  break-inside: avoid;
}

/* Publication Domains */
.publication-domains {
  list-style: disc;
  padding-left: 20px;
  column-count: 2;
  column-gap: 30px;
}

.publication-domains li {
  margin-bottom: 10px;
  break-inside: avoid;
}

/* Library Committee Table */
.library-committee-table {
  overflow-x: auto;
}

/* Section Title */
.section-title {
  color: #8B0000;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Services Sub-tabs */
[data-spec-content="services"] > .specialisation-tabs-wrapper {
  margin-bottom: 20px;
}

[data-spec-content="services"] > .specialisation-tabs-wrapper .specialisation-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

[data-spec-content="services"] .spec-tab-btn {
  padding: 10px 20px;
  border: 1px solid #ddd;
  background: #f7f7f7;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
}

[data-spec-content="services"] .spec-tab-btn:hover {
  background: #e8e8e8;
}

[data-spec-content="services"] .spec-tab-btn.active {
  background: #8B0000;
  color: white;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .krc-secondary-tabs .specialisation-tabs {
    flex-direction: column;
  }

  .krc-secondary-tabs .spec-tab-btn {
    width: 100%;
  }

  .staff-container {
    flex-direction: column;
  }

  .staff-member {
    max-width: 100%;
  }

  .krc-slides {
    height: 300px;
  }

  .krc-links-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .eresources-list,
  .publication-domains {
    column-count: 1;
  }

  .rules {
    grid-template-columns: 1fr;
  }

  .library-table {
    font-size: 14px;
  }

  .library-table th,
  .library-table td {
    padding: 8px;
  }

  [data-spec-content="services"] > .specialisation-tabs-wrapper .specialisation-tabs {
    flex-direction: column;
  }

  [data-spec-content="services"] .spec-tab-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .krc-arrow {
    padding: 10px 15px;
    font-size: 14px;
  }

  .krc-slides {
    height: 250px;
  }
}

/* Infrastructure styles */
.infra-intro {
  line-height: 1.8;
  margin-bottom: 15px;
}

.infra-subtitle {
  color: #8B0000;
  margin: 25px 0 15px 0;
  font-size: 18px;
}

.infra-list {
  list-style: none;
  padding: 0;
}

.infra-list li {
  margin-bottom: 20px;
  line-height: 1.8;
}

.infra-list strong {
  color: #8B0000;
  display: block;
  margin-bottom: 5px;
}

.infra-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.infra-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  border: 1px solid #ddd;
}

/* Table styling for borrowing facility */
.borrowing-table th,
.borrowing-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.borrowing-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.borrowing-rules {
    list-style-type: disc;
    padding-left: 25px;
    line-height: 1.8;
}

.borrowing-rules li {
    margin-bottom: 10px;
}
.quote-wrapper {
  max-width: 1100px;
  margin: 60px auto;
  position: relative;
  font-family: 'Inter', sans-serif;
}

.quote-box {
  background: #f2c62f; /* SCMS yellow */
  border-radius: 60px;
  padding: 50px 60px 80px;
  position: relative;
}

/* Bottom-right tail */
.quote-box::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: 120px;
  width: 120px;
  height: 80px;
  background: #f2c62f;
  border-bottom-right-radius: 40px;
}

.quote-box p {
  font-size: 20px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 24px;
}

/* Author name */
.author {
  margin-top: 60px;
  font-size: 22px;
  color: #c4151c; /* red */
}


.info-card {
    position: relative;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    background-size: cover;
    background-position: center center; /* Center the image */
    background-repeat: no-repeat;
    background-color: #cccccc;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center; /* Center the image */
    background-repeat: no-repeat;
    background-image: inherit;
    transition: transform 0.3s ease;
    z-index: 0;
}

.info-card:hover::before {
    transform: scale(1.05);
}

.info-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 1;
}

.info-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 35px 30px;
    color: #ffffff;
}

.info-card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 22px;
    line-height: 1.4;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.info-card-btn {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #D4AF37;
    color: #ffffff;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
}

.info-card-btn:hover {
    background-color: #D4AF37;
    color: #000000;
    text-decoration: none;
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .info-card {
        height: 400px;
    }

    .info-card-title {
        font-size: 20px;
    }

    .info-card-content {
        padding: 30px 25px;
    }
}

@media (max-width: 991px) {
    .info-card {
        height: 380px;
    }

    .info-card-title {
        font-size: 18px;
        line-height: 1.3;
    }

    .info-card-btn {
        font-size: 15px;
        padding: 12px 28px;
    }

    .info-card-content {
        padding: 28px 24px;
    }
}

@media (max-width: 767px) {
    .info-card {
        height: 350px;
    }

    .info-card-title {
        font-size: 17px;
    }

    .info-card-content {
        padding: 25px 22px;
    }

    .info-card-btn {
        font-size: 14px;
        padding: 11px 26px;
    }
}

@media (max-width: 575px) {
    .info-card {
        height: 400px;
    }

    .info-card-title {
        font-size: 18px;
        line-height: 1.4;
    }

    .info-card-content {
        padding: 30px 25px;
    }

    .info-card-btn {
        font-size: 15px;
        padding: 12px 28px;
        align-self: stretch;
        text-align: center;
    }
}
.programs-title {
    color: #C02222;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.programs-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin: 0 auto 40px;
    text-align: center;
}

.programs-description strong {
    font-weight: 600;
    color: #000000;
}

.programs-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Button styling */
.th-btn.style-border2.border-red-color {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #C02222;
    color: #C02222;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.th-btn.style-border2.border-red-color:hover {
    background-color: #C02222;
    color: #ffffff;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .programs-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .programs-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .programs-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .programs-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    .th-btn.style-border2.border-red-color {
        font-size: 14px;
        padding: 12px 28px;
    }
    
    .programs-buttons {
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .programs-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .programs-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .th-btn.style-border2.border-red-color {
        font-size: 13px;
        padding: 10px 24px;
    }
    
    .programs-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .programs-buttons .th-btn {
        width: 100%;
        max-width: 280px;
    }
}
.ranking-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: block;
    filter: invert(27%) sepia(89%) saturate(2198%) hue-rotate(346deg) brightness(92%) contrast(88%);
}

.ranking-title {
    color: #C02222;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.ranking-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    color: #000000;
    margin: 0 auto 40px;
    text-align: center;
}

.ranking-description strong {
    font-weight: 600;
    color: #000000;
}

/* Button styling */
.th-btn.style-border2.border-red-color {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #C02222;
    color: #C02222;
    background-color: transparent;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.th-btn.style-border2.border-red-color:hover {
    background-color: #C02222;
    color: #ffffff;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .ranking-icon {
        width: 70px;
        height: 70px;
    }

    .ranking-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .ranking-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .ranking-icon {
        width: 60px;
        height: 60px;
    }

    .ranking-title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .ranking-description {
        font-size: 15px;
        line-height: 1.5;
        margin-bottom: 30px;
    }
    
    .th-btn.style-border2.border-red-color {
        font-size: 14px;
        padding: 12px 28px;
    }
}

@media (max-width: 575px) {
    .ranking-icon {
        width: 50px;
        height: 50px;
    }

    .ranking-title {
        font-size: 24px;
        margin-bottom: 18px;
    }

    .ranking-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 25px;
    }
    
    .th-btn.style-border2.border-red-color {
        font-size: 13px;
        padding: 10px 24px;
    }
}
    .director-section-title {
        color: #C02222;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 42px;
        margin-bottom: 30px;
    }

 .director-message-box {
    /* arrow control */
    --b: 28px;   /* arrow base */
    --h: 20px;   /* arrow height */
    --bg: #F4C430; /* YOUR yellow */

    max-width: 820px;
    padding: 30px;
    color: #000;
    font-size: 18px;
    line-height: 28px;

    border-radius: 32px;
    border-bottom-right-radius: 0;

    background: var(--bg);
    position: relative;
}

.director-message-box::before {
    content: "";
    position: absolute;
    inset: 0 calc(-1 * var(--h)) calc(-1 * var(--h)) 0;
    background: var(--bg);

    clip-path: polygon(
        100% 100%,
        calc(100% - var(--h)) calc(100% - var(--b) - var(--h)),
        calc(100% - var(--h) - var(--b)) calc(100% - var(--h))
    );
}
    .director-message-text {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 28px;
        color: #000000;
        margin-bottom: 25px;
    }

    .director-photo {
        width: 350px;
        height: 350px;
        border-radius: 50%;
        object-fit: cover;
        border: 10px solid #E0F7FA;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        max-width: 100%;
        margin-top: 80px;
    }

    .director-info {
        margin-top: 60px;
        padding-left: 40px;
    }

    .director-name {
        color: #C02222;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 5px;
    }

    .director-designation {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 18px;
        color: #000000;
        margin-bottom: 5px;
    }

    .director-qualification {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 16px;
        color: #000000;
        margin-bottom: 0;
    }

    /* Large Desktop */
    @media (min-width: 1400px) {
        .director-message-box {
            padding: 60px;
        }
    }

    /* Tablet and below */
    @media (max-width: 991px) {
        .director-section-title {
            font-size: 36px;
            margin-bottom: 25px;
        }

        .director-message-box {
            padding: 40px;
            margin-bottom: 50px;
        }

        .director-message-box::after {
            right: 60px;
            bottom: -35px;
            border-left: 40px solid transparent;
            border-top: 40px solid #F1C329;
        }

        .director-photo {
            width: 300px;
            height: 300px;
            margin-top: 0;
        }

        .director-message-text {
            font-size: 16px;
            line-height: 24px;
        }

        .director-name {
            font-size: 22px;
        }

        .director-designation {
            font-size: 16px;
        }

        .director-qualification {
            font-size: 15px;
        }
    }

    /* Mobile */
    @media (max-width: 767px) {
        .director-section-title {
            font-size: 28px;
            margin-bottom: 20px;
        }

        .director-message-box {
            padding: 30px;
            border-radius: 40px;
            margin-bottom: 40px;
        }

        .director-message-box::after {
            border-left: 35px solid transparent;
            border-top: 35px solid #F1C329;
            right: 50px;
            bottom: -30px;
        }

        .director-message-text {
            font-size: 15px;
            line-height: 22px;
            margin-bottom: 20px;
        }

        .director-photo {
            width: 250px;
            height: 250px;
        }

        .director-name {
            font-size: 20px;
        }

        .director-designation {
            font-size: 15px;
        }

        .director-qualification {
            font-size: 14px;
        }
    }

    /* Small Mobile */
    @media (max-width: 575px) {
        .director-section-title {
            font-size: 24px;
        }

        .director-message-box {
            padding: 25px;
            border-radius: 35px;
            margin-bottom: 35px;
        }

        .director-message-box::after {
            border-left: 30px solid transparent;
            border-top: 30px solid #F1C329;
            right: 40px;
            bottom: -25px;
        }

        .director-message-text {
            font-size: 14px;
            line-height: 20px;
        }

        .director-photo {
            width: 200px;
            height: 200px;
        }
    }
   
 .vision-mission-title {
        color: #C02222;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 42px;
        margin-bottom: 20px;
    }

    .vision-mission-text {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        color: #000000;
        margin-bottom: 30px;
    }

    .vision-mission-img {
        border-radius: 20px;
        width: 80%;
        max-width: 400px;
        height: auto;
        object-fit: cover;
    }

    .mission-list {
        list-style: none;
        padding-left: 0;
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        color: #000000;
    }

    .mission-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 15px;
    }

    .mission-list li:before {
        content: "•";
        color: #C02222;
        font-weight: bold;
        font-size: 24px;
        position: absolute;
        left: 0;
        top: -2px;
    }

    /* Tablet and below */
    @media (max-width: 991px) {
        .vision-mission-title {
            font-size: 36px;
            margin-bottom: 15px;
        }

        .vision-mission-text,
        .mission-list {
            font-size: 16px;
            line-height: 22px;
        }

        .mission-list li {
            margin-bottom: 12px;
        }
    }

    /* Mobile */
    @media (max-width: 767px) {
        .vision-mission-title {
            font-size: 28px;
        }

        .vision-mission-text,
        .mission-list {
            font-size: 15px;
            line-height: 20px;
        }
    }

    /* Small Mobile */
    @media (max-width: 575px) {
        .vision-mission-title {
            font-size: 24px;
        }

        .vision-mission-text,
        .mission-list {
            font-size: 14px;
            line-height: 20px;
        }
    }
      .who-we-are-title {
        color: #C02222;
        font-family: 'Inter', sans-serif;
        font-weight: 600;
        font-size: 42px;
        margin-bottom: 30px;
    }
    
    .about-paragraph {
        font-family: 'Inter', sans-serif;
        font-weight: 400;
        font-size: 18px;
        line-height: 24px;
        color: #000000;
        letter-spacing: 0%;
    }
    
    .about-paragraph p {
        margin-bottom: 20px;
        color: #000000 !important;
    }
    
    .who-we-are-img {
        border-radius: 20px;
        width: 490px;
        height: 466px;
        object-fit: cover;
        max-width: 100%;
    }
    
    /* Tablet and below */
    @media (max-width: 991px) {
        .who-we-are-title {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .about-paragraph {
            font-size: 16px;
            line-height: 22px;
            margin-bottom: 30px;
        }
        
        .who-we-are-img {
            width: 100%;
            height: auto;
            max-width: 490px;
        }
    }
    
    /* Mobile */
    @media (max-width: 767px) {
        .who-we-are-title {
            font-size: 28px;
            margin-bottom: 15px;
        }
        
        .about-paragraph {
            font-size: 15px;
            line-height: 20px;
        }
        
        .who-we-are-img {
            width: 100%;
            height: auto;
        }
    }
    
    /* Small Mobile */
    @media (max-width: 575px) {
        .who-we-are-title {
            font-size: 24px;
        }
        
        .about-paragraph {
            font-size: 14px;
            line-height: 20px;
        }
    }
    .about-paragraph p {
        color: #000000 !important;
        font-family: 'Inter', sans-serif !important;
        font-weight: 400 !important;
        font-size: 18px !important;
        line-height: 24px !important;
    }
   .bg-about-height{
        min-height: 650px;
   }
   /* about-end */
   
.inner-page-hero1 .th-hero-bg::before,
.inner-page-hero1 .th-hero-bg::after {
  background: rgba(0, 0, 0, 0.25) !important;
}
/* Academics Hero Title */
.inner-page-hero1 .hero-inner {
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

/* Override container and row positioning */
.inner-page-hero1 .container,
.inner-page-hero1 .th-container2 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

.inner-page-hero1 .row {
  width: 100% !important;
  margin: 0 !important;
  justify-content: center !important;
}

.inner-page-hero1 .col-lg-12 {
  display: flex !important;
  justify-content: center !important;
}

.inner-page-hero1 .hero-style1 {
  width: 100%;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.inner-page-hero .hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-align: center !important;
}
/* ===============================
   YEAR TABS (ARCHIVES)
================================ */

/* Wrapper */
.year-tabs-wrapper {
  margin: 30px 0 20px;
}

/* Tabs container (HORIZONTAL) */
.year-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

/* Individual tab buttons */
.year-tab-btn {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 6px;
  background-color: #e9e9e9;
  color: #000000;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* Hover state */
.year-tab-btn:hover {
  color: #C02222;
  border-bottom: 3px solid #C02222;
  font-weight: 600;
}

/* Active state */
.year-tab-btn.active {
  color: #C02222;
  border-bottom: 3px solid #C02222;
  font-weight: 600;
}

/* ===============================
   YEAR CONTENT
================================ */

.year-content-wrapper {
  margin-top: 20px;
}

.year-content {
  display: none;
}

.year-content.active {
  display: block;
}

/* ===============================
   MOBILE SCROLL (OPTIONAL)
================================ */

@media (max-width: 768px) {
  .year-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .year-tab-btn {
    flex-shrink: 0;
  }
}
/* FORCE horizontal tabs inside sidebar column */
.year-tabs {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

/* Make sidebar wide enough */
.archives-sidebar,
.year-tabs-wrapper {
  width: 100%;
}

/* Reduce button width so they fit */
.year-tab-btn {
  padding: 8px 14px;
  font-size: 14px;
}
/* FIX: Allow year tabs to scroll horizontally */
.year-tabs-wrapper {
  width: 100%;
  overflow-x: auto;
}

/* Force horizontal row */
.year-tabs {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 12px;
  min-width: max-content;
}

/* Prevent buttons from shrinking */
.year-tab-btn {
  flex-shrink: 0;
}

/* Optional: nicer scrollbar */
.year-tabs-wrapper::-webkit-scrollbar {
  height: 6px;
}

.year-tabs-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}


/* No Content Message */
.no-content-message {
    padding: 40px 20px;
    text-align: center;
    color: #666;
    font-style: italic;
    font-size: 16px;
    background-color: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

/* ============================================
   ARCHIVE NESTED TABS STYLING
   ============================================ */

.archive-nested-tabs-wrapper {
    margin: 20px 0;
}

.archive-nested-tabs-wrapper h5 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.archive-nested-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
    padding: 15px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.archive-nested-tab-btn {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 6px !important;
    background-color: #e9e9e9 !important;
    color: #000000 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
    white-space: nowrap !important;
}

.archive-nested-tab-btn:hover {
    color: #C02222 !important;
    border-bottom: 3px solid #C02222 !important;
    font-weight: 600 !important;
    background-color: #e9e9e9 !important;
}

.archive-nested-tab-btn.active {
    color: #C02222 !important;
    border-bottom: 3px solid #C02222 !important;
    font-weight: 600 !important;
    background-color: #e9e9e9 !important;
}

/* Archive Year Content Wrapper */
.archive-year-content-wrapper {
    margin-top: 15px;
}

.archive-year-content {
    display: none;
}

.archive-year-content.active {
    display: block;
}

/* ============================================
   VOLUME ACCORDION STYLING
   ============================================ */

.volume-accordion {
    margin-top: 20px;
}

.volume-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
}

.volume-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f8f8f8;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.volume-header:hover {
    background-color: #efefef;
}

.volume-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.volume-toggle {
    font-size: 20px;
    font-weight: bold;
    color: #666;
    transition: transform 0.3s ease;
}

.volume-content {
    display: none;
    padding: 20px;
    background-color: #fff;
}

.volume-item.active .volume-content {
    display: block;
}

/* ============================================
   ISSUE ACCORDION STYLING
   ============================================ */

.issue-item {
    margin-bottom: 12px;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    overflow: hidden;
}

.issue-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    background-color: #fafafa;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.issue-header:hover {
    background-color: #f0f0f0;
}

.issue-header span:first-child {
    font-size: 15px;
    font-weight: 500;
    color: #444;
}

.issue-toggle {
    font-size: 16px;
    color: #666;
    transition: transform 0.3s ease;
}

.issue-content {
    display: none;
    padding: 15px;
    background-color: #fff;
}

.issue-item.active .issue-content {
    display: block;
}

/* ============================================
   ARTICLE ACCORDION STYLING
   ============================================ */

.article-item {
    margin-bottom: 10px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    overflow: hidden;
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 15px;
    background-color: #fcfcfc;
    cursor: pointer;
    transition: background-color 0.3s ease;
    gap: 15px;
}

.article-header:hover {
    background-color: #f5f5f5;
}

.article-title-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

.article-toggle {
    font-size: 14px;
    color: #999;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.article-content {
    display: none;
    padding: 15px;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
}

.article-item.active .article-content {
    display: block;
}

.article-authors,
.article-pages {
    margin-bottom: 10px;
    font-size: 14px;
    color: #666;
}

.article-full-content {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.article-full-content h6 {
    font-size: 15px;
    font-weight: 600;
    color: #c41e3a;
    margin-bottom: 10px;
    margin-top: 20px;
}

.article-full-content h6:first-child {
    margin-top: 0;
}

.article-full-content p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    text-align: justify;
    margin-bottom: 15px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    
    .year-tabs {
        flex-direction: column;
    }
    
    .year-tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .archive-nested-tabs {
        flex-direction: column;
    }
    
    .archive-nested-tab-btn {
        width: 100%;
        text-align: center;
    }
    
    .volume-header,
    .issue-header,
    .article-header {
        padding: 10px 12px;
    }
    
    .article-header {
        flex-direction: column;
        gap: 8px;
    }
    
    .article-title-text {
        font-size: 13px;
    }
}

/* ============================================
   SMOOTH TRANSITIONS
   ============================================ */

.volume-content,
.issue-content,
.article-content {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Article Item (4th Level) */
.archive-article-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.archive-article-item:hover {
  border-color: #007bff;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.1);
}

.archive-article-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: #fafafa;
  cursor: pointer;
  transition: all 0.3s ease;
  gap: 10px;
}

.archive-article-header:hover {
  background: #f0f0f0;
}

.archive-article-item.active .archive-article-header {
  background: #e3f2fd;
  border-bottom: 1px solid #bbdefb;
}

.article-title-text {
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  line-height: 1.4;
  flex: 1;
  font-family: 'Inter', sans-serif;
}

.article-toggle {
  font-size: 12px;
  color: #6c757d;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.archive-article-item.active .article-toggle {
  transform: rotate(180deg);
  color: #007bff;
}

/* Article Content */
.archive-article-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  padding: 0 14px;
  background: #ffffff;
}

.archive-article-item.active .archive-article-content {
  max-height: 5000px;
  padding: 14px;
}

/* Article Metadata */
.article-authors,
.article-pages {
  font-size: 13px;
  color: #6c757d;
  margin: 0 0 8px 0;
  line-height: 1.5;
}

.article-authors strong,
.article-pages strong {
  color: #495057;
  font-weight: 600;
}

/* Article Full Content */
.article-full-content {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid #e9ecef;
}

.article-full-content h6 {
  font-size: 15px;
  font-weight: 600;
  color: #2c3e50;
  margin: 16px 0 8px 0;
  font-family: 'Inter', sans-serif;
}

.article-full-content h6:first-child {
  margin-top: 0;
}

.article-full-content p {
  font-size: 14px;
  color: #495057;
  line-height: 1.7;
  margin-bottom: 12px;
  text-align: justify;
}

/* Issue Toggle Update */
.issue-toggle {
  font-size: 16px;
  font-weight: bold;
  color: #6c757d;
  transition: transform 0.3s ease;
}

.archive-issue-item.active .issue-toggle {
  transform: rotate(45deg);
  color: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
  .archive-article-header {
    padding: 10px 12px;
  }

  .article-title-text {
    font-size: 13px;
  }

  .article-toggle {
    font-size: 11px;
  }

  .archive-article-content {
    padding: 0 12px;
  }

  .archive-article-item.active .archive-article-content {
    padding: 12px;
  }

  .article-full-content h6 {
    font-size: 14px;
  }

  .article-full-content p {
    font-size: 13px;
  }

  .article-authors,
  .article-pages {
    font-size: 12px;
  }
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Keep table width larger than mobile */
.constitution-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.constitution-table th,
.constitution-table td {
  padding: 10px 12px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

/* Optional: better header look */
.constitution-table thead th {
  background: #f2f2f2;
  font-weight: 600;
}

p-top0{
  padding-top: 0px;
}
.p-top20{
  padding-top: 20px;
}
.p-top-bottom{
  padding-top: 20px;
  padding-bottom: 20px;
}
/* Placement report list typography (excluding links) */
.placement-report-list li strong {
  color:#000;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 300;      /* Light */
    line-height: 22px;
    letter-spacing: 0;
    margin-bottom: 10px;
    display: inline-block;
}


.placement-report-list li a {
    font-family: inherit; /* or your default link font */
    font-size: inherit;
    font-weight: 400;     /* normal */
}

/* om-end */
 /*Av*/

/*event strt*/
.events-nopadding{
  padding-top: 0px !important;
  padding-bottom: 30px !important;
}

/* ==============================
   EVENT TAB CONTENT DESIGN
============================== */

.main-tab-content {
    display: none;
    text-align: center;
    padding: 30px 0;
}

.main-tab-content.active {
    display: block;
}

/* Image grid */
.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 25px;
}

.event-gallery-grid img {
    width: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.event-gallery-grid img:hover {
    transform: scale(1.05);
}

/* Title */
.event-title {
    color: #c02222;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

/* Description */
.event-desc {
    max-width: 900px;
    text-align: center;
    margin: auto;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* Mobile */
@media (max-width: 768px) {
    .event-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-gallery-grid img {
        height: 140px;
    }
}

.events-nobottom{
  margin-bottom: 0px !important;
}

.events-nobox{
  box-shadow: none !important;
}
/* ================= PAST EVENTS ================= */

.past-events-section {
    background: #fff7e6;
    padding: 60px 20px;
    text-align: center;
}

.past-events-title {
    color: #c02222;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
}

@media(min-width: 769px){
.past-events-card {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    padding-left: 0px !important;
    display: flex;
    align-items: center;
}
}

/* LEFT YEAR TABS */
@media(min-width: 769px){
.year-tabs {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 150px ;
}
}

@media(max-width: 767px){
.year-tabs {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
}

.year-tab {
    border: none;
    padding: 18px 28px;
    font-weight: 700;
    cursor: pointer;
    background: #f4c430;
    color: #000;
}

.year-tab.active {
    background: #c02222;
    color: #fff;
}

/* RIGHT SIDE */
.year-content-wrapper {
    flex: 1;
    border-left: 2px solid #c02222;
    padding-left: 30px;
}

.year-content {
    display: none;
}

.year-content.active {
    display: block;
}

/* TOP EVENT TABS */
.event-tabs {
    overflow: hidden;
    margin-bottom: 20px;
    text-align: left !important;
}

.event-tab {
    border: none;
    padding: 10px 28px;
    cursor: pointer;
    background: #e0e0e0;
    font-weight: 600;
}

.event-tab.active {
    background: #d5d5d5;
    color: #c02222;
}

/* IMAGE */
.event-image-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    display: none;
}

.event-image.active {
    display: block;
}

/* BUTTON */
.past-events-footer {
    margin-top: 30px;
}

.view-archive-btn {
    display: inline-block;
    border: 1.5px solid #c02222;
    color: #000;
    padding: 10px 28px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.view-archive-btn:hover {
    background: #c02222;
    color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
    .past-events-card {
        flex-direction: column;
        max-width: 1100px;
    margin: auto;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    }

    .year-tabs {
        flex-direction: row;
    }

    .year-content-wrapper {
        border-left: none;
        padding-left: 0;
        border-top: 2px solid #c02222;
        padding-top: 20px;
    }
}




.events-p{
  padding-bottom: 0px !important;
}


/*event end*/
 .club-tabs-section {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
}

/* ===== TITLE ===== */
.club-main-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #000;
}

/* ===== DESKTOP TABS ===== */
.club-tabs-desktop {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== TAB BUTTON ===== */
.club-tab-btn {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 6px !important;
    background-color: #e9e9e9 !important;
    color: #000000 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
    white-space: nowrap !important;
}

/* ===== ACTIVE TAB ===== */
.club-tab-btn:hover {
    background: #e9e9e9 !important;
    border-bottom: 3px solid #C02222 !important;
    
}

/* Red bottom border for active tab */
.club-tab-btn.active {
   color: #C02222 !important;
    border-bottom: 3px solid #C02222 !important;
    font-weight: 600 !important;
    background-color: #e9e9e9 !important;
}

/* ===== SEPARATOR LINE ===== */
.club-tabs-desktop::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #e2e2e2;
    margin-top: 18px;
}

/* ===== CONTENT WRAPPER ===== */
.club-content-wrapper {
    margin-top: 30px;
}

/* ===== CONTENT ===== */
.club-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.club-content.active {
    display: block;
}

.club-content h3 {
    color: #c02222;
    font-size: 26px;
    margin-bottom: 10px;
}

.club-content p{
  color: #000 !important;
}

/* ===== MOBILE DROPDOWN ===== */
.club-tabs-mobile {
    display: none;
    margin-bottom: 20px;
}

.club-tabs-mobile select {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .club-tabs-desktop {
        display: none;
    }
    .club-tabs-mobile {
        display: block;
    }
}

/* ===== ANIMATION ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/*end tabs*/

.black-color {
  color: #000;
}

.blink-btn-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.blink-btn {
  background: #C02222;
  color: #fff;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  position: relative;
   animation: softPulse 1s infinite;
  box-shadow: 0 0 0 rgba(192, 34, 34, 0.7);
  transition: transform 0.2s ease;
}

.blink-btn:hover {
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}

/* Glow / blink animation */
@keyframes softPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(192, 34, 34, 0.35);
  }
  50% {
    box-shadow: 0 0 10px 3px rgba(192, 34, 34, 0.45);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(192, 34, 34, 0.35);
  }
}


/*student corner end*/

.inner-hero-container{
  height: 450px;
}
.sparc-item {
  border: 1px solid #ddd;
  border-radius: 6px;
  margin-bottom: 12px;
  background: #fff;
}

.sparc-title {
  padding: 16px 20px;
  color:#000;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.sparc-title::after {
  content: "▾";
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

.sparc-item.active .sparc-title::after {
  transform: rotate(180deg);
}

.sparc-content {
  display: none;
  padding: 15px 20px 20px;
}

.sparc-item.active .sparc-content {
  display: block;
}


/* ol li , ul li{
  color: #000 !important;
} */

.student-row {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.student-video {
  width: 50%;
}

.student-right-content {
  width: 50%;
}

 .batch-content-wrapper p {
  color: #000 !important;
 }

 .batch-content p {
  color: #000 !important;
 }
.student-img {
   width: 299px !important; 
  height: 384px !important;        /* You can change this height */
  object-fit: cover;   /* Crops image nicely */
  border-radius: 6px;
}

.student-img1 {
  
  
  object-fit: cover;   /* Crops image nicely */
  border-radius: 6px;
}

.content-text1 p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
 
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
}
.profile-image-box {
  border: 4px solid #000;
  padding: 6px;
  display: inline-block;
}

.profile-image-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.specialisation-tabs, .inner-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.spec-tab-btn, .inner-tab-btn {
  padding: 10px 18px;
  border: 1px solid #000;
  background: #fff;
  cursor: pointer;
}

.spec-tab-btn.active, .inner-tab-btn.active {
  background: #000;
  color: #fff;
}

/* LEVEL 2 */
.spec-content {
  display: none;
}
.spec-content.active {
  display: block;
}

/* LEVEL 3 */
.inner-tab-content {
  display: none;
}
.inner-tab-content.active {
  display: block;
}

.nx-l2-panel,
.nx-l3-panel {
  display: none;
}

.nx-l2-panel.active,
.nx-l3-panel.active {
  display: block;
}

.nx-l2-btn,
.nx-l3-btn {
  padding: 10px 16px;
  cursor: pointer;
}

.nx-l2-btn.active,
.nx-l3-btn.active {
  background: #5b2d8b;
  color: #fff;
}
.gallery-box {
  width: 100%;
  height: 291px;       /* You can change height */
  overflow: hidden;
  border-radius: 6px;
}



.gallery-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;   /* This makes all images same size */
  transition: transform 0.4s ease;
}

.gallery-box:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-box1 {
  width: 100%;
 
  overflow: hidden;
  border-radius: 6px;
}
.gallery-box1:hover .gallery-img {
  transform: scale(1.05);
}

.gallery-box2 img{
  width: 100% !important;
 
  overflow: hidden;
  border-radius: 6px;
}

.gallery-img1 {
  width: 100% !important;
 
  object-fit: cover;   /* This makes all images same size */
  transition: transform 0.4s ease;
}

.gallery-img3 img {
  width: 100% !important;
 height: 291px !important;
  object-fit: cover;   /* This makes all images same size */
  transition: transform 0.4s ease;
}

.student-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.student-card {
 
  border-radius: 16px;
  overflow: hidden;
  
}



.student-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.student-info {
  padding: 16px 18px;
  font-size: 14px;
}

.student-info p {
  margin: 6px 0;
}

/* Mobile */
@media (max-width: 768px) {
  .student-grid {
    grid-template-columns: 1fr;
  }
}

.video-section {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*Av-end*/


/* AbhishekPN-Start */


/* Career Section */
.career p{
font-family: 'Inter', 18pt;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: #0b0b0b;
  margin-bottom: 20px;
  text-align: justify;
}

/* Contact Section */
.contact-section {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    font-family: Inter, Arial, sans-serif;
    color: #555;
}

.contact-title {
    color: #c0392b;
    font-weight: 600;
    margin-bottom: 25px;
}

.contact-heading {
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 15px;
}

.contact-row .icon {
    font-size: 16px;
    margin-top: 3px;
}

/* ADDRESS */
.contact-row.address {
    display: flex;
    flex-direction: column;   
    align-items: center;
    text-align: center;
}

.address-title {
    display: flex;
    align-items: center;
    gap: 1px;
    font-weight: 600;
    margin-bottom: 1px;
    color: #000;
}

.address-title i {
    font-size: 14px;
    color: #000;
}

.address-text {
    margin: 0;
    line-height: 1.6;
    color: #040404;
}

/* INLINE (TEL / MOBILE / EMAIL) */
.contact-row.inline {
    align-items: center;
}

.contact-row.inline strong,
.contact-row.inline span {
    white-space: nowrap;
    color: #000;
    
}

.map-container {
    width: 100%;
}
.info{
  padding-left: 200px;
  padding-top: 10px;
  
}
.info p{
  line-height: 1;
  color: #000;
  font-size: 14px;
  
}



/* Social Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: #e5e5e5;   
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-icons i {
    font-size: 20px;
    color: #333;            
}


/* ===== MOBILE VIEW ===== */
/* Career Section */
@media (max-width: 768px) {
    .career p {
        
        padding: 12px 15px;
        font-size: 14px;
        text-align: left;
    }
}
/* Contact Section  */
@media (max-width: 768px) {

  .contact-row.inline {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "icon title"
      "value value";
    justify-content: center;
    align-items: start;
    column-gap: 6px;   
    row-gap: 4px;
    text-align: left;
    margin-bottom: 14px;
    padding-left: 40px;
  }

  .contact-row.inline .icon {
    grid-area: icon;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;        
    margin: 0;
    padding: 0;
  }

  .contact-row.inline .icon-email {
    grid-area: icon;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;        
    margin: 0;
    padding: 0;
  }

  .contact-row.inline .icon i {
    font-size: 14px;
    line-height: 1;
    margin: 0;
    padding-left: 50px;
  }
  .contact-row.inline strong {
    grid-area: title;
    margin: 0;
    padding: 0;
    font-weight: 600;
    line-height: 1.2;
    padding-left: 20px;
  }

  .contact-row.inline .icon-email i {
    font-size: 14px;
    line-height: 1;
    margin: 0;
    padding-left: 65px;
  }

  .contact-row.inline .email-strong {
    grid-area: title;
    margin: 0;
    padding: 0;
    font-weight: 600;
    line-height: 1.2;
    padding-left: 29px;
  }

  .contact-row.inline .email{
    
    padding-right: 30px;
  }

  .contact-row.inline span {
    grid-area: value;
    margin: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.4;
  }

  .contact-row.inline .mobile-number{
    padding-left: 10px;
  }
}

@media (max-width: 768px) {
    /* Map section */
  .map-container {
    display: block !important;
    width: 100% !important;
    padding-top: 20px;
  }

  .map-container .info {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    padding: 12px;
    text-align: center;
    flex: none !important;
  }

  .map-container .info p {
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: break-word !important;
    font-size: 14px;
    line-height: 1.6;
    margin: 6px 0;
  }

  .map-container iframe {
    width: 100%;
    height: 250px;
    display: block;
    margin-top: 10px;
  }
}
/* AbhishekPN-End */

/* AbhishekPN-Start */
/* Parent container must control height */
/* Make ordered list look like paragraph text */
.spec-content ol {
    margin-left: 20px;        /* keep indentation */
    padding-left: 0;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    line-height: 1.6;
}

.spec-content ol li {
    margin-bottom: 8px;
}

.spec-content {
    display: none;
}

.spec-content.active {
    display: block;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.spec-content {
    display: none;
}

.spec-content.active {
    display: block;
}

 .batch-tab-btn{
   background-color: #e9e9e9 !important;
}

.nested-tab-btn{
      background-color: #e9e9e9 !important;
}
.semester-tab-btn {
    background-color: #e9e9e9 !important;
}
.semester-note {
    font-family: 'Inter', sans-serif;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: #333 !important;
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    padding: 15px 20px !important;
    background-color: #f8f9fa !important;
    border-left: 4px solid #dc3545 !important;
    border-radius: 4px !important;
}

.semester-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #dc3545;
    margin: 15px 0;
}

/* Add spacing for program table wrapper */
.program-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* For mobile - add horizontal padding */
@media (max-width: 768px) {
    .semester-note {
        margin-left: 15px;
        margin-right: 15px;
        padding: 12px 15px;
        font-size: 13px;
    }
}
.semester-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #dc3545;
    margin: 15px 0;
}
.batch-tabs-wrapper {
    margin: 30px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.batch-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.batch-tab-btn {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 6px !important;
    background-color: #e9e9e9 !important;
    color: #000000 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
    white-space: nowrap !important;
}

.batch-tab-btn:hover {
    background-color: #f5f5f5 !important;
}

.batch-tab-btn.active {
    color: #C02222 !important;
    border-bottom: 3px solid #C02222 !important;
    font-weight: 600 !important;
    background-color: #e9e9e9 !important;
}

/* Mobile Batch Tabs Dropdown */
.mobile-batch-tabs {
    display: none;
    margin: 20px 0 30px;
}

.batch-tabs-select {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C02222' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Batch Content */
.batch-content-wrapper {
    position: relative;
}

.batch-content {
    display: none;
}

.batch-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

.batch-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #dc3545;
    margin: 20px 0;
}

/* Responsive - Batch Tabs */
@media (max-width: 768px) {
    .batch-tabs {
        display: none !important;
    }
    
    .mobile-batch-tabs {
        display: block !important;
    }
    
    .batch-tabs-wrapper {
        margin: 20px 0;
    }
    
    .batch-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .batch-tabs-select {
        font-size: 14px;
        padding: 10px 12px;
        padding-right: 35px;
    }
}

/* ============================================
   BATCH CONTENT
   ============================================ */

.batch-content-wrapper {
    position: relative;
}

.batch-content {
    display: none;
}

.batch-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

.batch-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #dc3545;
    margin: 20px 0;
}

/* ============================================
   SEMESTER NESTED TABS (Desktop) - MATCHING SPECIALIZATION STYLE
   ============================================ */

.semester-tabs-wrapper {
    margin: 30px 0;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.semester-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.semester-tab-btn {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    border: none !important;
    border-radius: 6px !important;
    background-color: rgb(233, 233, 233) !important;
    color: #000000 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    border: 1px solid transparent !important;
    white-space: nowrap !important;
}

.semester-tab-btn:hover {
    background-color: rgb(233, 233, 233) !important;
}

.semester-tab-btn.active {
    color: #C02222 !important;
    border-bottom: 3px solid #C02222 !important;
    font-weight: 600 !important;
    background-color: rgb(233, 233, 233) !important;
}

/* ============================================
   MOBILE SEMESTER TABS DROPDOWN
   ============================================ */

.mobile-semester-tabs {
    display: none;
    margin: 20px 0 30px;
}

.semester-tabs-select {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    background-color: #ffffff;
    color: #000000;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C02222' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* ============================================
   SEMESTER CONTENT
   ============================================ */

.semester-content-wrapper {
    margin-top: 30px;
}

.semester-content {
    display: none;
}

.semester-content.active {
    display: block;
    animation: fadeIn 0.4s ease-in;
}

/* ============================================
   PROGRAM TABLE STYLING
   ============================================ */

.program-table-wrapper {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.program-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
    font-family: 'Inter', sans-serif;
}

.program-table thead {
    background-color: #e9ecef;
}

.program-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    border: 1px solid #dee2e6;
}

.program-table td {
    padding: 16px;
    font-size: 15px;
    color: #000;
    line-height: 1.8;
    border: 1px solid #dee2e6;
    vertical-align: top;
}

.program-table tbody tr:hover {
    background-color: #f8f9fa;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 991px) {
    /* Hide desktop batch tabs, show mobile dropdown */
    .batch-tabs {
        display: none;
    }
    
    .mobile-batch-tabs {
        display: block;
    }
    
    .batch-subtitle {
        font-size: 20px;
    }
    
    .program-table th,
    .program-table td {
        padding: 12px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .batch-tab-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .batch-subtitle {
        font-size: 18px;
    }
    
    /* Hide desktop semester tabs, show mobile dropdown */
    .semester-tabs {
        display: none !important;
    }
    
    .mobile-semester-tabs {
        display: block !important;
    }
    
    .semester-tabs-wrapper {
        margin: 20px 0;
    }
    
    .semester-content-wrapper {
        margin-top: 20px;
    }
    
    .program-table th,
    .program-table td {
        padding: 10px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .program-table-wrapper {
        margin: 15px -15px;
    }
    
    .program-table th,
    .program-table td {
        padding: 8px;
        font-size: 12px;
        min-width: 120px;
    }
    
    .semester-tabs-select {
        font-size: 14px;
        padding: 10px 12px;
        padding-right: 35px;
    }
}
/* batch-end */
.tab-content .content-text,
.tab-content .content-text p,
.tab-content .content-text ul,
.tab-content .content-text ol,
.tab-content .content-text li {
  font-family: "Inter", sans-serif !important;
  font-size: 18px !important;
  font-weight: 400 !important;
  color: #000 !important;
  line-height: 1.6 !important;
}
.tab-content .content-text ul ul {
  margin-top: 8px;
  margin-bottom: 8px;
}
.tab-content .content-text li::marker {
  color: #000 !important;
}

.inner-page-hero .th-hero-bg::before,
.inner-page-hero .th-hero-bg::after {
  background: rgba(0, 0, 0, 0.25) !important;
}
/* Academics Hero Title */
.inner-page-hero .hero-inner {
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}

/* Override container and row positioning */
.inner-page-hero .container,
.inner-page-hero .th-container2 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
}

.inner-page-hero .row {
  width: 100% !important;
  margin: 0 !important;
  justify-content: center !important;
}

.inner-page-hero .col-lg-12 {
  display: flex !important;
  justify-content: center !important;
}

.inner-page-hero .hero-style1 {
  width: 100%;
  text-align: center !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
}

.inner-page-hero .hero-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: 0;
  margin-bottom: 10px;
  text-align: center !important;
}

.inner-page-hero .breadcrumb-wrap {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  text-align: center !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inner-page-hero .breadcrumb-wrap a {
  color: #ffffff;
  text-decoration: none;
}

.inner-page-hero .breadcrumb-wrap span {
  margin: 0 6px;
}

/* Show and style pagination */
.inner-page-hero .slider-pagination {
  display: block !important;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.inner-page-hero .slider-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.inner-page-hero .slider-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
  width: 30px;
  border-radius: 6px;
}

/* Choose Your Specialisation Section */
.specialisation-section {
  padding: 0px 0;
  background-color: #ffffff;
}

.specialisation-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  color: #C02222;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

/* Red dotted underline for heading */
.specialisation-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;

}

.specialisation-subheading {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 40px;
  letter-spacing: 0%;
  text-align: center;
  color: #000000;
  margin-top: 20px;
}

.specialisation-title-wrapper {
  text-align: center;
  padding: 20px 20px;

  
  margin: 0 auto;
}
/* ============================================
   CHOOSE YOUR SPECIALISATION HEADER SECTION
   ============================================ */

.specialisation-section {
  padding: 20px 0 40px;
  background-color: #ffffff;
}

.specialisation-title-wrapper {
  text-align: center;
  padding: 20px 20px;
  margin: 0 auto;
}

.specialisation-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 40px;
  letter-spacing: 0;
  text-align: center;
  color: #C02222;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.specialisation-subheading {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 26px;
  line-height: 40px;
  letter-spacing: 0;
  text-align: center;
  color: #000000;
  margin-top: 20px;
  margin-bottom: 0;
}

/* ============================================
   ACADEMIC TABS SECTION
   ============================================ */

.academics-tabs-section {
  padding: 40px 0 60px;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ============================================
   MAIN TABS (Desktop)
   ============================================ */

.main-tabs-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-bottom: 40px;
}

.main-tabs-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.main-tabs-row-2 {
  margin-top: 0;
}

.main-tab-btn {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  background-color: #F9C026;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.main-tab-btn:hover {
  background-color: #e0aa1a;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.main-tab-btn.active {
  background-color: #C02222;
  color: #ffffff;
}

/* ============================================
   MOBILE MAIN TABS DROPDOWN
   ============================================ */

.mobile-main-tabs {
  display: none;
  margin-bottom: 30px;
}

.main-tabs-select {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 16px;
  border: 2px solid #F9C026;
  border-radius: 8px;
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ============================================
   TAB CONTENT CONTAINER
   ============================================ */

.tab-content-container {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 30px;
  line-height: 1.3;
}

.content-text p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 20px;
}

.content-text p:last-child {
  margin-bottom: 0;
}

/* ============================================
   SPECIALISATION NESTED TABS (Desktop)
   ============================================ */

.specialisation-tabs-wrapper {
  margin: 30px 0;
  padding-bottom: 20px;
  border-bottom: 2px solid #e0e0e0;
}

.specialisation-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}


.spec-tab-btn {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  background-color:  #e9e9e9 !important;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}

.spec-tab-btn:hover {
  background-color: #f5f5f5;
  border-bottom: 3px solid #C02222;
}

.spec-tab-btn.active {
  color: #C02222;
  border-bottom: 3px solid #C02222;
  font-weight: 600;
  background-color:  #e9e9e9 !important;
}

/* ============================================
   MOBILE SPECIALISATION TABS DROPDOWN
   ============================================ */

.mobile-spec-tabs {
  display: none;
  margin: 20px 0 30px;
}

.spec-tabs-select {
  width: 100%;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 6px;
  background-color: #ffffff;
  color: #000000;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C02222' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ============================================
   SPECIALISATION CONTENT
   ============================================ */

.spec-content-wrapper {
  margin-top: 30px;
}

.spec-content {
  display: none;
}

.spec-content.active {
  display: block;
  animation: fadeIn 0.4s ease-in;
}

.spec-content p {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #333333;

  text-align: justify;
}

.spec-content p:last-child {
  margin-bottom: 0;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 992px) {
  .specialisation-heading {
    font-size: 36px;
    line-height: 38px;
  }

  .specialisation-subheading {
    font-size: 22px;
    line-height: 36px;
  }

  .main-tab-btn {
    font-size: 15px;
    padding: 10px 20px;
  }

  .tab-content-container {
    padding: 30px;
  }

  .content-title {
    font-size: 28px;
  }

  .content-text p,
  .spec-content p {
    font-size: 15px;
  }
}

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

@media (max-width: 768px) {
  .specialisation-section {
    padding: 40px 0 30px;
  }

  .specialisation-title-wrapper {
    padding: 30px 15px;
  }

  .specialisation-heading {
    font-size: 28px;
    line-height: 32px;
  }

  .specialisation-subheading {
    font-size: 18px;
    line-height: 28px;
    margin-top: 15px;
  }

  .academics-tabs-section {
    padding: 30px 0 40px;
  }

  /* Hide desktop tabs, show mobile dropdown */
  .main-tabs-wrapper {
    display: none;
  }

  .mobile-main-tabs {
    display: block;
  }

  /* Hide desktop specialisation tabs, show mobile dropdown */
  .specialisation-tabs {
    display: none;
  }

  .mobile-spec-tabs {
    display: block;
  }
  .tab-content-container {
    padding: 20px;
    border-radius: 8px;
  }

  .content-title {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .content-text p,
  .spec-content p {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
  }

  .specialisation-tabs-wrapper {
    margin: 20px 0;
  }

  .spec-content-wrapper {
    margin-top: 20px;
  }

}

@media (max-width: 768px) {
    .fee-table1 {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .fee-table-installment-fn {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .fee-table-hostel-fn {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .admission-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .hostel-fee-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}
@media (max-width: 480px) {
  .specialisation-title-wrapper {
    padding: 20px 10px;
  }

  .specialisation-heading {
    font-size: 24px;
    line-height: 28px;
  }

  .specialisation-subheading {
    font-size: 16px;
    line-height: 24px;
  }

  .tab-content-container {
    padding: 15px;
  }

  .content-title {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .main-tabs-select,
  .spec-tabs-select {
    font-size: 14px;
    padding: 10px 12px;
    padding-right: 35px;
  }
}
/* =================================================================== */
.spec-content .logos img {
    display: inline-block !important;
    margin-right: 100px !important; 
}

.spec-content .logos img:last-child {
    margin-right: 0 !important;
}

.admission-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: Arial, sans-serif;
}

.admission-table th,
.admission-table td {
    border: none !important; 
    padding: 14px;
}

.admission-table th {
    background: #e5e5e5;
    text-align: left;
}

.admission-table tr:nth-child(odd) {
    background: #f2f2f2;
}

.admission-table tr:nth-child(even) {
    background: #ffffff;
}
.admission-table,
.admission-table * {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}
.admission-table th {
    font-size: 16px;   
    font-weight: 600;
}

.admission-table td {
    font-size: 15px;   
    font-weight: 400;
}
/* ============================================================================================================ */
/* FORCE center SET image */
.spec-content img.set-image {
    display: block !important;
    margin: 20px auto !important;
    float: none !important;
    clear: both !important;
    max-width: 100% !important;
    height: auto !important;
}



/* ===== Fee table WITH visible borders ===== */

.fee-table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

.fee-table th,
.fee-table td {
    border: 1px solid #cfcfcf;
    padding: 14px;
    font-size: 15px;
}

.fee-table th {
    background: #e5e5e5;
    font-weight: 600;
    text-align: left;
}

.fee-table td {
    background: #ffffff;
}
/* Zebra striping ONLY for data rows */
.fee-table tr:nth-child(odd):not(:first-child) td {
    background-color: #f2f2f2;
}

.fee-table tr:nth-child(even) td {
    background-color: #ffffff;
}

/* Tablet & Mobile */
@media (max-width: 768px) {

  .fee-table {
    font-size: 14px;
  }

  .fee-table th,
  .fee-table td {
    padding: 6px;
    font-size: 13px;
  }

  .fee-table th {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .email a,
  .email {
    display: inline-block;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 13px;
  }
}

/* Mobile fix for contact links */
@media (max-width: 768px) {
  .abc {
    display: block;
    max-width: 100%;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    font-size: 13px;
    line-height: 0.3;
  }
}


/* Base table */
.fee-table1 {
    width: 100%;
    border-collapse: collapse;
}


/* Borders */
.fee-table1 th,
.fee-table1 td {
    border: 1px solid #d0d0d0;
    padding: 14px;
    font-size: 15px;
}

/* TOP header row grey */
.fee-table1 tr:first-child th {
    background-color: #e5e5e5;
    font-weight: 600;
}

/* SECOND row (1st / 2nd Installment) FORCE WHITE */
.fee-table1 tr:nth-child(2) th {
    background-color: #ffffff;
}

/* ODD rows grey (AFTER header rows) */
.fee-table1 tr:nth-child(odd):not(:first-child):not(:nth-child(2)) td {
    background-color: #f2f2f2;
}

/* EVEN rows white */
.fee-table1 tr:nth-child(even) td {
    background-color: #ffffff;
}

/* ===== Foreign National Installment Table ===== */

.fee-table-installment-fn {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.fee-table-installment-fn th,
.fee-table-installment-fn td {
  border: 1px solid #d0d0d0;
  padding: 14px;
  font-size: 15px;
  vertical-align: top;
}

/* Header background */
.fee-table-installment-fn th {
  background-color: #e5e5e5;
  font-weight: 600;
  text-align: left;
}

/* Zebra rows (matches image) */
.fee-table-installment-fn tr:nth-child(odd):not(:nth-child(1)):not(:nth-child(2)) td {
  background-color: #f2f2f2;
}

.fee-table-installment-fn tr:nth-child(even) td {
  background-color: #ffffff;
}

/* First column text weight */
.fee-table-installment-fn td:first-child {
  font-weight: 500;
}

/* Center amounts */
.fee-table-installment-fn td:not(:first-child),
.fee-table-installment-fn th:not(:first-child) {
  text-align: left;
}
/* ===== Fix: Do NOT color empty cells in installment table ===== */

.fee-table-installment-fn td:empty {
  background-color: #ffffff !important;
}
/* ===== EXACT IMAGE LOGIC: Hostel / Mess Table ===== */

.fee-table-hostel-fn {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

.fee-table-hostel-fn th,
.fee-table-hostel-fn td {
  border: 1px solid #d0d0d0;
  padding: 14px;
  font-size: 15px;
  vertical-align: top;
}

/* HEADER ROWS */
/* ONLY top heading row grey */
.fee-table-hostel-fn tr:first-child th {
  background-color: #e5e5e5;
  font-weight: 600;
}
/* Total Fees / Installment headers must be WHITE */
.fee-table-hostel-fn tr:nth-child(2) th {
  background-color: #ffffff !important;
  font-weight: 600;
}


/* 🔹 FIRST COLUMN: zebra (THIS drives the look) */
.fee-table-hostel-fn tr:nth-child(odd):not(:nth-child(1)):not(:nth-child(2)) td:first-child {
  background-color: #f2f2f2;
}

.fee-table-hostel-fn tr:nth-child(even) td:first-child {
  background-color: #ffffff;
}

/* 🔹 AMOUNT COLUMNS: grey ONLY if value exists */
.fee-table-hostel-fn td:not(:first-child):not(:empty) {
  background-color: #f2f2f2;
}

/* 🔹 EMPTY CELLS: always white */
.fee-table-hostel-fn td:empty {
  background-color: #ffffff !important;
}

/* Slight emphasis on labels */
.fee-table-hostel-fn td:first-child {
  font-weight: 500;
}
.fee-table-hostel-fn tr:nth-child(odd) {
  background: #f2f2f2;
}

.fee-table-hostel-fn tr:nth-child(even) {
  background: #ffffff;
}

.faq-wrapper {
  width: 100%;
}

/* FAQ container */
.faq-item {
  border: 1px solid #e0e0e0;
  margin-bottom: 12px;
}

/* Question section (GREY) */
.faq-question-row {
  display: flex;
  gap: 10px;
  padding: 14px 18px;
  background-color: #f2f2f2;
  cursor: pointer;
}

.faq-number {
  
  color: #000;
  font-size: 15px;
}

.faq-question {
  font-size: 16px;
  color: #000;
  line-height: 2;
}

/* Answer section (WHITE) */
.faq-answer {
  display: none;
  background-color: #ffffff;
  padding: 14px 18px;
  border-top: 1px solid #dcdcdc;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
}

.faq-answer a {
  color: #0066cc;
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Active state */
.faq-item.active .faq-answer {
  display: block;
}

.fee-summary-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

/* Borders + spacing */
.fee-summary-table th,
.fee-summary-table td {
  
  padding: 14px;
  font-size: 16px;
}
.fee-summary-table ,
.fee-summary-table * {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  
}

/* Header */
.fee-summary-table th {
  background-color: #e5e5e5;
  font-weight: 600;
  text-align: left;
  
}

.fee-summary-table th:last-child {
  text-align: right;
}
/* Column alignment */
.fee-summary-table td:first-child {
  width: 70px;
  text-align: center;
}

.fee-summary-table td:last-child {
  text-align: right;
  white-space: nowrap;
}

/* Mobile styles */
@media (max-width: 768px) {

  .fee-summary-table {
    font-size: 14px;
  }

  .fee-summary-table th,
  .fee-summary-table td {
    padding: 10px 8px;
    font-size: 13px;
  }

  /* Reduce first column width */
  .fee-summary-table td:first-child {
    width: 40px;
    font-size: 12px;
  }

  /* Header alignment */
  .fee-summary-table th:last-child,
  .fee-summary-table td:last-child {
    text-align: right;
    font-weight: 600;
  }

  /* Optional: better spacing */
  .fee-summary-table tr {
    line-height: 1.4;
  }
}

/* iPhone 5 / iPhone SE (2016) */
@media (max-width: 360px) {

  .fee-summary-table.fee-summary-mobile {
    table-layout: fixed;
    width: 100%;
  }

  .fee-summary-table.fee-summary-mobile th,
  .fee-summary-table.fee-summary-mobile td {
    padding: 8px 6px;
    font-size: 12px;
  }

  /* S.No column */
  .fee-summary-table.fee-summary-mobile td:first-child,
  .fee-summary-table.fee-summary-mobile th:first-child {
    width: 32px;
    font-size: 11px;
  }

  /* Amount column */
  .fee-summary-table.fee-summary-mobile td:last-child,
  .fee-summary-table.fee-summary-mobile th:last-child {
    width: 80px;
    white-space: nowrap;
    font-size: 12px;
  }

  /* Middle column wraps nicely */
  .fee-summary-table.fee-summary-mobile td:nth-child(2),
  .fee-summary-table.fee-summary-mobile th:nth-child(2) {
    word-break: break-word;
    line-height: 1.3;
  }
}


/* Row colors */
.row-grey {
  background-color: #f2f2f2;
}

.row-white {
  background-color: #ffffff;
}

/* Total row emphasis */
.total-row td {
  font-weight: 600;
}

/* ================= HOSTEL FEES TABLE ================= */

.hostel-fee-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: Arial, sans-serif;
}

/* REMOVE ALL BORDERS & OUTLINES */
.hostel-fee-table,
.hostel-fee-table * {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Cell styling */
.hostel-fee-table th,
.hostel-fee-table td {
  padding: 16px;
  font-size: 15px;
  text-align: left;
}

/* Header */
.hostel-fee-table th {
  background-color: #e5e5e5;
  font-weight: 600;
}

/* Zebra rows */
.hostel-fee-table tr:nth-child(even) {
  background-color: #f2f2f2;
}

.hostel-fee-table tr:nth-child(odd):not(:first-child) {
  background-color: #ffffff;
}


/* Last row special */
.hostel-fee-table .last-row td {
  background-color: #ffffff;
  font-weight: 500;
}

/* ===== SIMPLE TABLE WITH ONLY HEADER BOTTOM LINE ===== */

.simple-fee-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

/* REMOVE EVERYTHING FIRST */
.simple-fee-table,
.simple-fee-table th,
.simple-fee-table td {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* HEADER */
.simple-fee-table th {
  background-color: #e5e5e5;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;

  /* ✅ ONLY THIS LINE */
  border-bottom: 1px solid #cfcfcf !important;
}

/* ROW */
.simple-fee-table td {
  background-color: #f2f2f2;
  padding: 16px;
  font-size: 15px;
}

@media (max-width: 768px) {

  .simple-fee-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
  }

  .simple-fee-table th,
  .simple-fee-table td {
    padding: 10px 8px;
    font-size: 13px;
  }

  /* S. No column */
  .simple-fee-table th:first-child,
  .simple-fee-table td:first-child {
    width: 36px;
    text-align: center;
    font-size: 14px;
  }

  /* Amount column */
  .simple-fee-table th:last-child,
  .simple-fee-table td:last-child {
    width: 90px;
    text-align: right;
    white-space: nowrap;
    font-weight: 600;
  }

  /* Particulars column */
  .simple-fee-table th:nth-child(2),
  .simple-fee-table td:nth-child(2) {
    word-break: break-word;
    line-height: 1.4;
  }
}

@media (max-width: 360px) {

  .simple-fee-table th,
  .simple-fee-table td {
    padding: 8px 6px;
    font-size: 12px;
  }

  .simple-fee-table th:first-child,
  .simple-fee-table td:first-child {
    width: 30px;
    font-size: 11px;
  }

  .simple-fee-table th:last-child,
  .simple-fee-table td:last-child {
    width: 78px;
    font-size: 12px;
  }
}


.semester-title {
  font-family: Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 10px;
}

.semester-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}

/* Remove ALL borders first */


/* Header */
.semester-table th {
  background: #e5e5e5;
  padding: 14px;
  text-align: left;
  font-weight: 600;
  font-size: 15px;

  /* ONLY header bottom line */
  border-bottom: 1px solid #cfcfcf !important;
}

/* Cells */
.semester-table td {
  padding: 14px;
  font-size: 14.5px;
  vertical-align: top;
}

/* Zebra rows (exact like image) */
.semester-table tr:nth-child(even) td {
  background-color: #f2f2f2;
}

.semester-table tr:nth-child(odd) td {
  background-color: #ffffff;
}

/* Horizontal lines ONLY */
.semester-table tr td {
  border-bottom: 1px solid #e0e0e0;
}

/* Remove last line */
.semester-table tr:last-child td {
  border-bottom: none;
}

 @media (max-width: 768px) {

  /* force scroll container */
  .mobile-table-scroll {
    width: 100%;
    overflow-x: auto !important;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    display: block;
  }

  /* prevent table from shrinking */
  .semester-table {
    min-width: 700px;
    border-collapse: collapse;
  }

  /* prevent column wrap */
  .semester-table th,
  .semester-table td {
    white-space: nowrap;
  }

}
/* ============================================
   PROGRAM TABLE STYLING
   ============================================ */


/* AbhishekPN-End */
@media (max-width: 1399px) {

    .header-layout1 .main-menu > ul > li {
        margin: 0 1px;
    }
}
@media (max-width: 1299px) {
  .header-layout1 .main-menu > ul > li > a{
            font-size: 12px;
  }
  .main-menu ul.sub-menu a, .main-menu ul.mega-menu a{
     font-size: 12px;
  }
   
}
.header-layout1 .header-left .header-button{
      margin-right: 0px;
}
.social-wrap {
 
  padding: 12px;
  display: inline-flex;
  gap: 8px;
}

.social {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: var(--yellow-color2); 
  color: #b30000; /* icon color */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  text-transform: lowercase;
  transition: transform 0.2s ease;
}

.social:hover {
  transform: scale(1.1);
}


.border-yellow-color{
  border-color: var(--yellow-color) !important;
  border-radius:25px;
 
}
.border-red-color{
  border-color: var(--red-color) !important;
  border-radius:25px; 
 
}
.black-bg{
  background: var(--000-black-color);
}
.latest-update-bar {
  display: flex;
  align-items: center;
  background: #000;
  color: #fff;
  padding: 6px 10px;
  overflow: hidden;
}

.latest-label {
  background: #c62828;
  color: #fff;
  padding: 6px 14px;
  font-weight: 600;
  white-space: nowrap;
  margin-right: 15px;
}

/* Marquee area */
.latest-marquee {
   background: transparent;
  transition: background 0.3s ease;
  position: relative;
  overflow: hidden;
  flex: 1;
}

/* Moving track */
.latest-track {
  display: inline-flex;
  gap: 50px;
  white-space: nowrap;
  animation: marquee-scroll 25s linear infinite;
}

/* Pause animation on hover */
.latest-update-bar:hover .latest-track {
  animation-play-state: paused;
}

/* Black background on hover (marquee area only) */
.latest-update-bar:hover .latest-marquee {
  background: #000;
}

/* Each item */
.latest-track span {
  font-size: 14px;
}

/* Animation */
@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.counter-card .box-number{
  color: var(--yellow-color);
}



.counter-card .box-text{
  font-size:18px;
  line-height:1.5;
}
.margin-bottom-5{
  margin-bottom: 5px;
}

.menu-btn{
  border-color: var(--yellow-color2) !important;
  border-radius: 25px !important;
}

.copyright-text2{
  font-size: 14px;
}

.h2, h2 {
  font-weight: 400;
}
.scs-testimonial-box {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: #f5f5f5;
  margin-bottom: 20px;
}

/* Avatar */
.scs-testimonial-avatar {
  flex-shrink: 0;
}

.scs-testimonial-avatar img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 4px;
}

.scs-testimonial-avatar  .round-testimonial {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50px;
}



/* Content */
.scs-testimonial-content {
  max-width: 600px;
}

.scs-testimonial-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 12px;
}

/* Name */
.scs-testimonial-name {
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  color: #d9412c;
}

/* Batch */
.scs-testimonial-batch {
  font-size: 12px;
  color: #555;
}

@media (max-width: 576px) {
  .scs-testimonial-box {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}


.admission-box {
  height: 100%;
  padding: 24px;
  background: #fffaf7;
  border-bottom: 5px solid #ed8c8c;
}

.admission-box:hover{
  background: #F5F5F5;
  border-bottom: 5px solid #727272;
}
/* Label */
.admission-box-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #d9412c;
  margin-bottom: 8px;
}

/* Title */
.admission-box-title {
  font-size: 18px;
  line-height: 1.4;
  margin: 10px 0 20px;
  color: #000;
}

/* Text */
.admission-box-text {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

/* Button */
.admission-box-btn {
  display: inline-block;
  padding: 10px 16px;
  font-size: 14px;
  color: #d9412c;
  border: 1px solid #d9412c;
  text-decoration: none;
  transition: all 0.3s ease;
}

.admission-box-btn:hover {
  background: #d9412c;
  color: #fff;
}


.tag-box{
  background: var(--red-color);
  border-radius: 25px;
  padding: 4px 14px;
  color: var(--white-color);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 40px;
  
  margin: auto;
}

.event-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.event-date {
  background: #c41d1d;
  color: #fff;
  min-width: 150px;
  text-align: center;
  padding: 20px 8px;
}

.event-date .day {
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.2;
}

.event-date .month {
  display: block;
  font-size: 14px;
}

.event-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

.event-content a {
  color: #c41d1d;
  text-decoration: none;
  font-weight: bold;
}


.cta-sec{
  background:var(--red-color);
  padding:20px 20px;
}
.media-gallery {
  display: grid;
  grid-template-columns: 2.5fr 1fr;
  gap: 15px;
  height: 500px;
  margin: auto;
  overflow-y: scroll;
}

.main-preview video,
.main-preview img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 4px;
}

.main-preview {
  background: #000;
  min-height: 360px;
}



.thumbs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.thumb {
  cursor: pointer;
  border: 2px solid transparent;
}

.thumb.active {
  border-color: #d71920;
}

.thumb img {
  width: 100%;
  border-radius: 4px;
}

/* MOBILE */
@media (max-width: 768px) {
   .events-grid {
    grid-template-columns: 1fr;
  }
  .media-gallery {
    grid-template-columns: 1fr;
  }

  .thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.new-card .story-content .box-title{
  background: var(--red-color);
  width: 51px;
  height: 51px;
  border-radius: 50%;

}
.new-card .box-title i,
.new-card .box-title a:hover i,
.new-card:hover .box-title i {
    color: #ffffff !important;
    
}



/* ================= VIDEO ================= */
.video-container {
  position: relative;
  height: 80vh;
  overflow: hidden;
  
  
}

.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}

/* ================= DESKTOP MENU ================= */
.video-nav-desktop {
  position: absolute;
  bottom: -14px;
  left: 0;
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-around;
  background: rgba(0,0,0,0.65);
  padding: 14px 0;
  z-index: 2;
}

.video-nav-desktop li {
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  opacity: 0.85;
}

.video-nav-desktop li:hover,
.video-nav-desktop li.active {
  opacity: 1;
  text-decoration: underline;
}

/* ================= MOBILE MENU ================= */
.video-nav-mobile {
  display: none;
  list-style: none;
  margin-top: 16px;
}

.video-nav-mobile li {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 18px 10px;
  font-size: 14px;
  border-radius: 4px;
}

/* ================= MOBILE ONLY ================= */
@media (max-width: 767px) {
  .mob-anim-title{
 
  text-align: center;
}
  .mob-width{
    width: 50%;
  }
  .banner-height{
    height: 100vh !important;
  }

  .video-container {
    height: 260px;
  }

  .video-nav-desktop {
    display: none;
  }

  .video-nav-mobile {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;

  }
}


.icon-boxes{
  padding: 50px 80px;
}

.student-box{
  background: var(--red-color);
  padding:34px;
 
}
.student-box2{
  background: var(--grey-color);
  padding:34px;
  
}
.font-black{
  color: var(--black-color);
}
.about-text{
  color: var(--white-color);
}
.counter-card {
    display: block;
    display: block;
    display: -ms-flexbox;
    display: block;
    gap: 32px;
    text-align: center;
}

.font-yellow{
  color:var(--yellow-color);
}
.font-white{
  color:var(--white-color);
}

.flip-card {
  width: 100%;
  height: 308px;
  object-fit: cover;
  perspective: 1000px;
  margin-bottom: 8px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  transform-style: preserve-3d;
}

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

/* FRONT */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  overflow: hidden;
}

/* Front side */
.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-front .card-title {
  position: absolute;
  bottom: 12px;
  left: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 26px;
  z-index: 2;
  width: 77%;
}

/* Back side (RED PANEL) */
.flip-back {
  background: #c32020; /* red like screenshot */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
  text-align: center;
  padding: 20px;
}


.flip-back2 {
  background: #c32020; /* red like screenshot */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  width: 100%;
  height: 308px;
  object-fit: cover;
  perspective: 1000px;
  margin-bottom: 8px;
  border-radius: 12px;
}
.chevron {
  position: absolute;
  right: 22px;
  bottom: 28px;
  font-size: 18px;
  display: inline-block;
  margin-left: 8px;
  font-size: 16px;
  color: #ffd700; /* yellow arrow like screenshot */
  font-weight: bold;
  transition: transform 0.3s ease;
}


.back-content h4{
  font-size: 22px;
  line-height: 1.5;
}

@media(min-width:992px){
  
  .banner-height{
    height: 600px !important;
  }
  .counter-wrap1{
      -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: revert;
    align-items: flex-start;
}
  .student-box{
    min-height: 403px;
    width: 108%;
  }
  .student-box2{
    min-height: 403px;
    width: 108%;
  }
  .border-right-yellow{
  border-right: 1px solid var(--yellow-color2);
}
  .header-layout1 .menu-area .menu-wrapp{
  background-color: transparent;
}
}
@media(max-width: 991px){
  .border-right-yellow{
  border-bottom: 1px solid var(--yellow-color2);
}
}

.red-border-btm-line{
  border-bottom: 1px solid var(--red-color);
  padding-bottom: 10px !important;

}
.font-red{
  color: var(--red-color);
}



.header-layout1 .menu-area {
    margin-bottom: -72px;
}
.main-menu ul.sub-menu a, .main-menu ul.mega-menu a{
  color:var(--black-color);
}
.sticky .main-menu a{
  color:var(--black-color);
}

/* home page changes start  */
/* Main menu hover effect - white text with underline */
.main-menu > ul > li > a {
    position: relative;
    display: inline-block;
}

.main-menu > ul > li > a::before {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

.main-menu > ul > li:hover > a {
    color: #ffffff !important;
}

.main-menu > ul > li:hover > a::before {
    width: 100%;
}


/* end */


.main-menu ul li:has(.mega-menu) > a::after,
.main-menu ul li.menu-item-has-children > a::after {
    content: "\f078"; /* chevron-down */
    font-family: var(--icon-font);
    font-weight: 900;
    margin-left: 6px;
    font-size: 12px;
    position: relative;
    top: 1px;
}


/* home page changes start  */
.academic1-area{
  padding-top: 48px !important;
  padding-bottom: 20px !important;
}
.explore-campus{
  padding-top: 48px !important;
  padding-bottom: 20px !important;
}
.story-area-1{
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}
.campus-calendar{
  padding-top: 48px !important;
  padding-bottom: 20px !important;
}
.campus-insights{
  padding-top: 48px !important;
  padding-bottom: 20px !important;
}
.get-started{
  padding-top: 48px !important;
  padding-bottom: 20px !important;
}
.get-started-area{
  padding-top: 48px !important;
  padding-bottom: 20px !important;
}

.campus-card .arrow-rights{
  padding-left: 400px !important; 
  padding-top: 50px  !important;
}
@media (max-width: 767px) {
  .campus-card .arrow-rights{
    padding-left: 5px !important; 
    
  }
}


/* banner  section*/
.hero-text-wrap1{
  padding-left: 150px !important; 
  font-size: 22px !important;
}

/* banner section  mobile view*/
@media (max-width: 768px) {

  /* Fix hero height & overflow */
 
  
  .banner-h1,
  .hero-style1,
  .hero-text-wrap1 {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  /* Stack & center hero content */
  .hero-style1,
  .hero-text-wrap1,
  .both-content {
    display: block !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* FIX TOP TEXT ALIGNMENT */
  .hero-text-wrap1 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-text-wrap1 h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-text-wrap1 .sub-text,
  .hero-text-wrap1 .sub-text p {
    text-align: center !important;
  }

  /* Image center */
  .mob-width {
    display: block !important;
    margin: 20px auto !important;
  }

  /* Apply Now button center */
  .both-content {
    margin-top: 20px !important;
    padding: 0 15px !important;
  }

  .apply-now-btn {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-bottom: 15px !important;
  }

  .apply-now-btn a {
    margin: 0 auto !important;
    text-align: center !important;
  }

  /* Course info center */
  .course-info {
    text-align: center !important;
  }

  .course-info h3 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (max-width: 992px) {

  /* Fix hero height & overflow */
 
  .banner-h1,
  .hero-style1,
  .hero-text-wrap1 {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  /* Stack & center hero content */
  .hero-style1,
  .hero-text-wrap1,
  .both-content {
    display: block !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* FIX TOP TEXT ALIGNMENT */
  .hero-text-wrap1 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .hero-text-wrap1 h2 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-text-wrap1 .sub-text,
  .hero-text-wrap1 .sub-text p {
    text-align: center !important;
  }

  /* Image center */
  .mob-width {
    display: block !important;
    margin: 20px auto !important;
  }

  /* Apply Now button center */
  .both-content {
    margin-top: 20px !important;
    padding: 0 15px !important;
  }

  .apply-now-btn {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    margin-bottom: 15px !important;
  }

  .apply-now-btn a {
    margin: 0 auto !important;
    text-align: center !important;
  }

  /* Course info center */
  .course-info {
    text-align: center !important;
  }

  .course-info h3 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}
/* end */


/* banner button */
.apply-now-btn .style-border2{
  background-color: red !important;
  color:white !important;
}
.course-info h3{
  font-size: 24px !important;
}
/* end */


/* footer */
.widget-area {
    padding-top: 60px !important;
    padding-bottom: 16px;
}
/* end */


/* top buttons */
 .mobile-cta-bar {
    display: none;
    padding: 12px 10px;
    gap: 10px;
    background: #fff;
    border-bottom: 1px solid #FFEC40;
}

/* Mobile only */
@media (max-width:767px) {
    .mobile-cta-bar {
        display: flex;
    }
    .mobile-cta-bar a {
        flex: 1;
        text-align: center;
        font-size: 12px;
        padding: 10px 6px;
        border-radius: 50px;
        border: 1px solid #ffd700 !important;
    }
}


/* home page changes end */
/* Abhishek-PN start */
.medha-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.medha-images img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

/* Center the last image */
.medha-images img:nth-child(4) {
    grid-column: 2 / 3;
}

@media (max-width: 768px) {
    .medha-images {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 0 12px;
    }

    .medha-images img {
        width: 100%;
        max-width: 220px;
        max-height: 220px;                  /* 🔥 full image */
        object-fit: cover;           /* 🔥 no cutting */
        border-radius: 10px;   /* optional (looks clean) */
    }
}

.literacy-images {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* more control */
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.literacy-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
}

/* Top 3 images */
.literacy-images img:nth-child(1) {
    grid-column: 1 / 3;
}
.literacy-images img:nth-child(2) {
    grid-column: 3 / 5;
}
.literacy-images img:nth-child(3) {
    grid-column: 5 / 7;
}

/* Bottom 2 images centered with gap */
.literacy-images img:nth-child(4) {
    grid-column: 2 / 4;
}
.literacy-images img:nth-child(5) {
    grid-column: 4 / 6;
}


@media (max-width: 768px) {
    .literacy-images {
        display: flex;          /* override grid */
        flex-direction: column;
        gap: 20px;
        padding: 0 12px;
    }

    .literacy-images img {
        width: 100%;
        max-width: 220px;
        max-height: 220px;                  /* 🔥 full image */
        object-fit: cover;           /* 🔥 no cutting */
        border-radius: 10px;
    }
}


.cleanliness-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;                 /* space between images */
    max-width: 1200px;
    margin: auto;
}

.cleanliness-images img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 768px) {

    .cleanliness-images {
        display: grid;                 /* keep grid */
        grid-template-columns: 1fr;    /* 🔥 ONE COLUMN */
        gap: 20px;
        padding: 0 12px;
    }

    .cleanliness-images img {
        width: 100%;
        max-width: 220px;
        max-height: 220px;                  /* 🔥 full image */
        object-fit: cover;           /* 🔥 no cutting */
        border-radius: 10px;
    }
}

.blood-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.blood-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 768px) {

    .blood-images {
        display: grid;                 /* keep grid */
        grid-template-columns: 1fr;    /* 🔥 ONE IMAGE PER ROW */
        gap: 20px;
        padding: 0 12px;
    }

    .blood-images img {
        width: 100%;
         max-width: 220px;
        max-height: 220px;                  /* 🔥 full image */
        object-fit: cover;           /* 🔥 no cutting */
        border-radius: 10px;

        /* safety reset */
        grid-column: unset !important;
    }
}


.book-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.book-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

@media (max-width: 768px) {

    .book-images {
        display: grid;
        grid-template-columns: 1fr;   /* 🔥 one by one */
        gap: 20px;
        padding: 0 12px;
    }

    .book-images img {
        width: 100%;
        max-width: 220px;
        max-height: 220px;                  /* 🔥 full image */
        object-fit: cover;           /* 🔥 no cutting */
        border-radius: 10px;

        /* safety reset */
        grid-column: unset !important;
    }
}


.second-one {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: auto;
}

.second-one img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}
@media (max-width: 768px) {

    .second-one {
        display: grid;                 /* keep grid */
        grid-template-columns: 1fr;    /* 🔥 ONE COLUMN */
        gap: 20px;
        padding: 0 12px;
    }

    .second-one img {
        width: 100%;
        max-width: 220px;
        max-height: 220px;                  /* 🔥 full image */
        object-fit: cover;           /* 🔥 no cutting */
        border-radius: 10px;
    }
}
.lighting {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.lighting img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 6px;
}

/* Center the last image */
.lighting img:last-child {
    grid-column: 2 / 3;
}

@media (max-width: 768px) {

    .lighting {
        display: grid;
        grid-template-columns: 1fr;   /* 🔥 one image per row */
        gap: 20px;
        padding: 0 12px;
    }

    .lighting img {
        width: 100%;
        max-width: 220px;
        max-height: 220px;                  /* 🔥 full image */
        object-fit: cover;           /* 🔥 no cutting */
        border-radius: 10px;

        /* 🔒 reset desktop grid rules */
        grid-column: unset !important;
    }
}


.donation-drive {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

.donation-drive img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
}

/* Center the last image */
.donation-drive img:last-child {
    grid-column: 1 / -1;   /* span both columns */
    justify-self: center;
    width: 50%;
}

@media (max-width: 768px) {

    .donation-drive {
        display: grid;
        grid-template-columns: 1fr;   /* 🔥 one image per row */
        gap: 20px;
        padding: 0 12px;
    }

    .donation-drive img {
        width: 100%;
        max-width: 220px;
        max-height: 220px;                  /* 🔥 full image */
        object-fit: cover;           /* 🔥 no cutting */
        border-radius: 10px;

        /* 🔒 reset desktop rules */
        grid-column: unset !important;
        justify-self: unset !important;
    }
}

@media (max-width: 991px)
{
  .flip-card1 .overlay{
    height: 330px;
  }
}






/* Abhishek-PN end */
