/* Dance Program Styles */
:root {
    --dance-primary: #ec4899;
    --dance-secondary: #f472b6;
    --dance-accent: #fb7185;
    --dance-light: #fce7f3;
    --dance-dark: #be185d;
  }
  
  /* Page Header */
  .page-header {
    background: linear-gradient(135deg, var(--dance-primary) 0%, var(--dance-secondary) 50%, var(--dance-accent) 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
  }
  
  .page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dance-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dance-pattern)"/></svg>');
    opacity: 0.3;
  }
  
  .page-header .container {
    position: relative;
    z-index: 2;
  }
  
  .breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 20px;
  }
  
  .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
  }
  
  .breadcrumb-item.active {
    color: white;
  }
  
  .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
  }
  
  /* Section Titles */
  .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    position: relative;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--dance-primary), var(--dance-secondary));
    border-radius: 2px;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 40px;
  }
  
  /* Dance Overview */
  .dance-overview {
    padding: 80px 0;
  }
  
  .highlight-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
  }
  
  .highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.2);
    border-color: var(--dance-light);
  }
  
  .highlight-card i {
    font-size: 2.5rem;
    color: var(--dance-primary);
    margin-bottom: 15px;
    display: block;
  }
  
  .highlight-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
  }
  
  .highlight-card p {
    color: #718096;
    margin: 0;
    font-size: 0.95rem;
  }
  
  /* Program Cards */
  .program-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .program-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--dance-primary), var(--dance-secondary), var(--dance-accent));
  }
  
  .program-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(236, 72, 153, 0.2);
    border-color: var(--dance-light);
  }
  
  .program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--dance-primary), var(--dance-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
  }
  
  .program-card:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
  }
  
  .program-icon i {
    font-size: 2rem;
    color: white;
  }
  
  .program-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 10px;
  }
  
  .program-level {
    color: var(--dance-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .program-card p {
    color: #718096;
    margin-bottom: 25px;
    line-height: 1.6;
  }
  
  .program-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
  }
  
  .program-features li {
    padding: 8px 0;
    color: #4a5568;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
  }
  
  .program-features i {
    color: var(--dance-primary);
    margin-right: 10px;
    font-size: 0.8rem;
  }
  
  .program-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    font-size: 0.9rem;
    color: #718096;
  }
  
  .program-meta span {
    display: flex;
    align-items: center;
  }
  
  .program-meta i {
    margin-right: 5px;
    color: var(--dance-primary);
  }
  
  /* Facility Cards */
  .facility-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
  }
  
  .facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(236, 72, 153, 0.15);
    border-color: var(--dance-light);
  }
  
  .facility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--dance-light), rgba(236, 72, 153, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .facility-icon i {
    font-size: 1.8rem;
    color: var(--dance-primary);
  }
  
  .facility-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
  }
  
  .facility-card p {
    color: #718096;
    margin: 0;
    line-height: 1.6;
  }
  
  /* Faculty Cards */
  .faculty-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
  }
  
  .faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(236, 72, 153, 0.2);
    border-color: var(--dance-light);
  }
  
  .faculty-image {
    height: 250px;
    overflow: hidden;
    position: relative;
  }
  
  .faculty-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
  }
  
  .faculty-card:hover .faculty-image img {
    transform: scale(1.05);
  }
  
  .faculty-info {
    padding: 30px 25px;
    text-align: center;
  }
  
  .faculty-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 8px;
  }
  
  .faculty-designation {
    color: var(--dance-primary);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .faculty-specialization {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 15px;
    font-style: italic;
  }
  
  .faculty-info p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 15px;
  }
  
  .faculty-achievements {
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
  }
  
  .faculty-achievements small {
    color: #718096;
    display: flex;
    align-items: center;
  }
  
  .faculty-achievements i {
    color: var(--dance-primary);
    margin-right: 8px;
  }
  
  /* Achievement Cards */
  .achievement-card {
    background: linear-gradient(135deg, var(--dance-primary), var(--dance-secondary));
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .achievement-card:hover {
    transform: translateY(-10px) scale(1.02);
  }
  
  .achievement-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
  }
  
  .achievement-icon i {
    font-size: 2rem;
    color: white;
  }
  
  .achievement-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .achievement-card p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
  }
  
  /* Event Cards */
  .event-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.1);
    transition: all 0.4s ease;
    height: 100%;
    border: 2px solid transparent;
  }
  
  .event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(236, 72, 153, 0.2);
    border-color: var(--dance-light);
  }
  
  .event-image {
    height: 200px;
    overflow: hidden;
    position: relative;
  }
  
  .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .event-card:hover .event-image img {
    transform: scale(1.05);
  }
  
  .event-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--dance-primary);
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
  }
  
  .event-content {
    padding: 25px;
  }
  
  .event-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
  }
  
  .event-content p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .event-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #718096;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
  }
  
  .event-meta span {
    display: flex;
    align-items: center;
  }
  
  .event-meta i {
    margin-right: 5px;
    color: var(--dance-primary);
  }
  
  /* Enrollment Section */
  .enrollment-section {
    background: linear-gradient(135deg, var(--dance-light) 0%, rgba(236, 72, 153, 0.1) 100%);
    padding: 80px 0;
  }
  
  .enrollment-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .enrollment-feature i {
    font-size: 1.5rem;
    color: var(--dance-primary);
    margin-right: 15px;
    margin-top: 5px;
  }
  
  .enrollment-feature h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 5px;
  }
  
  .enrollment-feature p {
    color: #718096;
    margin: 0;
    font-size: 0.95rem;
  }
  
  .enrollment-cta {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(236, 72, 153, 0.1);
    border: 2px solid var(--dance-light);
  }
  
  .enrollment-cta h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
  }
  
  .enrollment-cta p {
    color: #718096;
    margin-bottom: 25px;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, var(--dance-primary), var(--dance-secondary));
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
    background: linear-gradient(135deg, var(--dance-dark), var(--dance-primary));
  }
  
  .contact-info {
    /*margin-top: 20px;*/
  }
  
  .contact-info p {
    margin-bottom: 8px;
    color: #4a5568;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .contact-info i {
    margin-right: 8px;
    color: var(--dance-primary);
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .page-title {
      font-size: 2.5rem;
    }
  
    .page-subtitle {
      font-size: 1.1rem;
    }
  
    .section-title {
      font-size: 2rem;
    }
  
    .program-card,
    .facility-card,
    .faculty-card {
      margin-bottom: 30px;
    }
  
    .program-meta {
      flex-direction: column;
      gap: 10px;
    }
  
    .event-meta {
      flex-direction: column;
      gap: 10px;
    }
  
    .enrollment-feature {
      text-align: center;
      flex-direction: column;
      align-items: center;
    }
  
    .enrollment-feature i {
      margin-right: 0;
      margin-bottom: 10px;
    }
  }
  
  @media (max-width: 576px) {
    .page-header {
      padding: 60px 0 40px;
    }
  
    .page-title {
      font-size: 2rem;
    }
  
    .highlight-card,
    .program-card,
    .facility-card {
      padding: 25px 20px;
    }
  
    .achievement-card h3 {
      font-size: 2rem;
    }
  
    .enrollment-cta {
      padding: 30px 20px;
    }
  }
  
  /* Animation Classes */
  .fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Loading Animation */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  .program-icon:hover {
    animation: pulse 0.6s ease-in-out;
  }
  