/* Blog Popup Fix: Ensure popup background covers all content and is scrollable if needed */
.blog-popup {
  display: none;
  grid-template-columns: 1fr;
  background: #fff;
  border-radius: 1vw;
  box-shadow: 0 8px 32px rgba(11,47,85,0.18);
  max-width: 700px;
  width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  margin: auto;
}
.popup-content {
  padding: 2vw 2vw 2vw 2vw;
  overflow-y: auto;
  max-height: 80vh;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .blog-popup {
    max-width: 98vw;
    border-radius: 2vw;
    padding: 0;
  }
  .popup-content {
    padding: 4vw 2vw;
    max-height: 70vh;
  }
}
/* Blog Author Styling */
.blog-author {
  color: #0b2f55;
  font-size: 1.02vw;
  font-weight: 500;
  margin: 0.5vw 0 0.5vw 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.01em;
  opacity: 0.85;
  padding-left: 1vw !important;
}
@media (max-width: 700px) {
  .blog-author {
    font-size: 3vw;
    margin: 1vw 0 1vw 0;
  }
}
/* Tooltip for Know More in Assessment Services */
.know-more-tooltip {
  position: relative;
  cursor: pointer;
  display: inline-block;
}
.know-more-tooltip strong {
  color: #0b2f55;
  font-weight: 600;
  text-decoration: underline dotted #ffb800 2px;
  transition: color 0.2s;
}
.know-more-tooltip:hover strong,
.know-more-tooltip:focus strong {
  color: #ffb800;
}
.know-more-tooltip .tooltip-text {
  visibility: hidden;
  opacity: 0;
  width: 270px;
  background: #0b2f55;
  color: #fff;
  text-align: left;
  border-radius: 6px;
  padding: 0.7em 1em;
  position: absolute;
  z-index: 10;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.13);
  font-size: 1vw;
  transition: opacity 0.2s;
  pointer-events: none;
  white-space: normal;
}
.know-more-tooltip:hover .tooltip-text,
.know-more-tooltip:focus .tooltip-text {
  visibility: visible;
  opacity: 1;
}
/* Assessment Services List Styles */
.assessment-list {
  margin-top: 1vw;
  margin-bottom: 1vw;
  padding-left: 1.2em;
}
.assessment-list li {
  margin-bottom: 1.1em;
  font-size: 1.08vw;
  color: #222;
  line-height: 1.5;
  font-family: "Inter", sans-serif;
}
.assessment-list strong {
  color: #0b2f55;
  font-weight: 600;
}
.know-more {
  color: #ffb800;
  font-weight: 500;
  margin-right: 0.4em;
}
/* Conference Gallery Styles */
.conference-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2vw;
  margin: 2vw 0 1vw 0;
}
.conference-gallery img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
  background: #f6f6f6;
  display: block;
  margin: 0 auto;
}
/* --- Clinical Services: Expertise Filter Sidebar --- */
.experts-section-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;  
  width: 85%;
  margin-left: 7.5%;
  gap: 3vw;
}

.expertise-filter-box {
  background: #f6f6f6;
  border: 1.5px solid #e1e1e1;
  border-radius: 0.65vw;
  padding: 2vw 1.5vw;
  min-width: 220px;
  max-width: 260px;
  margin-top: 2vw;
  margin-bottom: 2vw;
  box-shadow: 0 0 0.4rem #e1e1e1;
}
.expertise-filter-box h3 {
  font-family: "Inter";
  color: #0b2f55;
  font-size: 1.2vw;
  margin-bottom: 1vw;
  font-weight: bold;
}
.checkbox-row {
  margin-bottom: 0.7em;
  font-size: 1vw;
  font-family: "Inter";
}
.checkbox-row label {
  cursor: pointer;
  color: #0b2f55;
  font-weight: 500;
}
.checkbox-row input[type="checkbox"] {
  accent-color: #00336C;
  margin-right: 0.5em;
  width: 1.1em;
  height: 1.1em;
}
.apply-expertise-btn {
  margin-top: 1vw;
  padding: 0.5em 1.2em;
  border-radius: 6px;
  background: #00336C;
  color: #fff;
  border: none;
  font-weight: bold;
  cursor: pointer;
  font-size: 1vw;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .experts-section-flex {
    flex-direction: column;
    width: 98%;
    margin-left: 1%;
    gap: 2vw;
  }
  .expertise-filter-box {
    max-width: 100%;
    width: 100%;
    margin-bottom: 2vw;
  }
}
@import url("https://fonts.googleapis.com/css?family=Poppins:900,700,500,800,600,400|Inter:900,700,500,800,600,400");

* {
  padding: 0;
  margin: 0;
  transition: 0.2s;
}
body {
  background-color: #f6f6f6;
}

