/* Color Variables */
:root {
    --primary-accent: #EFB036;
    --secondary-blue: #3B6790;
    --dark-blue: #23486A;
    --light-blue: #4C7B8B;
    --black: #000000;
    --white:#ffffff;
    --color-theme:#981a3a;
}
  
  /* Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    line-height: 1.6;
    color: var(--dark-blue);
  }

  /* global popup  styles*/
  /* Popup Styles */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(35,72,106,0.9);
    z-index: 9999;
    overflow-y: auto;
}

.nav-more-section {
  width: 315px;
  height: 100vh;
  background: #971a3a;
  position: absolute;
  z-index: 100;
  right: 0;
}

.popup-content {
    position: relative;
    background: white;
    max-width: 800px;
    width: 90%;
    margin: 2rem auto;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    color: #23486A;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #23486A;
}

.document-preview {
    margin: 1rem 0;
    border: 2px solid #4C7B8B;
    border-radius: 8px;
    padding: 1rem;
}

.document-item {
    display: flex;
    align-items: center;
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.document-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #3B6790;
}

.download-btn,.popup-download-btn {
    background: #EFB036;
    color: #23486A;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    margin-left: auto;
}

.rich-text-content {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .popup-content {
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .document-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .download-btn, .popup-download-btn {
        margin: 1rem 0 0 0;
        width: 100%;
    }
}

  /* global popu styles ends */
  
  
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: .5rem 0;
}
  
  /* Header Styles */
  .main-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  }
  
  .logo {
    display: flex;
    align-items: center;
    color: white;
  }
  .left-radius {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .right-radius {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
  
  .logo img {
    height: 60px;
    width: auto;
    background: #fff;
  }
  
  .logo h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-accent);
  }
  
  /* Navigation */
  .main-nav {
    margin-left: auto;
  }
  
  .main-nav .main-child {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  .main-nav a {
    color: var(--color-theme);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
  }
  
  .main-nav a:hover,
  .main-nav .active a {
    background: var(--primary-accent);
    color: var(--dark-blue);
  }
  
  .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-theme);
    font-size: 1.8rem;
    padding: 0.5rem;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(135deg, var(--secondary-blue), var(--light-blue));
    color: white;
    padding: 6rem 0;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  .cta-container {
    margin-top: 2rem;
  }
  .cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-accent);
    color: var(--dark-blue);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
  }
  .cta-visit {
    margin-left: 1rem; 
    background: var(--secondary-blue) !important;
    color:#fff;
  }

  
  /* Cards */
  .announcement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .announcement-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid var(--primary-accent);
  }
  
  .announcement-card:hover {
    transform: translateY(-5px);
  }
  
  .announcement-card h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
  }
  
  .date {
    color: var(--light-blue);
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  /* Contact Form */
  .contact-hd-bg {
    background: linear-gradient(rgba(35, 72, 106, 0.5), rgba(35, 72, 106, 0.5)), url(../images/static/contact-bg.jpg);
    background-size: 1000px;
    background-position: center;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    transition: border-color 0.3s ease;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-accent);
  }

/* Highlights */
.highlights {
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Image Banner */
.image-banner {
    background: linear-gradient(rgba(35,72,106,0.8), rgba(35,72,106,0.8)),
                url('https://media4.giphy.com/media/v1.Y2lkPTc5MGI3NjExdzU0d2g4M2VydjVhcGVmNmk4Ym9uZWV2eG5udmZrbTFqYzBjbTlqOCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/XgMyW9kqaf60urTRA5/giphy.gif') center;
    padding: 5rem 0;
    color: white;
    text-align: center;
    position: relative;
    height: 80vh;
}

.image-banner .container {
    position: relative;
    z-index: 1;
}

.banner-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-accent);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.banner-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Responsive Image Banner */
@media (max-width: 992px) {
    .image-banner {
        padding: 4rem 0;
    }
    
    .banner-content h2 {
        font-size: 2.2rem;
    }
}
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .main-nav .main-child {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--dark-blue);
      padding: 1rem;
      text-align: center;
    }
  
    .main-nav li {
      margin: 0.5rem 0;
    }
  
    .mobile-menu-toggle {
      display: block;
    }
  
    .main-nav.active ul {
      display: block;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .hero h2 {
      font-size: 2rem;
    }

    .image-banner {
        padding: 3rem 0;
    }
    
    .banner-content h2 {
        font-size: 1.8rem;
    }
    
    .banner-content p {
        font-size: 1.2rem;
    }
    .contact-hd-bg {
      background-size: 600px;
    }
  }
  
  @media (max-width: 480px) {
    .container {
      width: 95%;
    }
    
    .logo h1 {
      font-size: 1.5rem;
    }
    
    .hero {
      padding: 4rem 0;
    }
    .image-banner {
        padding: 2rem 0;
        height: 50vh;
    }
    
    .banner-content h2 {
        font-size: 1.5rem;
    }
    
    .banner-content p {
        font-size: 1rem;
    }
    .contact-hd-bg {
      background-size: 500px;
    }

    .cta-container {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .cta-visit {
      margin-left: 0;
    }
    .logo img {
      height: 55px;
    }
  }


  /* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-blue);
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 4px;
    padding: 0.5rem 0;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    color: white;
    padding: 0.8rem 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--primary-accent);
    color: var(--dark-blue);
    padding-left: 2rem;
}

.dropdown > a::after {
    content: '▾';
    margin-left: 0.5rem;
}

/* Mobile Dropdown Styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: rgba(255,255,255,0.1);
        box-shadow: none;
        display: none;
        padding-left: 1.5rem;
    }

    .dropdown-menu a {
        padding: 0.5rem 1rem;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown > a::after {
        content: '▾';
        margin-left: 0.5rem;
    }
}

/* about school */
/* About Page Styles */
.page-hero {
    padding: 8rem 0;
    color: white;
    text-align: center;
}

.about-hd-bg {
  background: linear-gradient(rgba(35, 72, 106, 0.5), rgba(35, 72, 106, 0.5)), url(../images/static/about-bg.jpg);
  background-size: 1000px;
  background-position: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* .section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
} */

.rounded-shadow {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
    margin-top: 1.5rem;
}

.history-timeline {
    background: #f9f9f9;
    padding: 4rem 0;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--primary-accent);
}

