.auto-run {
  width: 100%;
  overflow: hidden;
  background: #f5f5f5;
  padding: 12px 0;
  margin-bottom: 40px;
}

.scroll-content {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 25s linear infinite;
}

.scroll-content span {
  margin-right: 40px;
  font-size: 20px;
  font-weight: 600;
}

@keyframes scrollText {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.notice-section {
  padding: 60px 20px;
  background: #f4f7fb;
  text-align: center;
}

.main-title {
  font-size: 35px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #222;
}

/* Layout */
.notice-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  width: 90%;
  margin: auto;
}

/* Card */
.notice-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.notice-card:hover {
  transform: translateY(-5px);
}

/* Header */
.card-header {
  background: #e53935;
  color: #fff;
  padding: 15px;
  font-size: 20px;
  font-weight: 600;
  position: relative;
}

.card-header.blue {
  background: #1e88e5;
}

/* Badge */
.badge {
  background: #ffeb3b;
  color: #000;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 20px;
  margin-left: 10px;
}

/* Registration grid */
.registration-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 15px;
}

.registration-grid img,
.result-box img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.registration-grid img:hover,
.result-box img:hover {
  transform: scale(1.05);
}

/* Result */
.result-box {
  padding: 15px;
}

/* Mobile */
@media (max-width: 768px) {
  .notice-wrapper {
    grid-template-columns: 1fr;
  }
}


.notice-card p {
  display: inline-block;
  margin: 60px auto 20px;
  padding: 6px 14px;
  background: #e3f2fd;
  color: #1e88e5;
  font-size: 25px;
  font-weight: 600;
  border-radius: 20px;
    text-align: center;
}
@media (max-width: 768px) {

  /* Section spacing */
  .notice-section {
    padding: 40px 15px;
  }

  /* Title size */
  .main-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  /* Stack cards */
  .notice-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Card header */
  .card-header {
    font-size: 16px;
    padding: 12px;
  }

  /* Result text */
  .notice-card p {
    font-size: 16px;
    margin: 20px auto 15px;
    padding: 5px 12px;
  }

  /* Images */
  .registration-grid img,
  .result-box img {
    width: 100%;
    height: auto;
  }

  /* Reduce image container spacing */
  .result-box {
    padding: 10px;
  }
}

.institutions-section {
  padding: 60px 20px;
  background: #f4f7fb;
  text-align: center;
   margin-bottom: 30px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 20px !important;
  font-weight: 700;
  color: #222;
  text-align: center !important;
}

/* Grid Layout */
.institutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  width: 90%;
  margin: auto;
}

/* Cards */
.inst-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
 
}

.inst-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.inst-card h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: #1e88e5;
}

.inst-card p {
  font-size: 17px;
   color: #000;
  margin: 4px 0;
  text-align: center;
}
@media (max-width: 768px) {

  .institutions-section {
    padding: 40px 15px;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  .institutions-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    width: 100%;
  }

  .inst-card {
    padding: 18px 15px;
  }

  .inst-card h3 {
    font-size: 17px;
  }

  .inst-card p {
    font-size: 15px;
  }
}
.tagline {
  font-style: italic;
  font-size: 18px;
  color: #555;
  text-align: center;
  /* margin-top: 8px; */
  letter-spacing: 0.5px;
}
/* Make equal height cards */
.row.justify-content-center {
  display: flex;
  flex-wrap: wrap;
}