/* Navigation Bar */
.nav-bar {
  background: #0b2f55;
  padding: 1vw 7.5%;
  position: fixed;
  width: 85%;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links a,
.login-links a {
  color: #ffb800;
  font-family: "Inter";
  margin-right: 2vw;
  text-decoration: none;
  font-size: 1vw;
}

.nav-links a:hover,
.login-links a:hover {
  color: white;
}

.login-links .register {
  color: white;
}

/* Adjust top margin for the first section to account for the fixed navbar */
.servicesCont:first-of-type {
  margin-top: 5vw;
}

.servicesCont {
  width: 85%;
  margin-left: 7.5%;
}
.sectHeading h1 {
  font-family: "Inter";
  font-weight: bold;
  color: #0b2f55;
  font-size: 2vw;
  padding: 0.6vw;
  border-left: 0.5vw solid #ffb800;
  margin-top: 5vw;
}

.servicesGrid {
  display: grid;
  grid-template-columns: 30.5% 30.5% 30.5%;
  grid-column-gap: 4.25%;
  grid-row-gap: 5%;
  margin-top: 3.5vw;
}
.services {
  height: auto;
  background-color: white;
  text-align: center;
  border-radius: 0.4vw;
  filter: drop-shadow(0 0 0.40rem #e1e1e1);
}
.services img {
  height: 11vw;
  margin-top: 4vw;
}
.line {
  width: 25%;
  height: 0.35vw;
  background-color: #ffb800;
  margin-left: 37.5%;
  margin-top: 3.5vw;
}
.services h2 {
  font-family: "Inter";
  font-weight: 600;
  color: #ffb800;
  font-size: 1.35vw;
  margin-top: 1.3vw;
  margin-bottom: 1.3vw;
}

.expertsCont {
  background-color: white;
  margin-top: 5vw;
  height: auto;
}

.expertsInnerCont {
  width: 85%;
  margin-left: 7.5%;
}
.expertsInnerCont h1 {
  font-family: "Inter";
  font-weight: bold;
  color: #0b2f55;
  font-size: 2vw;
  padding-top: 5vw;
}
.expertsGrid {
  display: grid;
  grid-template-columns: 31% 31% 31%;
  grid-column-gap: 3.5%;
  grid-row-gap: 3%;
  margin-top: 4vw;
  width: 85%;
  margin-left: 7.5%;
  padding-bottom: 4vw;
}
.experts {
  height: auto;
  background-color: #f6f6f6;
  text-align: center;
  border: 0.2vw solid gainsboro;
  border-radius: 0.65vw;
  /* filter: drop-shadow(0 0 0.40rem #e1e1e1); */
}
.dataCont {
  height: 4vw;
}
.experts h1 {
  font-size: 1.25vw;
  font-family: "Poppins";
  color: #0b2f55;
  margin-top: 0.75vw;
  font-weight: bold;
}
.experts h3 {
  font-size: 1vw;
  font-family: "Inter";
  color: #ffb800;
  margin-top: 0.25vw;
  font-weight: 500;
}
.experts h4 {
  font-size: 1vw;
  font-family: "Inter";
  color: #0b2f55;
  margin-top: 0.25vw;
  font-weight: normal;
  margin-top: 1vw;
}
.experts h5 {
  font-size: 1vw;
  font-family: "Inter";
  color: #0b2f55;
  font-weight: bold;
  margin-top: 3.5vw;
  background-color: #ffb800;
  padding: 0.85vw;
  width: 70%;
  margin-left: 10%;
  border-radius: 0.45vw;
  margin-bottom: 2vw;
}
.experts:hover h1 {
  color: white;
}
.experts:hover h4 {
  color: white;
}
.experts:hover {
  filter: drop-shadow(0 0 0.40rem #e1e1e1);
  border: 0.2vw solid #0b2f55;
  background-color: #0b2f55;
}
.experts img {
  height: 12vw;
  margin-top: 2vw;
}

#courseHover:hover {
  background-color: #ffb800;
}
#courseHover:hover .line {
  background-color: #0b2f55;
}
#courseHover:hover h2 {
  color: #0b2f55;
}
a {
  text-decoration: none;
}
#readMore {
  display: none;
}
#courseHover:hover #readMore {
  display: block;
  color: white;
  margin-top: 0.5vw;
}

@media screen and (max-width: 700px) and (min-width: 320px) {
  .sectHeading h1 {
    font-family: "Inter";
    font-weight: bold;
    color: #0b2f55;
    font-size: 5vw;
    padding: 0.6vw;
    border-left: 0.5vw solid #ffb800;
    margin-top: 10vw;
  }

  .servicesGrid {
    display: grid;
    grid-template-columns: 100%;
    grid-column-gap: 4.25%;
    grid-row-gap: 5vw;
    margin-top: 10vw;
    margin-bottom: 25vw;
  }

  .services img {
    height: 30vw;
    margin-top: 10vw;
  }

  .services h2 {
    font-family: "Inter";
    font-weight: 600;
    color: #ffb800;
    font-size: 4.5vw;
    margin-top: 2vw;
    margin-bottom: 5vw;
  }

  .expertsInnerCont h1 {
    font-family: "Inter";
    font-weight: bold;
    color: #0b2f55;
    font-size: 5vw;
    padding-top: 5vw;
  }
  .expertsGrid {
    display: grid;
    grid-template-columns: 100%;
    grid-row-gap: 4vw;
    margin-top: 4vw;
    width: 85%;
    margin-left: 7.5%;
    padding-bottom: 4vw;
  }

  .experts img {
    height: 40vw;
    margin-top: 10vw;
  }

  .experts h1 {
    font-size: 5vw;
    font-family: "Poppins";
    color: #0b2f55;
    margin-top: 0.75vw;
    font-weight: bold;
  }

  .experts h3 {
    font-size: 5vw;
    font-family: "Inter";
    color: #ffb800;
    margin-top: 0.25vw;
    font-weight: 500;
  }
  .dataCont {
    height: 9vw;
  }
  .experts h4 {
    font-size: 4vw;
    font-family: "Inter";
    color: #0b2f55;
    margin-top: 0.25vw;
    font-weight: normal;
    margin-top: 3vw;
  }
  .experts h5 {
    font-size: 5vw;
    font-family: "Inter";
    color: #0b2f55;
    font-weight: bold;
    margin-top: 3.5vw;
    background-color: #ffb800;
    padding: 3.5vw;
    width: 70%;
    margin-left: 10%;
    border-radius: 2vw;
    margin-bottom: 6vw;
  }
}

/* Additional CSS for Internship Page */

/* Student Login Bar */
.login-bar {
  background: #0b2f55;
  padding: 1vw 7.5%;
  position: fixed;
  width: 85%;
  top: 0;
  z-index: 100;
}

.login-bar a {
  color: #ffb800;
  font-family: "Inter";
  margin-left: 2vw;
  text-decoration: none;
}

.login-bar a.register {
  color: white;
}

/* Internship Takeaway Section */
.services p {
  font-family: "Inter";
  padding: 0 2vw 3vw;
  font-size: 1.1vw;
  color: #0b2f55;
}

/* Internship Info Slider */
.slider {
  display: flex;
  overflow-x: auto;
  padding: 3vw 0;
  scroll-snap-type: x mandatory;
}

.slider .services {
  min-width: 80%;
  margin: 0 2vw;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 2vw;
}

.slider .services img {
  height: 15vw;
  margin-top: 2vw;
}

/* Parallel Images Section */
.parallel-images {
  display: grid;
  grid-template-columns: 48% 48%;
  grid-gap: 4%;
  margin-top: 5vw;
}

.parallel-images img {
  width: 100%;
  border-radius: 0.4vw;
}

.parallel-images img:last-child {
  margin-top: 5vw;
  transform: rotate(3deg);
}

/* Payment Gateway Section */
.payment-form {
  text-align: left;
  font-family: "Inter";
  padding: 3vw;
}

.payment-form label {
  display: block;
  margin-bottom: 0.5vw;
  color: #0b2f55;
  font-weight: 500;
}

.payment-form input {
  width: 100%;
  padding: 1vw;
  border: 1px solid #0b2f55;
  border-radius: 0.4vw;
  margin-top: 0.5vw;
  font-family: "Inter";
}

.payment-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 2vw;
  margin: 2vw 0;
}

.payment-form h5 {
  cursor: pointer;
  color: white !important;
  margin-top: 2vw;
  text-align: center;
}

/* Additional CSS for Publications Page */

/* Popup Overlay */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  overflow-y: auto; /* Allow scrolling for the overlay */
}