.timeline-item {
    display: flex;
    margin: 2rem 0;
    width: 50%;
    position: relative;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 4rem;
    text-align: right;
}

.timeline-item:nth-child(even) {
    left: 63%;
    padding-left: 4rem;
}

.timeline-year {
    background: var(--dark-blue);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    position: absolute;
    top: 0;
}

.timeline-item:nth-child(odd) .timeline-year {
    right: -75px;
}

.timeline-item:nth-child(even) .timeline-year {
    left: -135px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.feature-card .icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faculty-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.faculty-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.faculty-card h3 {
    margin: 1rem 0 0.5rem;
    text-align: center;
}

.faculty-card p {
    text-align: center;
    color: var(--light-blue);
}

.faculty-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(35,72,106,0.9);
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.faculty-card:hover .overlay {
    transform: translateY(0);
}


/* About Page Updates */
.about-content {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.section-divider {
    width: 100px;
    height: 3px;
    background: var(--primary-accent);
    margin: 0 auto 2rem;
}

/* .section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 2rem 0;
} */

.mission-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.mission-list li {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(235, 245, 251, 0.3);
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.mission-list li:hover {
    transform: translateX(10px);
}

.mission-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mission-text h3 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.mission-text p {
    color: var(--secondary-blue);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .section-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .mission-list {
      grid-template-columns: 1fr;
    }
    
    .mission-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .mission-icon {
        margin-bottom: 1rem;
    }
    .about-hd-bg {
      background-size: 600px;
    }
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mission-list li {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 2rem;
    }
    .mission-list {
      grid-template-columns: 1fr;
    }
    
    .mission-list li {
        padding: 1rem;
    }
    .about-hd-bg {
      background-size: 350px;
    }
}

/* Ensure filtered cards are hidden properly */
.faculty-card,
.facility-card {
    display: block;
    transition: all 0.3s ease;
}

.filtered-out {
    transform: scale(0.9);
    opacity: 0;
    height: 0;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

@media (max-width: 992px) {
  .page-hero {
      padding: 5rem 0;
  }
  
  .page-hero h1 {
      font-size: 2.8rem;
  }

  .section-grid {
      gap: 2rem;
      padding: 2rem 0;
  }

  .section-grid .image img {
      max-width: 100%;
      height: auto;
  }

  .timeline-item {
      margin: 1.5rem 0;
  }
}

@media (max-width: 768px) {
  .page-hero {
      padding: 4rem 0;
  }
  
  .page-hero h1 {
      font-size: 2.2rem;
      line-height: 1.3;
  }

  .section-grid {
      grid-template-columns: 1fr;
      text-align: center;
  }

  .history-timeline {
      padding: 2rem 0;
  }

  .timeline::before {
      display: none;
  }

  .timeline-item {
      width: 100% !important;
      padding: 0 !important;
      margin: 1rem 0;
      flex-direction: column;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
      left: 0;
      text-align: center;
  }

  .timeline-year {
      position: static !important;
      margin: 0 auto 1rem;
      display: inline-block;
  }

  .features-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .feature-card {
      padding: 1.5rem;
  }

  .faculty-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .faculty-card img {
      height: 300px;
  }

  .cta-section h2 {
      font-size: 1.8rem;
      text-align: center;
  }
}

@media (max-width: 480px) {
  .page-hero h1 {
      font-size: 1.8rem;
  }

  .page-hero p {
      font-size: 1.1rem;
  }

  .section-grid .content {
      padding: 0 1rem;
  }

  .feature-card .icon {
      width: 60px;
      height: 60px;
      font-size: 1.5rem;
  }

  /* .faculty-card img {
      height: 250px;
  } */

  .cta-section {
      padding: 2rem 0;
  }

  .cta-section h2 {
      font-size: 1.5rem;
  }

  .cta-button {
      padding: 0.8rem 1.5rem;
      font-size: 1rem;
  }
}

/* Additional Mobile Optimizations */
.faculty-card .overlay {
  transform: none;
  position: relative;
  background: var(--dark-blue);
  padding: 1rem;
  color: white;
  transition: none;
}

.faculty-card:hover .overlay {
  transform: none;
}

.faculty-card .overlay {
  display: none;
}

.faculty-card.active .overlay {
  display: block;
}

/* Add touch interaction for faculty cards */
@media (hover: none) {
  .faculty-card {
      cursor: pointer;
  }
  
  .faculty-card .overlay {
      display: none;
      position: static;
      transform: none;
  }
  
  .faculty-card.active .overlay {
      display: block;
  }
}


/* History Page Styles */
.history-hd-bg {
  background: linear-gradient(rgba(35, 72, 106, 0.5), rgba(35, 72, 106, 0.5)), url(../images/static/journey-bg.jpg);
  background-size: 1000px;
  background-position: center;
}
.history-timeline {
  padding: 4rem 0;
  background: #f9f9f9;
}

.decade-navigation {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.decade-btn {
  padding: 0.8rem 2rem;
  border: 2px solid var(--dark-blue);
  background: transparent;
  color: var(--dark-blue);
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.decade-btn.active,
.decade-btn:hover {
  background: var(--dark-blue);
  color: white;
}

.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 30px;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-accent);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 5;
  width: 20px;
  height: 20px;
  background: var(--dark-blue);
  border: 3px solid var(--primary-accent);
  border-radius: 50%;
  z-index: 1;
}

.timeline-year {
  color: var(--primary-accent);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.milestone-card {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.milestone-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.milestone-year {
  color: var(--light-blue);
  font-weight: 700;
  margin: 1rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .decade-navigation {
      flex-wrap: wrap;
  }
  
  .timeline-container {
      padding-left: 20px;
  }
  
  .timeline-item {
      padding-left: 1.5rem;
  }
  
  .timeline-item::before {
      left: -10px;
      width: 16px;
      height: 16px;
  }
  
  .gallery-grid {
      grid-template-columns: 1fr 1fr;
  }
  .history-hd-bg {
      background-size: 550px;
    }
}

@media (max-width: 480px) {
  .decade-btn {
      width: 100%;
      text-align: center;
  }
  
  .timeline-container::before {
      left: -10px;
  }
  
  .gallery-grid {
      grid-template-columns: 1fr;
  }
  
  .gallery-grid img {
      height: 200px;
  }
  .history-hd-bg {
      background-size: 350px;
    }
}


/* faculty and facility */

/* Unified Card Styles */
.faculty-hd-bg {
  background: linear-gradient(rgba(35, 72, 106, 0.5), rgba(35, 72, 106, 0.5)), url(../images/static/faculty-bg.jpg);
  background-size: 1000px;
  background-position: center;
}
.card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.card-image {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Faculty Specific */
.faculty-card .card-content {
  justify-content: space-between;
}

.faculty-meta {
  margin-bottom: 1.5rem;
}

.faculty-meta h3 {
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}

.department {
  color: var(--primary-accent);
  font-weight: 600;
}

.qualification {
  color: var(--light-blue);
  font-size: 0.9rem;
}

.faculty-info {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.faculty-info li {
  padding: 0.3rem 0;
  color: var(--secondary-blue);
}

.cta-link {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background: var(--primary-accent);
  color: var(--dark-blue);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  margin-top: auto;
}

/* Facilities Specific */
.facility-card h3 {
  color: var(--dark-blue);
  margin-bottom: 1rem;
}

.facility-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1rem 0;
}

.spec-item {
  text-align: center;
  padding: 0.8rem;
  background: #f8f9fa;
  border-radius: 8px;
}

.spec-label {
  display: block;
  color: var(--light-blue);
  font-size: 0.9rem;
}

.spec-value {
  display: block;
  color: var(--dark-blue);
  font-weight: 600;
}

.facility-desc {
  color: var(--secondary-blue);
  line-height: 1.6;
}

/* Grid Layout */
.grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Filter Navigation */
.filter-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.filter-btn {
  padding: 0.6rem 1.8rem;
  border: 2px solid var(--dark-blue);
  background: transparent;
  color: var(--dark-blue);
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--dark-blue);
  color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .grid-layout {
      gap: 1.5rem;
  }
  
  .card-image {
      height: 220px;
  }
}

@media (max-width: 768px) {
  .section-header {
      text-align: center;
  }
  
  .filter-nav {
      gap: 0.8rem;
  }
  
  .filter-btn {
      padding: 0.5rem 1.2rem;
      font-size: 0.9rem;
  }
  .faculty-hd-bg {
      background-size: 600px;
  }
}

@media (max-width: 480px) {
  .grid-layout {
      grid-template-columns: 1fr;
  }
  
  .card-image {
      height: 200px;
  }
  
  .card-content {
      padding: 1.2rem;
  }
  
  .facility-specs {
      grid-template-columns: 1fr;
  }
  .faculty-hd-bg {
      background-size: 350px;
  }
}



/* Admission Process Styles */
/* Admissions Page Styles */

.admission-hd-bg {
  background: linear-gradient(rgba(35, 72, 106, 0.5), rgba(35, 72, 106, 0.5)), url(../images/static/addmision-bg.jpg);
  background-size: 1000px;
  background-position: center;
}
.admission-process {
  padding: 4rem 0;
  background: #f9f9f9;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.process-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--primary-accent);
  color: var(--dark-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-duration {
  color: var(--light-blue);
  font-weight: 600;
  margin-top: 1rem;
}

.fee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.fee-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  border: 2px solid var(--light-blue);
}

.fee-amount {
  color: var(--dark-blue);
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 6px;
  background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-steps {
      grid-template-columns: 1fr;
  }
  
  .fee-card {
      padding: 1.5rem;
  }
  
  .fee-amount {
      font-size: 1.5rem;
  }
  .admission-hd-bg {
    background-size: 600px;
  }
}

@media (max-width: 480px) {
  .process-card {
      padding: 1.5rem;
  }
  
  .form-group {
      margin-bottom: 1rem;
  }

  .admission-hd-bg {
    background-size: 350px;
  }
}



/* Fee Structure Page Styles */
.fee-breakdown {
  padding: 4rem 0;
}

.fee-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.fee-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
}

.fee-header {
  padding: 2rem;
  color: white;
  text-align: center;
}

.fee-amount {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1rem;
}

.fee-details {
  padding: 1.5rem;
  list-style: none;
}

.fee-details li {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.fee-details li:last-child {
  border-bottom: none;
}

.table-container {
  overflow-x: auto;
  margin: 2rem 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background: var(--dark-blue);
  color: white;
}

tr:hover {
  background-color: #f9f9f9;
}

.fee-calculator {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
}

.calculator-form {
  max-width: 500px;
  margin: 0 auto;
}

.calculation-result {
  text-align: center;
  margin-top: 2rem;
}

.total-fee {
  font-size: 1.5rem;
  color: var(--dark-blue);
  font-weight: 600;
}

#totalAmount {
  color: var(--primary-accent);
  font-size: 2rem;
}

.download-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.download-card {
  display: flex;
  align-items: center;
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: var(--dark-blue);
  transition: transform 0.3s ease;
}

.download-card:hover {
  transform: translateY(-3px);
}

.doc-icon {
  font-size: 2rem;
  margin-right: 1.5rem;
}

.doc-info h3 {
  margin-bottom: 0.5rem;
}

.doc-info p {
  color: var(--light-blue);
  font-size: 0.9rem;
}

.download-btn,.popup-download-btn {
  margin-left: auto;
  background: var(--primary-accent);
  color: var(--dark-blue);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .fee-header {
      padding: 1.5rem;
  }
  
  .fee-amount {
      font-size: 1.5rem;
  }
  
  table {
      font-size: 0.9rem;
  }
  
  .total-fee {
      font-size: 1.2rem;
  }
  
  #totalAmount {
      font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .fee-details li {
      flex-direction: column;
  }
  
  .download-card {
      flex-direction: column;
      text-align: center;
  }
  
  .doc-icon {
      margin: 0 0 1rem 0;
  }
  
  .download-btn,.popup-download-btn {
      margin: 1rem 0 0 0;
  }
}


/* Scholarships Page Styles */
.scholarship-hd-bg {
  background: linear-gradient(rgba(35, 72, 106, 0.5), rgba(35, 72, 106, 0.5)), url(../images/static/scholarship-bg.jpg);
  background-size: 1000px;
  background-position: center;
}
.scholarship-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.scholarship-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.scholarship-header {
  padding: 1.5rem;
  color: var(--dark-blue);
  text-align: center;
}

.scholarship-amount {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 0.5rem;
}

.scholarship-details {
  padding: 1.5rem;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  margin: 1rem 0;
  padding: 0.8rem 0;
  border-bottom: 1px solid #eee;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
}

.eligibility-calculator {
  background: #f9f9f9;
  padding: 2rem 0;
}

.calculator-form {
  max-width: 600px;
  margin: 0 auto;
}

.result-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  text-align: center;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin: 1rem 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-question {
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.5rem;
  color: var(--secondary-blue);
}

.faq-answer.active {
  display: block;
}

.toggle-icon {
  font-size: 1.5rem;
  color: var(--primary-accent);
}

/* Responsive Design */
@media (max-width: 768px) {
  .scholarship-header {
      padding: 1rem;
  }
  
  .process-steps {
      grid-template-columns: 1fr;
  }
  
  .faq-question h3 {
      font-size: 1.1rem;
  }
  .scholarship-hd-bg {
    background-size: 600px;
  }
}

@media (max-width: 480px) {
  .detail-item {
      flex-direction: column;
      gap: 0.5rem;
  }
  
  .calculator-form {
      padding: 0 1rem;
  }
  
  .result-box {
      padding: 1rem;
  }
  .scholarship-hd-bg {
    background-size: 350px;
  }
}

/* Downloads Page Styles */
.download-hd-bg {
  background: linear-gradient(rgba(35, 72, 106, 0.5), rgba(35, 72, 106, 0.5)), url(../images/static/download-bg.jpg);
  background-size: 1000px;
  background-position: center;
}

.downloads-section {
  padding: 4rem 0;
}

.downloads-filter {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}

.download-card {
  display: flex;
  align-items: center;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.doc-icon {
  font-size: 2rem;
  margin-right: 1.5rem;
  width: 50px;
  text-align: center;
}

.doc-info {
  flex: 1;
}

.file-details {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  color: var(--light-blue);
  font-size: 0.9rem;
}

.file-type {
  text-transform: uppercase;
}

.download-btn,.popup-download-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--primary-accent);
  color: var(--dark-blue);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.download-btn svg,.popup-download-btn svg {
  fill: var(--dark-blue);
  width: 18px;
  height: 18px;
}

.download-btn:hover,.popup-download-btn:hover {
  background: #f0c468;
}

/* Responsive Design */
@media (max-width: 768px) {
  .downloads-grid {
      grid-template-columns: 1fr;
  }
  
  .download-card {
      padding: 1rem;
  }
  
  .doc-icon {
      margin-right: 1rem;
      font-size: 1.8rem;
  }
  .download-hd-bg {
    background-size: 600px;
  }
}

@media (max-width: 480px) {
  .downloads-filter {
      gap: 0.5rem;
  }
  
  .filter-btn {
      padding: 0.5rem 1rem;
  }
  
  .download-btn,.popup-download-btn {
      padding: 0.6rem 1rem;
      font-size: 0.9rem;
  }
  
  .file-details {
      flex-direction: column;
      gap: 0.2rem;
  }
  .download-hd-bg {
    background-size: 350px;
  }
}

/* Contact Page Styles */
.contact-section {
  padding: 4rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.info-card {
  display: flex;
  align-items: center;
  background: white;
  padding: 7px 11px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.info-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--dark-blue);
}

.info-content h3 {
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
}
.school-map-section img {
  width: 800px;
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-blue);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.map-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
  }
  
  .contact-info {
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .info-card {
      padding: 1.5rem;
  }
  
  .contact-form {
      padding: 1.5rem;
  }
  
  .map-container {
      height: 300px;
  }
  .school-map-section img {
    width: 480px;
  }
}

@media (max-width: 480px) {
  .info-card {
      flex-direction: column;
      text-align: center;
  }
  
  .info-icon {
      margin: 0 0 1rem 0;
  }
  
  .form-group input,
  .form-group textarea {
      font-size: 0.9rem;
  }
  
  .school-map-section img {
    width: 350px;
  }
}

/* Courses Page Styles */
.course-hd-bg {
  background: linear-gradient(rgba(35, 72, 106, 0.5), rgba(35, 72, 106, 0.5)), url(../images/static/course-bg.jpg);
  background-size: 1000px;
  background-position: center;
}
.courses-section {
  padding: 4rem 0;
}

.course-filter {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.course-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

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

.course-header {
  padding: 1.5rem;
  color: var(--dark-blue);
  text-align: center;
}

.course-duration {
  font-size: 1.1rem;
  margin-top: 0.5rem;
  color: var(--dark-blue);
  font-weight: 600;
}

.course-body {
  padding: 1.5rem;
}

.course-features {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.course-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.course-features li:last-child {
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .courses-grid {
      grid-template-columns: 1fr 1fr;
  }
  
  .course-header {
      padding: 1rem;
  }
  .course-hd-bg {
    background-size: 600px;
  }
}

@media (max-width: 480px) {
  .courses-grid {
      grid-template-columns: 1fr;
  }
  
  .course-filter {
      gap: 0.5rem;
  }
  
  .filter-btn {
      padding: 0.5rem 1rem;
  }
  .course-hd-bg {
    background-size: 350px;
  }
}

/* Course Detail Page Styles */
.course-main {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  margin-bottom: 3rem;
}

.course-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.highlight-card {
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  text-align: center;
}

.highlight-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.course-sidebar {
  position: relative;
}

.course-quick-facts {
  position: sticky;
  top: 2rem;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.facts-list li {
  margin: 1rem 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eee;
}

.timeline {
  position: relative;
  padding-left: 30px;
  margin: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--primary-accent);
}

.timeline-phase {
  position: relative;
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.phase-marker {
  position: absolute;
  left: -8px;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--secondary-blue);
  border-radius: 50%;
  border: 3px solid white;
}

.instructors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.instructor-card {
  text-align: center;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
}

.instructor-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

/* Enrollment Modal */
.enrollment-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
}

.modal-content {
  background: white;
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
}

.close-modal {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 2rem;
  cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .course-main {
      grid-template-columns: 1fr;
  }
  
  .course-sidebar {
      order: -1;
  }
}

@media (max-width: 768px) {
  .timeline {
      padding-left: 20px;
  }
  
  .instructor-card img {
      height: 180px;
  }
}

@media (max-width: 480px) {
  .course-highlights {
      grid-template-columns: 1fr;
  }
  
  .modal-content {
      margin: 1rem;
      padding: 1.5rem;
  }
}

/* Login Page Styles */
.login-section {
  padding: 4rem 0;
}

.login-card {
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.login-card .form-group {
  margin-bottom: 1.5rem;
}

.login-card label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--dark-blue);
  font-weight: 500;
}

.login-card input,
.login-card select {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.form-links {
  margin-top: 1.5rem;
  text-align: center;
}

.form-links a {
  color: var(--secondary-blue);
  text-decoration: none;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .login-card {
      padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .login-card {
      padding: 1rem;
  }
}

.features, .mission-section,.faculty {
  margin-top: 2rem;
}



/* Alumni Page Styles */
.alumni-section {
    padding: 4rem 0;
}

.alumni-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.alumni-intro h2 {
    color: var(--dark-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.alumni-intro h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--primary-accent);
    margin: 0.5rem auto;
}

.alumni-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.6rem 1.8rem;
    border: 2px solid var(--dark-blue);
    background: transparent;
    color: var(--dark-blue);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--dark-blue);
    color: white;
}

.alumni-stats {
    display: flex;
    justify-content: space-around;
    background: rgba(35,72,106,0.05);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 12px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--dark-blue);
    font-weight: 500;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.alumni-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.alumni-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.alumni-img {
    height: 250px;
    overflow: hidden;
}

.alumni-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.alumni-card:hover .alumni-img img {
    transform: scale(1.05);
}

.alumni-info {
    padding: 1.5rem;
}

.alumni-name {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.alumni-graduation {
    color: var(--light-blue);
    margin-bottom: 1rem;
    font-weight: 500;
}

.alumni-desc {
    color: var(--secondary-blue);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.alumni-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-accent);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .alumni-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .alumni-stats {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .alumni-grid {
        grid-template-columns: 1fr;
    }
    
    .alumni-img {
        height: 220px;
    }
}





.header-link-bar {
  background: linear-gradient(90deg, #ff416c, #ff4b2b); /* pink to orange gradient */
  padding: 14px 20px;
  text-align: center;
  border-radius: 0 0 8px 8px; /* rounded bottom corners */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  animation: gradientMove 5s ease infinite; /* animated gradient */
}

.header-link-bar a {
  color: white;
  font-weight: bold;
  font-size: clamp(16px, 2.5vw, 20px); /* responsive font */
  text-decoration: none;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.header-link-bar a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}


.footer-social {
  display: flex;
  gap: 15px;
  padding: 15px 0;
}

.footer-social a {
  color: white; /* Change if your footer background is light */
  font-size: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}


/* 404 Page Container */
.error-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f8f9fa;
    text-align: center;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Error Code (404) */
.error-code {
    font-size: 120px;
    font-weight: bold;
    color: #ff4b5c;
    margin-bottom: 10px;
}

/* Error Message */
.error-message {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

/* Back to Home Link/Button */
.error-link {
    display: inline-block;
    padding: 12px 24px;
    font-size: 16px;
    color: #fff;
    background-color: #007bff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.error-link:hover {
    background-color: #0056b3;
}


/* Modern Leadership Message Page CSS */

.leadership-hero-modern {
    background: linear-gradient(90deg, var(--secondary-blue, #2a6ecf) 60%, var(--primary-accent, #e67e22) 100%);
    color: #fff;
    padding: 3.5rem 0 2.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.leadership-hero-modern .icon-star {
    font-size: 2.2rem;
    vertical-align: middle;
    margin-right: 0.5rem;
    color: var(--primary-accent, #e67e22);
    filter: drop-shadow(0 2px 8px rgba(230,126,34,0.25));
}
.leadership-hero-modern h1 {
    font-size: 2.7rem;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(42,110,207,0.10);
}
.leadership-hero-modern p {
    font-size: 1.25rem;
    opacity: 0.97;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.leadership-message-modern {
    background: #f8fafc;
    padding: 4rem 0 2.5rem 0;
}

.leader-modern-card {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 2rem;
    box-shadow: 0 8px 32px rgba(42,110,207,0.10), 0 2px 8px rgba(230,126,34,0.08);
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 480px;
    position: relative;
    transition: box-shadow 0.2s;
}
.leader-modern-card:hover {
    box-shadow: 0 12px 40px rgba(42,110,207,0.16), 0 4px 16px rgba(230,126,34,0.13);
}

.leader-modern-img-wrap {
    flex: 0 0 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eaf1fa 60%, #fbeee6 100%);
    min-height: 480px;
    overflow: visible;
}
.leader-modern-img-wrap img {
    width: 340px;
    height: 420px;
    object-fit: cover;
    border-radius: 1.5rem;
    border: 7px solid #fff;
    box-shadow: 0 8px 32px rgba(42,110,207,0.13), 0 2px 8px rgba(230,126,34,0.10);
    position: relative;
    z-index: 2;
    background: #fff;
    transition: transform 0.2s;
}
.leader-modern-img-wrap img:hover {
    transform: scale(1.025);
}
.img-bg-shape {
    position: absolute;
    top: 30px;
    left: 30px;
    width: 320px;
    height: 400px;
    border-radius: 1.5rem;
    background: linear-gradient(120deg, var(--secondary-blue, #2a6ecf) 30%, var(--primary-accent, #e67e22) 100%);
    opacity: 0.13;
    z-index: 1;
    filter: blur(2px);
}

.leader-modern-info {
    flex: 1;
    padding: 3rem 3.5rem 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.leader-modern-info h2 {
    margin: 0 0 0.3rem 0;
    color: var(--secondary-blue, #2a6ecf);
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.leader-role {
    color: var(--primary-accent, #e67e22);
    font-size: 1.18rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 0.2px;
}
.leader-divider {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--secondary-blue, #2a6ecf), var(--primary-accent, #e67e22));
    border-radius: 2.5px;
    margin: 0.5rem 0 1.5rem 0;
}
.leader-modern-info blockquote {
    font-size: 1.22rem;
    color: #444;
    background: #f6f8fa;
    border-left: 7px solid var(--secondary-blue, #2a6ecf);
    padding: 1.7rem 1.5rem 1.7rem 2.2rem;
    border-radius: 0.9rem;
    margin: 0;
    font-style: italic;
    line-height: 1.85;
    position: relative;
    box-shadow: 0 2px 12px rgba(42,110,207,0.04);
    transition: background 0.2s;
}
.leader-modern-info blockquote:hover {
    background: #f1f6fb;
}
.leader-sign {
    display: block;
    margin-top: 1.7rem;
    color: #888;
    font-size: 1.08rem;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .leader-modern-card {
        max-width: 98vw;
    }
    .leader-modern-img-wrap {
        flex: 0 0 320px;
        min-height: 350px;
    }
    .leader-modern-img-wrap img {
        width: 220px;
        height: 300px;
    }
    .img-bg-shape {
        width: 200px;
        height: 270px;
        top: 20px;
        left: 20px;
    }
    .leader-modern-info {
        padding: 2rem 1.5rem 2rem 1.5rem;
    }
    .leader-modern-info h2 {
        font-size: 1.5rem;
    }
}
@media (max-width: 900px) {
    .leader-modern-card {
        flex-direction: column;
        min-height: unset;
        border-radius: 1.2rem;
    }
    .leader-modern-img-wrap {
        width: 100%;
        min-height: 220px;
        padding: 2rem 0 1rem 0;
        justify-content: center;
    }
    .leader-modern-img-wrap img {
        width: 180px;
        height: 220px;
        border-radius: 1rem;
    }
    .img-bg-shape {
        width: 150px;
        height: 180px;
        top: 10px;
        left: 10px;
    }
    .leader-modern-info {
        padding: 1.5rem 1rem 1.5rem 1rem;
        text-align: center;
    }
    .leader-divider {
        margin-left: auto;
        margin-right: auto;
    }
}
@media (max-width: 600px) {
    .leadership-hero-modern {
        padding: 1.5rem 0 1rem 0;
    }
    .leadership-hero-modern h1 {
        font-size: 1.3rem;
    }
    .leader-modern-img-wrap img {
        width: 110px;
        height: 140px;
    }
    .img-bg-shape {
        width: 80px;
        height: 100px;
        top: 5px;
        left: 5px;
    }
    .leader-modern-info h2 {
        font-size: 1.1rem;
    }
    .leader-modern-info blockquote {
        font-size: 0.98rem;
        padding: 1rem 0.5rem 1rem 1rem;
    }
}

.leader-link {
    display: block;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    font-size: 15px;
    color: blue;
}



/* Notes css */

.notes-section {
            padding: 4rem 1.5rem;
            min-height: 100vh;
        }

        .notes-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-header h1 {
            font-size: 2.8rem;
            color: var(--dark-blue);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            font-weight: 800;
        }

        .section-header h1:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary-accent);
            border-radius: 2px;
        }

        .section-header p {
            color: var(--light-blue);
            font-size: 1.2rem;
            max-width: 700px;
            margin: 1.5rem auto 0;
            line-height: 1.6;
        }

        .notes-controls {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            background: var(--white);
            padding: 1.2rem 1.8rem;
            border-radius: 16px;
            box-shadow: var(--card-shadow);
        }

        .search-box {
            flex: 1;
            min-width: 280px;
            position: relative;
        }

        .search-box input {
            width: 100%;
            padding: 14px 20px 14px 50px;
            border-radius: 50px;
            border: 2px solid #e1e8f0;
            font-size: 1.05rem;
            color: var(--dark-blue);
            transition: all 0.3s ease;
        }

        .search-box input:focus {
            outline: none;
            border-color: var(--primary-accent);
            box-shadow: 0 0 0 4px rgba(239, 176, 54, 0.2);
        }

        .search-box i {
            position: absolute;
            left: 22px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--light-blue);
            font-size: 1.2rem;
        }

        .filter-options {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 20px;
            background: var(--white);
            border: 2px solid #e1e8f0;
            border-radius: 50px;
            color: var(--light-blue);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .filter-btn:hover, .filter-btn.active {
            background: var(--secondary-blue);
            color: var(--white);
            border-color: var(--secondary-blue);
        }

        .notes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
            gap: 2rem;
        }

        .note-card {
            background: var(--white);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--card-shadow);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .note-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .card-header {
            padding: 1.8rem 1.8rem 1.2rem;
            position: relative;
        }

        .file-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin-bottom: 1.5rem;
        }

        .pdf-icon {
            background: rgba(234, 67, 53, 0.15);
            color: #EA4335;
        }

        .docx-icon {
            background: rgba(66, 133, 244, 0.15);
            color: #4285F4;
        }

        .image-icon {
            background: rgba(52, 168, 83, 0.15);
            color: #34A853;
        }

        .card-header h3 {
            font-size: 1.4rem;
            color: var(--dark-blue);
            margin-bottom: 0.8rem;
            line-height: 1.4;
        }

        .meta-info {
            display: flex;
            align-items: center;
            color: var(--light-blue);
            font-size: 0.95rem;
            gap: 15px;
            margin-top: 5px;
            flex-wrap: wrap;
        }

        .meta-info span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .card-body {
            padding: 0 1.8rem 1.5rem;
            flex-grow: 1;
        }

        .card-body p {
            color: #5a6b7c;
            line-height: 1.7;
            font-size: 1.05rem;
        }

        .card-footer {
            padding: 1.5rem 1.8rem;
            background: #f8fafd;
            border-top: 1px solid #edf2f7;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .file-size {
            color: var(--light-blue);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .download-btn {
            background: var(--primary-accent);
            color: var(--dark-blue);
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(239, 176, 54, 0.3);
        }

        .download-btn:hover {
            background: #e0a028;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(239, 176, 54, 0.4);
        }

        .empty-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 4rem 2rem;
        }

        .empty-state i {
            font-size: 5rem;
            color: #cbd5e0;
            margin-bottom: 1.5rem;
        }

        .empty-state h3 {
            color: var(--dark-blue);
            font-size: 1.8rem;
            margin-bottom: 1rem;
        }

        .empty-state p {
            color: var(--light-blue);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .loader {
            grid-column: 1 / -1;
            text-align: center;
            padding: 3rem;
            color: var(--light-blue);
            font-size: 1.2rem;
        }

        .loader i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-accent);
            animation: spin 1.5s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .header-decoration {
            position: absolute;
            top: -30px;
            left: 0;
            width: 100%;
            height: 80px;
            background: var(--secondary-blue);
            border-radius: 0 0 50% 50%;
            opacity: 0.1;
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .notes-grid {
                grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .section-header h1 {
                font-size: 2.3rem;
            }
            
            .notes-controls {
                flex-direction: column;
                align-items: stretch;
            }
            
            .filter-options {
                justify-content: center;
            }
            
            .notes-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }
        }

        @media (max-width: 480px) {
            .section-header h1 {
                font-size: 2rem;
            }
            
            .section-header p {
                font-size: 1rem;
            }
            
            .card-header {
                padding: 1.5rem 1.5rem 1rem;
            }
            
            .file-icon {
                width: 60px;
                height: 60px;
                font-size: 1.7rem;
            }
            
            .card-header h3 {
                font-size: 1.3rem;
            }
            
            .download-btn {
                padding: 8px 20px;
            }
            
            .meta-info {
                gap: 10px;
                font-size: 0.85rem;
            }
        }

        
 /* Multi popup css */

 .lss-notice-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: none;
    z-index: 9999;
    padding: 14px;
}

.lss-notice-container{
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* popup card */

.lss-notice-popup{
    display: none;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
    animation: lss-notice-fadeScale .35s ease;
}

.lss-notice-popup.lss-notice-active{
    display: block;
}

.lss-notice-popup img{
    width: 100%;
    height: auto;
    display: block;
}

/* close button */

.lss-notice-close{
    position: absolute;
    top: 10px;
    right: 12px;
    width: 34px;
    height: 34px;
    background: rgba(0,0,0,.6);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 34px;
    font-size: 22px;
    cursor: pointer;
    z-index: 5;
}

/* animation */

@keyframes lss-notice-fadeScale{
    from{
        opacity: 0;
        transform: scale(.9);
    }
    to{
        opacity: 1;
        transform: scale(1);
    }
}

/* tablet */

@media (max-width: 991px){

    .lss-notice-popup{
        max-width: 640px;
    }

}

/* mobile */

@media (max-width: 576px){

    .lss-notice-popup{
        max-width: 100%;
        border-radius: 10px;
    }

    .lss-notice-close{
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 20px;
    }

}

@media (max-height: 600px){

    .lss-notice-container{
        align-items: flex-start;
        padding-top: 12px;
    }

}


 /* Multi popup css ends */       