.single-faculty-card {
  background: #fff;
  border: 2px solid #e3f2fd;
  border-radius: 14px;
  padding: 25px 15px;
  text-align: center;
  transition: 0.3s ease;

  height: 100%;                 /* equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.single-faculty-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  border-color: #1e88e5;
}

/* Increase circle image size */
.single-faculty-card .image img {
width: 220px;        
  height: 270px;
  object-fit: cover;
  
  border: 4px solid #e3f2fd;
  margin-bottom: 15px;
}

/* Center image */
.single-faculty-card .image {
  display: flex;
  justify-content: center;
}
/* Mobile Fix */
@media (max-width: 767px) {

  .single-faculty-card {
    padding: 15px 10px;
    border-radius: 12px;
  }



  .single-faculty-card h3 {
    font-size: 17px;
    line-height: 1.4;
  }

  .single-faculty-card p,
  .single-faculty-card span {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media (max-width: 768px) {
  .single-faculty-card .image img {
    width: 170px;
    height: 200px;
  }
}
.faculty-role, .faculty-org{
    text-align: center;
}
.single-programs-card .image img {
    height: 250px;       /* Set your desired uniform height */
    width: 100%;         /* Make it responsive to card width */
    object-fit: cover;   /* Ensures image covers the area without distortion */
    display: block;
}
/* Image Styling with Box Shadow */
.registration-img,
.result-img {
   
    border-radius: 8px;        /* Optional rounded corners */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Soft shadow */
    transition: transform 0.3s, box-shadow 0.3s; /* Smooth hover effect */
}

/* Optional hover effect for images */
.registration-img:hover,
.result-img:hover {
    transform: translateY(-5px);       /* Slight lift */
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
}

.custom-img {
    height: 700px;
}
@media (max-height: 800px) and (min-width: 992px) {
    .custom-img {
        height: 500px;
    }
}
@media (max-width: 768px) {
    .custom-img {
        height: 300px;  
    }
}
.single-application-card {
    height: 250px;
}

.row.justify-content-center > div {
    display: flex;
}

.single-application-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.copyright-area {
    text-align: center !important;
}
.top-header-social-list p{
    font-size:14px;
    color:#000;
}

.text-primary,.text-muted{
  text-align: center !important;
}
/* Section styling */
.schools-section {
  padding: 80px 20px;
  background-color: #f0f4f8;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.schools-section h2 {
  text-align: center;
  font-size: 2.8rem;
  color: #1e3a8a; /* Indigo-like color */
  margin-bottom: 60px;
  font-weight: 700;
}

/* Grid layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card styling */
.card {
  position: relative;
  padding: 30px 20px 20px 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  background: linear-gradient(135deg, #f0f4ff, #e0ebff);
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  margin-top: 20px;
  color: #2c3e50;
}

.card p {
  color: #555;
  line-height: 1.6;
}

/* Badges */
.badge {
  position: absolute;
  top: 15px;      /* space from top */
  right: 15px;    /* space from right */
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  border-radius: 12px;
  text-transform: uppercase;
}

/* Badge colors by type */
.card.school .badge {
  background: #4f46e5; /* Indigo */
}

.card.coaching .badge {
  background: #10b981; /* Green */
}

.card.puc .badge {
  background: #f59e0b; /* Amber */
}

.card.ug .badge {
  background: #3b82f6; /* Blue */
}

.card.pg .badge {
  background: #8b5cf6; /* Purple */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .schools-section h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .schools-section {
    padding: 60px 15px;
  }
  .card {
    padding: 25px 15px 15px 15px;
  }
  .card h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .schools-section {
    padding: 40px 10px;
  }
  .schools-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .card {
    padding: 20px 12px 12px 12px;
  }
  .card h3 {
    font-size: 1rem;
  }
}
/* Founder Message Styling */
.fitness-content.style-2 .title {
    background-color: #f9f9f9; /* subtle light background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.fitness-content.style-2 .title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.fitness-content.style-2 .title p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 15px;
}

.fitness-content.style-2 .title p:last-child {
    font-weight: 600;
    color: #000;
}

/* Optional: Highlight "Dear Students" */
.fitness-content.style-2 .title p:first-of-type {
    font-style: italic;
    font-weight: 500;
    color: #555;
}
.management-area {
    background-color: #fff;
}

.management-area.bg-light {
    background-color: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.management-card {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
     height: 100%;
}

.management-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.management-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border-radius: 50%; */
    margin-top: 20px;
}

.management-card .card-content {
    padding: 15px 10px 25px;
}

.management-card .card-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.management-card .designation {
    font-size: 0.9rem;
    font-weight: 500;
    color: #7030A0;
    margin-bottom: 5px;
}

.management-card .organisation {
    font-size: 0.85rem;
    color: #555;
}
.designation,.organisation{
  text-align: center !important;
}