/* Publication Popup */
.publication-popup {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  width: 70%;
  max-height: 90vh; /* Limit height to 90% of viewport height */
  border-radius: 0.4vw;
  padding: 2vw;
  animation: popIn 0.3s ease-out;
  grid-template-columns: 40% 60%;
  gap: 2vw;
  overflow-y: auto; /* Make popup content scrollable */
  position: relative; /* For close icon positioning */
}

/* Popup Image */
.publication-popup img {
  width: 100%;
  border-radius: 0.4vw;
}

/* Popup Content */
.popup-content {
  font-family: "Inter";
  color: #0b2f55;
}

.popup-content h2 {
  font-size: 2vw;
  margin-bottom: 1vw;
}

.popup-content .meta {
  color: #ffb800;
  font-weight: 500;
  margin: 1vw 0;
  font-size: 1.1vw;
}

.popup-content .abstract {
  font-size: 1.1vw;
  margin: 1vw 0;
  line-height: 1.5;
}

/* Publication Proof Image */
.publication-proof {
  margin-top: 1vw;
}

.proof-image {
  width: 100%;
  border: 2px solid #ffb800;
  border-radius: 0.4vw;
}

/* Close Icon (Cross) */
.close-icon {
  position: absolute;
  top: 1vw;
  right: 1vw;
  font-size: 2vw;
  color: #0b2f55;
  cursor: pointer;
  font-family: "Inter";
  font-weight: bold;
  background: transparent;
  border: none;
  padding: 0.5vw;
}

.close-icon:hover {
  color: #ffb800;
}

/* Popup Animation */
@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Publication Card Styles */
.services .publisher,
.services .author {
  font-family: "Inter";
  color: #0b2f55;
  font-size: 1.1vw;
  margin-top: 0.5vw;
}

.services .read-more {
  font-family: "Inter";
  color: #ffb800;
  font-size: 1vw;
  margin-top: 1vw;
  font-weight: 500;
  cursor: pointer;
}

.services:hover{
  color: #0b2f55;
}

/* Prevent body scrolling when popup is open */
body.popup-open {
  overflow: hidden;
}

/* Additional CSS for Fellowship Page */

/* Apply Now Icon */
.apply-now-icon {
  position: fixed;
  top: 2vw;
  right: 2vw;
  background-color: #ffb800;
  color: #0b2f55;
  padding: 1vw 2vw;
  border-radius: 0.4vw;
  font-family: "Inter";
  font-weight: bold;
  font-size: 1.2vw;
  cursor: pointer;
  z-index: 1000;
  text-decoration: none;
  box-shadow: 0 0.2vw 0.5vw rgba(0, 0, 0, 0.2);
}

.apply-now-icon:hover {
  background-color: #0b2f55;
  color: #ffb800;
}

/* Fellowship Blocks */
.fellowship-block {
  background-color: white;
  padding: 2vw;
  border-radius: 0.4vw;
  margin-bottom: 2vw;
  filter: drop-shadow(0 0 0.40rem #e1e1e1);
}

.fellowship-block h2 {
  font-family: "Inter";
  font-weight: bold;
  color: #0b2f55;
  font-size: 1.8vw;
  margin-bottom: 1vw;
}

.fellowship-block p {
  font-family: "Inter";
  color: #0b2f55;
  font-size: 1.1vw;
  line-height: 1.6;
}

/* Fellows Grid */
.fellows-grid {
  display: grid;
  grid-template-columns: 48% 48%;
  grid-gap: 4%;
  margin-top: 3vw;
}

.fellow-card {
  background-color: white;
  padding: 2vw;
  border-radius: 0.4vw;
  filter: drop-shadow(0 0 0.40rem #e1e1e1);
  text-align: center;
}

.fellow-card img {
  width: 10vw;
  height: 10vw;
  border-radius: 50%;
  margin-bottom: 1vw;
}

.fellow-card h3 {
  font-family: "Inter";
  font-weight: bold;
  color: #0b2f55;
  font-size: 1.5vw;
  margin-bottom: 0.5vw;
}

.fellow-card h4 {
  font-family: "Inter";
  color: #ffb800;
  font-size: 1.2vw;
  margin-bottom: 1vw;
}

.fellow-card p {
  font-family: "Inter";
  color: #0b2f55;
  font-size: 1vw;
  line-height: 1.5;
}

/* Apply Now Button */
.apply-now {
  background-color: #ffb800;
  color: #0b2f55;
  border: none;
  padding: 0.8vw 1.5vw;
  font-family: "Inter";
  font-weight: 600;
  font-size: 1vw;
  border-radius: 0.3vw;
  cursor: pointer;
  margin-top: 1vw;
  transition: background-color 0.3s, color 0.3s;
}

.apply-now:hover {
  background-color: #0b2f55;
  color: #ffb800;
}

/* Footer Styles */
.footer {
  background-color: #0b2f55;
  padding: 4vw 0;
  color: white;
  margin-top: 5vw;
}

.footer-content {
  width: 85%;
  margin: 0 auto;
  display: flex;
  /* display: grid;
  grid-template-columns: 30% 35% 35%;
  gap: 4vw; */
}

.footer-col {
  font-family: "Inter", sans-serif;
  display:flex;
  justify-content: space-between;
  width: 100%;
}

.footer-logo {
  margin-bottom: 2vw;
}

.footer-logo img {
  width: 5vw;
  height: 5vw;
  margin-bottom: 1vw;
}

.footer-logo h3 {
  font-size: 1.8vw;
  font-weight: bold;
  color: #ffb800;
  margin-bottom: 0.5vw;
}

.tagline {
  font-size: 1vw;
  color: #ffffff;
  margin-bottom: 2vw;
}

.footer h4 {
  color: #ffb800;
  font-size: 1.2vw;
  font-weight: 600;
  margin-bottom: 1vw;
}

.footer p {
  font-size: 0.9vw;
  line-height: 1.6;
  margin-bottom: 0.5vw;
  color: rgba(255, 255, 255, 0.8);
}

.social-icons {
  display: flex;
  gap: 1vw;
  margin-top: 1.5vw;
}

.social-icon {
  width: 2.5vw;
  height: 2.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffb800;
  text-decoration: none;
  font-size: 0.9vw;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #ffb800;
  color: #0b2f55;
}

.quick-links,
.academics ul,
.recent-posts ul {
  list-style: none;
  padding: 0;
}

.quick-links li,
.academics li,
.recent-posts li {
  margin-bottom: 0.8vw;
}

.quick-links a,
.academics a,
.recent-posts a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9vw;
  transition: color 0.3s ease;
}

.quick-links a:hover,
.academics a:hover,
.recent-posts a:hover {
  color: #ffb800;
}

/* 
.location,
.contact {
  margin-top: 2vw;
} */

.academics {
  margin-bottom: 3vw;
}

/* Mobile Responsive Footer */
@media screen and (max-width: 700px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 4vw;
  }

  .footer-logo img {
    width: 15vw;
    height: 15vw;
  }

  .footer-logo h3 {
    font-size: 5vw;
  }

  .footer h4 {
    font-size: 4vw;
  }

  .footer p,
  .quick-links a,
  .academics a,
  .recent-posts a {
    font-size: 3.5vw;
  }

  .social-icon {
    width: 8vw;
    height: 8vw;
    font-size: 3vw;
  }

  .tagline {
    font-size: 3.5vw;
  }
}


/* ===================== Fellowship Page Modern Styles ===================== */
.imh-fellowship-main {
  max-width: 1100px;
  margin: 3vw auto 5vw auto;
  padding: 2vw 2vw 3vw 2vw;
  background: #fff;
  border-radius: 1vw;
  box-shadow: 0 4px 32px rgba(11,47,85,0.07);
  font-family: 'Inter', sans-serif;
}

.imh-fellowship-hero {
  text-align: center;
  margin-bottom: 2.5vw;
}
.imh-fellowship-hero h1 {
  color: #0b2f55;
  font-size: 2.5vw;
  font-weight: 700;
  margin-bottom: 1vw;
}
.imh-fellowship-intro {
  color: #333;
  font-size: 1.2vw;
  line-height: 1.7;
  margin: 0 auto 1vw auto;
  max-width: 800px;
}

.imh-fellowship-section {
  margin-bottom: 2.5vw;
}
.imh-fellowship-section h2 {
  color: #0b2f55;
  font-size: 1.7vw;
  font-weight: 600;
  margin-bottom: 1vw;
}
.imh-fellowship-list {
  list-style: disc inside;
  color: #222;
  font-size: 1.08vw;
  margin: 0 0 1vw 1vw;
  padding: 0;
  line-height: 1.7;
}
.imh-fellowship-list li {
  margin-bottom: 0.7em;
}

.imh-fellowship-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: center;
  margin-bottom: 1vw;
}
.imh-fellowship-card {
  background: #f7f9fb;
  border-radius: 0.7vw;
  box-shadow: 0 2px 12px rgba(11,47,85,0.07);
  padding: 1.5vw 2vw;
  min-width: 180px;
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
}
.imh-fellowship-card h3 {
  color: #0b2f55;
  font-size: 1.2vw;
  font-weight: 600;
  margin-bottom: 0.5vw;
}
.imh-fellowship-price {
  color: #ffb800;
  font-size: 1.3vw;
  font-weight: 700;
}

.imh-fellowship-steps {
  list-style: decimal inside;
  color: #164279;
  font-size: 1.08vw;
  margin: 0 0 1vw 1vw;
  padding: 0;
  line-height: 1.7;
}
.imh-fellowship-steps li {
  margin-bottom: 0.7em;
}

.imh-fellows-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  margin-bottom: 1vw;
}
.imh-fellows-type {
  flex: 1 1 320px;
  background: #f7f9fb;
  border-radius: 0.7vw;
  box-shadow: 0 2px 12px rgba(11,47,85,0.07);
  padding: 1.5vw 2vw;
  min-width: 280px;
  max-width: 500px;
}
.imh-fellows-type h3 {
  color: #0b2f55;
  font-size: 1.1vw;
  font-weight: 600;
  margin-bottom: 0.7vw;
}
.imh-fellowship-highlight {
  color: #ffb800;
  font-weight: 600;
}

.imh-impact-list {
  list-style: square inside;
  color: #164279;
  font-size: 1.08vw;
  margin: 0 0 1vw 1vw;
  padding: 0;
  line-height: 1.7;
}
.imh-fellowship-note {
  background: #fffbe6;
  color: #b38b00;
  border-left: 4px solid #ffb800;
  padding: 1vw 1.5vw;
  border-radius: 0.4vw;
  font-size: 1vw;
  margin-top: 1vw;
}

@media (max-width: 900px) {
  .imh-fellowship-main {
    padding: 3vw 1vw 4vw 1vw;
  }
  .imh-fellowship-hero h1 {
    font-size: 5vw;
  }
  .imh-fellowship-section h2 {
    font-size: 3.5vw;
  }
  .imh-fellowship-list, .imh-fellowship-steps, .imh-impact-list {
    font-size: 2.5vw;
  }
  .imh-fellowship-card h3, .imh-fellowship-price {
    font-size: 2.5vw;
  }
  .imh-fellows-type h3 {
    font-size: 2vw;
  }
}

@media (max-width: 600px) {
  .imh-fellowship-main {
    padding: 4vw 0.5vw 6vw 0.5vw;
  }
  .imh-fellowship-cards, .imh-fellows-group {
    flex-direction: column;
    gap: 3vw;
  }
  .imh-fellowship-card, .imh-fellows-type {
    min-width: 0;
    max-width: 100%;
    padding: 3vw 3vw;
  }
}
  
  .fellowship-block p {
    font-family: "Inter";
    color: #0b2f55;
    font-size: 1.1vw;
    line-height: 1.6;
    margin-bottom: 1.5vw;
  }
  
  .feature-list {
    list-style: none;
    padding: 0;
  }
  
  .feature-list li {
    font-family: "Inter";
    color: #0b2f55;
    font-size: 1.1vw;
    margin-bottom: 1vw;
    padding-left: 1.5vw;
    position: relative;
  }
  
  .feature-list li::before {
    content: "•";
    color: #ffb800;
    font-size: 1.5vw;
    position: absolute;
    left: 0;
  }
  
  /* Screening Procedures Styles */
  .procedure-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5vw;
  }
  
  .step {
    display: flex;
    align-items: flex-start;
    gap: 1vw;
  }
  
  .step-number {
    background-color: #ffb800;
    color: #0b2f55;
    width: 2vw;
    height: 2vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter";
    font-weight: bold;
    font-size: 1.1vw;
  }
  
  .step h3 {
    font-family: "Inter";
    color: #0b2f55;
    font-size: 1.3vw;
    margin-bottom: 0.5vw;
  }
  
  .step p {
    font-family: "Inter";
    color: #0b2f55;
    font-size: 1vw;
    margin: 0;
  }
  
  /* Fees Table Styles */
  .fees-table {
    width: 100%;
    margin-top: 1vw;
  }
  
  .fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 0;
    border-bottom: 1px solid #e1e1e1;
  }
  
  .fee-row:last-child {
    border-bottom: none;
  }
  
  .fee-type {
    font-family: "Inter";
    color: #0b2f55;
    font-size: 1.1vw;
  }
  
  .fee-amount {
    font-family: "Inter";
    color: #0b2f55;
    font-weight: bold;
    font-size: 1.1vw;
  }
  
  /* Right Column Styles */
  .fellowship-right {
    display: flex;
    flex-direction: column;
    gap: 2vw;
  }
  
  .apply-now-button {
    background-color: #ffb800;
    color: #0b2f55;
    font-family: "Inter";
    font-weight: bold;
    font-size: 1.3vw;
    padding: 1.5vw;
    border-radius: 0.4vw;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 0.40rem #e1e1e1);
  }
  
  .apply-now-button:hover {
    background-color: #0b2f55;
    color: #ffb800;
  }
  
  .fellows-section {
    background-color: white;
    padding: 2vw;
    border-radius: 0.4vw;
    filter: drop-shadow(0 0 0.40rem #e1e1e1);
  }
  
  .fellows-section h2 {
    font-family: "Inter";
    font-weight: bold;
    color: #0b2f55;
    font-size: 1.8vw;
    margin-bottom: 2vw;
  }
  
  .fellows-grid {
    display: flex;
    flex-direction: column;
    gap: 2vw;
  }
  
  .fellow-card {
    text-align: center;
    padding: 1.5vw;
    background-color: #f6f6f6;
    border-radius: 0.4vw;
    transition: all 0.3s ease;
  }
  
  .fellow-card:hover {
    transform: translateY(-0.5vw);
    background-color: #0b2f55;
  }
  
  .fellow-card:hover h3,
  .fellow-card:hover h4 {
    color: white;
  }
  
  .fellow-card img {
    width: 8vw;
    height: 8vw;
    border-radius: 50%;
    margin-bottom: 1vw;
    object-fit: cover;
  }
  
  .fellow-card h3 {
    font-family: "Inter";
    color: #0b2f55;
    font-size: 1.2vw;
    margin-bottom: 0.5vw;
    transition: color 0.3s ease;
  }
  
  .fellow-card h4 {
    font-family: "Inter";
    color: #ffb800;
    font-size: 1vw;
    font-weight: normal;
    transition: color 0.3s ease;
  }
  
  /* Mobile Responsive Styles */
  @media screen and (max-width: 700px) {
    .fellowship-content {
      grid-template-columns: 1fr;
      gap: 4vw;
    }
  
    .fellowship-block h2 {
      font-size: 4.5vw;
    }
  
    .fellowship-block p,
    .feature-list li {
      font-size: 3.5vw;
    }
    .services p {
      font-family: "Inter";
      padding: 0 2vw 3vw;
      font-size: 4vw;
      color: #0b2f55;
  }
  .services .publisher, .services .author {
    font-family: "Inter";
    color: #0b2f55;
    font-size: 4vw;
    margin-top: 0.5vw;
}
.services .read-more {
  font-family: "Inter";
  color: #ffb800;
  font-size: 5vw;
  margin-top: 1vw;
  font-weight: 500;
  cursor: pointer;
}
    .step-number {
      width: 6vw;
      height: 6vw;
      font-size: 3.5vw;
    }
  
    .step h3 {
      font-size: 4vw;
    }
  
    .step p {
      font-size: 3.5vw;
    }
  
    .fee-type,
    .fee-amount {
      font-size: 3.5vw;
    }
  
    .apply-now-button {
      font-size: 4vw;
      padding: 4vw;
    }
  
    .fellows-section h2 {
      font-size: 4.5vw;
    }
  
    .fellow-card img {
      width: 20vw;
      height: 20vw;
    }
  
    .fellow-card h3 {
      font-size: 4vw;
    }
  
    .fellow-card h4 {
      font-size: 3.5vw;
    }
  }

/* Resources Page Styles */
/* Base styles */
.resources-section * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.resources-section body {
    background-color: #f5f5f5;
    line-height: 1.6;
    padding: 20px;
}

.resources-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Main title */
.resources-section .main-title {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: bold;
}

/* Cards grid */
.resources-section .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Card styles */
.resources-section .card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
}

.resources-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.resources-section .card-header {
    padding: 15px 20px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e1e1e1;
}

.resources-section .card-header h2 {
    font-size: 1.2rem;
    color: #2c3e50;
}

.resources-section .expand-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #3498db;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.resources-section .expand-btn:hover {
    background-color: #f0f0f0;
}

.resources-section .card-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.resources-section .card.expanded .card-content {
    padding: 20px;
    max-height: 300px;
    overflow-y: auto;
}

.resources-section .card.expanded .expand-btn {
    transform: rotate(45deg);
}

.resources-section .read-more {
    display: inline-block;
    margin-top: 10px;
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

.resources-section .read-more:hover {
    text-decoration: underline;
}

/* Pagination */
.resources-section .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.resources-section .pagination-arrow,
.resources-section .pagination-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    border-radius: 5px;
    text-decoration: none;
    color: #3498db;
    font-weight: bold;
    transition: all 0.3s ease;
}

.resources-section .pagination-arrow {
    background-color: #fff;
    border: 1px solid #3498db;
}

.resources-section .pagination-number {
    background-color: #fff;
    border: 1px solid #e1e1e1;
}

.resources-section .pagination-number.active {
    background-color: #3498db;
    color: #fff;
}

.resources-section .pagination-arrow:hover,
.resources-section .pagination-number:hover:not(.active) {
    background-color: #f0f0f0;
}

.resources-section .pagination-ellipsis {
    margin: 0 5px;
    color: #7f8c8d;
}

/* Responsive design */
@media (max-width: 992px) {
    .resources-section .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .resources-section .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-section .pagination-number:not(.active):not(:first-child):not(:last-child) {
        display: none;
    }
}

/* Resources Page Styles */
.resources-section {
    width: 85%;
    margin-left: 7.5%;
    margin-top: 8vw;
    margin-bottom: 4vw;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    margin-top: 3vw;
}

.resource-card {
    background-color: white;
    border-radius: 0.4vw;
    overflow: hidden;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 0.40rem #e1e1e1);
    border: 0.15vw solid transparent;
}

.resource-card:hover {
    transform: translateY(-0.5vw);
    border-color: #ffb800;
}

.resource-header {
    padding: 1.5vw;
    border-bottom: 1px solid #e1e1e1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resource-header h2 {
    font-family: "Inter";
    font-size: 1.3vw;
    color: #0b2f55;
    font-weight: bold;
    margin: 0;
}

.resource-content {
    padding: 1.5vw;
    font-family: "Inter";
    color: #0b2f55;
    font-size: 1vw;
    line-height: 1.6;
}

.resource-footer {
    padding: 1.5vw;
    background-color: #f6f6f6;
    text-align: right;
}

.resource-tag {
    display: inline-block;
    padding: 0.4vw 0.8vw;
    background-color: #0b2f55;
    color: #ffb800;
    border-radius: 0.4vw;
    font-size: 0.9vw;
    font-family: "Inter";
    margin-right: 0.5vw;
}

@media screen and (max-width: 768px) {
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .resource-header h2 {
        font-size: 4vw;
    }

    .resource-content {
        font-size: 3.5vw;
    }

    .resource-tag {
        font-size: 3vw;
        padding: 1vw 2vw;
    }

    .resource-footer .read-more {
        font-size: 3.5vw;
    }
}

/* Blog Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    margin-top: 3vw;
}

.blog-card {
    background-color: white;
    border-radius: 0.4vw;
    overflow: hidden;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 0.40rem #e1e1e1);
    border: 0.15vw solid transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 20vw;
}

.blog-card:hover {
    transform: translateY(-0.5vw);
    border-color: #ffb800;
}

.blog-header {
    padding: 1.5vw;
    border-bottom: 1px solid #e1e1e1;
    position: relative;
}

.blog-header h2 {
    font-family: "Inter";
    font-size: 1.4vw;
    color: #0b2f55;
    font-weight: bold;
    margin: 0;
}

.blog-content {
    padding: 2vw;
    font-family: "Inter";
    color: #0b2f55;
    flex-grow: 1;
}

.blog-content p {
    font-size: 1.1vw;
    line-height: 1.6;
    margin-bottom: 0;
}

.blog-footer {
    padding: 1.5vw;
    background-color: #f6f6f6;
    text-align: center;
    margin-top: auto;
}

.read-more-btn {
    background-color: #ffb800;
    color: #0b2f55;
    border: none;
    padding: 0.8vw 1.5vw;
    font-family: "Inter";
    font-weight: 600;
    font-size: 1vw;
    border-radius: 0.3vw;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
}

.read-more-btn:hover {
    background-color: #0b2f55;
    color: #ffb800;
}

/* Blog Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    overflow-y: auto;
}

.blog-popup {
    display: none;
    background: white;
    width: 70%;
    max-height: 90vh;
    border-radius: 0.4vw;
    padding: 2vw;
    margin: 2vw auto;
    position: relative;
    animation: popIn 0.3s ease-out;
}

.blog-popup .popup-content {
    padding: 1vw;
}

.blog-popup h2 {
    font-family: "Inter";
    font-size: 2vw;
    color: #0b2f55;
    margin-bottom: 1vw;
}

.blog-popup .meta {
    color: #ffb800;
    font-weight: 500;
    font-size: 1.1vw;
    margin-bottom: 2vw;
}

.blog-popup h3 {
    font-family: "Inter";
    font-size: 1.4vw;
    color: #0b2f55;
    margin: 2vw 0 1vw;
}

.blog-popup p {
    font-family: "Inter";
    font-size: 1.1vw;
    line-height: 1.6;
    color: #0b2f55;
    margin-bottom: 1vw;
}

.blog-popup ul {
    list-style: none;
    padding: 0;
    margin: 1vw 0;
}

.blog-popup li {
    font-family: "Inter";
    font-size: 1.1vw;
    color: #0b2f55;
    margin-bottom: 1vw;
    padding-left: 1.5vw;
    position: relative;
}

.blog-popup li::before {
    content: "•";
    color: #ffb800;
    font-size: 1.5vw;
    position: absolute;
    left: 0;
}

.close-icon {
    position: absolute;
    top: 1vw;
    right: 1vw;
    font-size: 2vw;
    color: #0b2f55;
    cursor: pointer;
    font-family: "Inter";
    font-weight: bold;
    background: transparent;
    border: none;
    padding: 0.5vw;
}

.close-icon:hover {
    color: #ffb800;
}

@keyframes popIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    .blog-card {
        min-height: 45vw;
    }

    .blog-header h2 {
        font-size: 4vw;
    }

    .blog-content p {
        font-size: 3.5vw;
    }

    .read-more-btn {
        font-size: 3.5vw;
        padding: 2vw 4vw;
    }

    .blog-popup {
        width: 90%;
        padding: 4vw;
    }

    .blog-popup h2 {
        font-size: 5vw;
    }

    .blog-popup .meta {
        font-size: 3.5vw;
    }

    .blog-popup h3 {
        font-size: 4vw;
    }

    .blog-popup p,
    .blog-popup li {
        font-size: 3.5vw;
    }

    .close-icon {
        font-size: 6vw;
        padding: 2vw;
    }
}

/* Application Form Styles */
.application-container {
    width: 85%;
    margin: 8vw auto 4vw;
    max-width: 1200px;
}

.application-form {
    background-color: white;
    padding: 3vw;
    border-radius: 0.4vw;
    filter: drop-shadow(0 0 0.40rem #e1e1e1);
    margin-top: 3vw;
}

.form-group {
    margin-bottom: 2vw;
}

.form-group label {
    display: block;
    font-family: "Inter";
    font-size: 1.1vw;
    color: #0b2f55;
    margin-bottom: 0.5vw;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1vw;
    border: 1px solid #e1e1e1;
    border-radius: 0.4vw;
    font-family: "Inter";
    font-size: 1.1vw;
    color: #0b2f55;
    transition: border-color 0.3s ease;
}

.form-group input[type="file"] {
    padding: 0.5vw 0;
    border: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffb800;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: #ffb800;
    color: #0b2f55;
    border: none;
    padding: 1vw 2vw;
    font-family: "Inter";
    font-weight: 600;
    font-size: 1.1vw;
    border-radius: 0.4vw;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #0b2f55;
    color: #ffb800;
}

@media screen and (max-width: 768px) {
    .application-form {
        padding: 6vw;
    }

    .form-group label {
        font-size: 4vw;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 3.5vw;
        padding: 3vw;
    }

    .submit-btn {
        font-size: 4vw;
        padding: 3vw;
    }
}

/* Internship Application Form */
.application-container {
    max-width: 800px;
    margin: 8vw auto 4vw;
    padding: 0 2vw;
}

.application-form {
    background: white;
    padding: 3vw;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 2vw;
}

.form-group label {
    display: block;
    margin-bottom: 0.5vw;
    color: #0b2f55;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1vw;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1vw;
    font-family: "Inter", sans-serif;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group input[type="file"] {
    padding: 0.5vw 0;
    border: none;
}

.submit-btn {
    background: #0b2f55;
    color: #ffb800;
    padding: 1vw 3vw;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1vw;
    font-weight: bold;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #ffb800;
    color: #0b2f55;
}

.terms-container {
    border: 1px solid #e1e1e1;
    padding: 2vw;
    border-radius: 0.65vw;
    background-color: #f9f9f9;
    margin-top: 2vw;
    margin-bottom: 1.5vw;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.05);
}

.terms-section h3 {
    font-family: "Inter", sans-serif;
    color: #0b2f55;
    font-size: 1.4vw;
    margin-bottom: 1vw;
    font-weight: 700;
    border-bottom: 2px solid #ffb800;
    padding-bottom: 0.5vw;
}

.terms-section h4 {
    font-family: "Inter", sans-serif;
    color: #0b2f55;
    font-size: 1.1vw;
    margin-top: 1.5vw;
    margin-bottom: 0.8vw;
    font-weight: 600;
}

.terms-section p, .terms-section ul {
    font-size: 1vw;
    color: #333;
    line-height: 1.6;
}

.terms-section ul {
    padding-left: 2vw;
    margin-top: 0.5vw;
}

.terms-section ul li {
    margin-bottom: 0.5vw;
}

/* Success Page Styles */
.application-form h2 {
    color: #0b2f55;
    margin: 1vw 0;
}

.application-form p {
    color: #666;
    line-height: 1.6;
    margin: 1vw 0;
}

/* Fellowship and Conference Page Styles */
.content {
    margin-top: 80px;
    padding: 20px 7.5%;
}

.section, .conference-card {
    background: #ffffff;
    padding: 2vw;
    border-radius: 5px;
    margin-bottom: 2vw;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.section h1, .conference-card h1 {
    font-size: 2.2vw;
    font-weight: 700;
    border-left: 0.5vw solid #ffb800;
    padding-left: 1vw;
    padding-bottom: 1vw;
    font-family: "Inter";
}

.section h2, .conference-card h2 {
    font-size: 1.6vw;
    color: #164279;
    font-family: "Inter";
}

.section h3, .conference-card h3 {
    color: #0b2f55;
    font-size: 1.3vw;
    margin: 1.5vw 0 1vw;
    font-family: "Inter";
}

.section p, .conference-card p {
    font-family: "Inter";
    line-height: 1.6;
    margin-bottom: 1vw;
    color: #333;
    font-size: 1.1vw;
}

.benefits-list {
    list-style-type: none;
    padding: 0;
}

.benefits-list li {
    margin: 10px 0;
    padding-left: 20px;
    position: relative;
    font-family: "Inter";
    font-size: 1.1vw;
    color: #333;
}

.benefits-list li:before {
    content: "•";
    color: #ffb800;
    position: absolute;
    left: 0;
}

.fellowship-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.category {
    background: #f5f5f5;
    padding: 1.5vw;
    border-radius: 5px;
    text-align: center;
    transition: all 0.3s ease;
}

.category:hover {
    background: #0b2f55;

    transform: translateY(-3px);
}

.category:hover h3, 
.category:hover p,
.category:hover li {
    color: white;
}

.category h3 {
    font-family: "Inter";
    color: #0b2f55;
    font-size: 1.2vw;
    margin-bottom: 0.5vw;
}

.category p {
    color: #164279;
    font-size: 1.4vw;
    font-weight: 600;
}

/* Conference specific styles */
.sub-themes {
    columns: 2;
    margin: 1vw 0;
    font-family: "Inter";
}

.sub-themes li {
    margin-bottom: 0.8vw;
    color: #333;
    font-size: 1.1vw;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1vw 0;
    font-family: "Inter";
}

.fee-table th, 
.fee-table td {
    padding: 1vw;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 1.1vw;
}

.fee-table th {
    background: #0b2f55;
    color: white;
}

.fee-table tr:hover td {
    background: #f5f5f5;
}

.payment-details {
    background: #f9f9f9;
    padding: 2vw;
    border-radius: 5px;
    margin: 1vw 0;
}

.committee-section {
    margin: 1.5vw 0;
}

.mode-details h4 {
    color: #164279;
    font-size: 1.2vw;
    margin: 1.2vw 0 0.5vw;
}

.mode-details ul {
    margin-left: 1.5vw;
    margin-bottom: 1vw;
}

.mode-details li {
    font-family: "Inter";
    font-size: 1.1vw;
    color: #333;
    margin-bottom: 0.5vw;
}

/* Responsive styles for mobile devices */
@media screen and (max-width: 700px) {
    .section h1, 
    .conference-card h1 {
        font-size: 6vw;
    }

    .section h2,
    .conference-card h2 {
        font-size: 4.5vw;
    }

    .section h3,
    .conference-card h3 {
        font-size: 4vw;
    }

    .section p,
    .conference-card p,
    .benefits-list li,
    .sub-themes li,
    .mode-details li {
        font-size: 3.5vw;
    }

    .category {
        padding: 4vw;
    }

    .category h3 {
        font-family: Inter;
        font-size: 4vw;
    }

    .category p {
        font-size: 4.5vw;
    }

    .sub-themes {
        columns: 1;
    }

    .fee-table th,
    .fee-table td {
        padding: 3vw;
        font-size: 3.5vw;
    }

    .mode-details h4 {
        font-size: 4vw;
    }
}

/* Fellowship page styles */
.fellowship-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.category {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.category h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.benefits-list {
    list-style-type: none;
    padding: 0;
}

.benefits-list li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
}

/* Conference page styles */
.conference-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

.sub-themes {
    columns: 2;
    margin: 20px 0;
    padding-left: 20px;
}

.sub-themes li {
    margin-bottom: 10px;
}

.fee-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.fee-table th, .fee-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.fee-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.payment-details {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.payment-details h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.read-more {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: background 0.3s;
}

.read-more:hover {
    background: #34495e;
}

/* Additional Internship Page Styles */
.services ul {
    list-style: none;
    margin-bottom: 2vw;
}

.services ul li {
    font-family: "Inter";
    font-size: 1vw;
    color: #0b2f55;
    margin-bottom: 0.8vw;
    position: relative;
    padding-left: 1.2vw;
}

.services ul li:before {
    content: "•";
    color: #ffb800;
    position: absolute;
    left: 0;
}

.benefits-list p {
    font-family: "Inter";
    font-size: 1.1vw;
    color: #0b2f55;
    margin-bottom: 1vw;
    padding-left: 2vw;
}

@media screen and (max-width: 700px) {
    .services ul li {
        font-size: 3.5vw;
    }
    
    .benefits-list p {
        font-size: 3.5vw;
    }
}

/* Specific styles for internship page */
.servicesCont {
    margin-top: 5vw;
}
.servicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
    gap: 2vw;
}
.services {
    background-color: #fff;
    padding: 2vw;
    border-radius: 0.4vw;
    box-shadow: 0 0 0.40rem #e1e1e1;
    transition: transform 0.3s ease;
}
.services:hover {
    transform: translateY(-0.5vw);
}
.line {
    width: 25%;
    height: 0.35vw;
    background-color: #FFB800;
    margin: 1vw auto;
}
.services h2 {
    color: #FFB800;
    font-size: 1.5vw;
    margin-bottom: 0.5vw;
}
.services h3 {
    color: #ffb800;
    margin: 0.5vw 0;
    font-size: 1.2vw;
}
.services p {
    color: #0b2f55;
    font-size: 1vw;
    margin-bottom: 0.8vw;
}
.curriculum h4 {
    color: #0b2f55;
    font-size: 1.1vw;
    margin: 1vw 0;
}
.curriculum ul {
    list-style: none;
    padding-left: 2vw;
}
.curriculum ul li {
    font-size: 1vw;
    color: #0b2f55;
    margin-bottom: 0.5vw;
}
.apply-now-button {
    background-color: #ffb800;
    color: #0b2f55;
    border: none;
    padding: 0.8vw 1.5vw;
    font-family: "Inter";
    font-weight: 600;
    font-size: 1vw;
    border-radius: 0.3vw;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
    display: inline-block;
    margin-top: 1vw;
}
.apply-now-button:hover {
    background-color: #0b2f55;
    color: #ffb800;
}
.benefits-list {
    text-align: left;
    padding: 2vw;
}
.benefits-list p {
    font-size: 1.3vw;
    color: #0b2f55;
    margin-bottom: 1vw;
    padding-left: 2vw;
    position: relative;
}
.benefits-list p::before {
    content: "✔";
    color: #ffb800;
    position: absolute;
    left: 0;
}

.course-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2vw;
  margin-bottom: 4vw;
}

.category-card {
    background: white;
    padding: 2vw;
    border-radius: 0.4vw;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    filter: drop-shadow(0 0 0.40rem #e1e1e1);
}

.category-card:hover, .category-card.active {
    transform: translateY(-0.5vw);
    border-color: #ffb800;
}

.category-card h3 {
    font-family: "Inter";
    color: #0b2f55;
    font-size: 1.2vw;
    margin-bottom: 1vw;
}

.category-icon {
    font-size: 2vw;
    color: #ffb800;
}

.category-card.active {
    background: #0b2f55;
}

.category-card.active h3 {
    color: #ffb800;
}

.category-card.active .category-icon {
    color: #ffb800;
}

/* Course List Styles */
.courses-container {
    margin-top: 2vw;
}

.course-list h2 {
    font-family: "Inter";
    color: #0b2f55;
    font-size: 1.8vw;
    margin-bottom: 2vw;
    border-left: 0.5vw solid #ffb800;
    padding-left: 1vw;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

.course-card {
    background: white;
    border-radius: 0.4vw;
    overflow: hidden;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 0.40rem #e1e1e1);
}

.course-card:hover {
    transform: translateY(-0.5vw);
}

.course-card a {
    text-decoration: none;
    padding: 2vw;
    display: block;
}

.course-card h3 {
    font-family: "Inter";
    color: #ffb800;
    font-size: 1.3vw;
    margin-bottom: 1vw;
}

.course-card p {
    font-family: "Inter";
    color: #0b2f55;
    font-size: 1vw;
    margin-bottom: 1.5vw;
}

.course-details {
    display: flex;
    justify-content: space-between;
    font-family: "Inter";
    color: #666;
    font-size: 0.9vw;
}

.course-details i {
    margin-right: 0.5vw;
    color: #ffb800;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .course-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 4vw;
    }

    .category-card h3 {
        font-size: 4vw;
    }

    .category-icon {
        font-size: 6vw;
    }

    .course-list h2 {
        font-size: 5vw;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card h3 {
        font-size: 4.5vw;
    }

    .course-card p {
        font-size: 3.5vw;
    }

    .course-details {
        font-size: 3vw;
    }
}

/* Affiliations Section Styles */
.brandsCont {
    overflow: hidden;
    padding: 2vw 0;
}

.brandsCont h1 {
    text-align: center;
    font-family: "Inter";
    color: #0b2f55;
    font-size: 2vw;
    margin-bottom: 3vw;
}

.affiliations-grid {
    display: flex;
    gap: 4vw;
    animation: scroll 30s linear infinite;
    padding: 2vw 0;
    will-change: transform;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/*
To achieve a seamless loop, duplicate the content inside the .affiliations-grid in your HTML, so the items repeat twice in a row. Example:

<div class="affiliations-grid">
  ...your items...
  ...your items again (duplicated)...
</div>

This way, as the first set scrolls out, the second set appears, and the animation loops smoothly.
*/

.affiliations-grid img {
    height: 8vw;
    min-width: 16vw;
    object-fit: contain;
}


/* Add hover pause effect */

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
    .brandsCont h1 {
        font-size: 5vw;
    }
    
    .affiliations-grid img {
        height: 15vw;
        min-width: 30vw;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-30vw * 6 - 4vw * 6));
        }
    }
}

/* Concerns and Services Section */
.concerns-services-section {
    display: grid;
    grid-template-columns: 48% 48%;
    gap: 4%;
    margin: 3vw 0;
    font-family: "Inter";
    
}

.concerns-services-section .column {
    background: white;
    padding: 2vw;
    border-radius: 0.4vw;
    filter: drop-shadow(0 0 0.40rem #e1e1e1);
}

.concerns-services-section h2 {
    font-weight: 600;
    color: #ffb800;
    font-size: 1.5vw;
    margin-bottom: 1.5vw;
    text-align: left;
}

.concerns-services-section ul {
  text-align: left;
    list-style: none;
    padding: 0;
}

.concerns-services-section ul li {
    color: #0b2f55;
    font-size: 1.1vw;
    margin-bottom: 0.8vw;
    padding-left: 1.2vw;
    position: relative;
}

.concerns-services-section ul li:before {
    content: "•";
    color: #ffb800;
    position: absolute;
    left: 0;
}

.service-category {
    margin-bottom: 2vw;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category h3 {
    color: #0b2f55;
    font-size: 1.3vw;
    margin-bottom: 1vw;
    font-weight: 600;
}

.sanseeb-logo{
  width:15vw;
  height: auto;

}

.sanseeb-logo {
    width: auto;
    height: 5vw;
    object-fit: contain;
    margin: 1vw 0;
}

@media screen and (max-width: 700px) {
    .sanseeb-logo {
        height: 15vw;
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 700px) {
    .concerns-services-section {
        grid-template-columns: 100%;
        gap: 2vw;
    }

    .concerns-services-section .column {
        padding: 4vw;
    }

    .concerns-services-section h2 {
        font-size: 4.5vw;
        margin-bottom: 3vw;
    }

    .concerns-services-section ul li {
        font-size: 3.5vw;
        margin-bottom: 2vw;
        padding-left: 3vw;
    }

    .service-category {
        margin-bottom: 4vw;
    }

    .service-category h3 {
        font-size: 4vw;
        margin-bottom: 2vw;
    }
}