/* Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .slider-container {
    position: relative;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  .slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  /* Responsive Background Images */
  .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  .slide-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
  }
  
  /* Desktop Background */
  .slide-bg-desktop {
    display: block;
  }
  
  /* Mobile Background */
  .slide-bg-mobile {
    display: none;
  }
  
  /* Show mobile background on small screens */
  @media (max-width: 768px) {
    .slide-bg-desktop {
      display: none;
    }
  
    .slide-bg-mobile {
      display: block;
    }
  }
  
  .slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    max-width: 50rem;
    color: var(--white);
    z-index: 2;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 1s ease, opacity 1s ease;
  }
  
  .slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
  }
  
  .slide-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
  }
  
  .slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .slide-content .button {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .slider-nav:hover {
    background-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
  }
  
  .slider-nav.prev {
    left: 2rem;
  }
  
  .slider-nav.next {
    right: 2rem;
  }
  
  .slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    z-index: 10;
  }
  
  .indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .indicator.active {
    width: 2.5rem;
    border-radius: 1rem;
    background-color: var(--primary-color);
  }
  
  .indicator:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
  }
  
    .slide-actions .button {
        color: #fff;
        border: 1px solid #fff;
    }

  
  /* Responsive adjustments for hero slider */
  @media (max-width: 768px) {
    .hero-slider {
      height: 60vh;
    }
  
    .slide-content {
      left: 5%;
      right: 5%;
      bottom: 15%;
      max-width: none;
      text-align: center; /* Center align content on mobile */
    }
  
    .slide-content h1 {
      font-size: 2rem; /* Reduced from 2.5rem */
      margin-bottom: 0.75rem;
    }
  
    .slide-content p {
      font-size: 1rem; /* Reduced from 1.2rem */
      margin-bottom: 1.5rem;
    }
  
    .slider-nav {
      width: 3rem;
      height: 3rem;
    }
  
    .slider-nav.prev {
      left: 1rem;
    }
  
    .slider-nav.next {
      right: 1rem;
    }
  
    .slide-actions {
      flex-direction: column;
      align-items: center; /* Center align buttons */
      gap: 0.75rem;
    }
  
    .slide-actions .button {
      width: 100%;
      max-width: 200px;
      color: #fff;
        border: 1px solid #fff;
    }
  }
  
  /* Welcome Section */
  .welcome-section {
    background-color: var(--white);
    padding: 5rem 1.5rem;
  }
  
  .welcome-section h2 {
    margin-bottom: 2rem;
  }
  
  .welcome-section .image-container {
    height: 100%;
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .welcome-section .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Video Section */
  .video-section {
    background-color: var(--light-bg);
    padding: 5rem 1.5rem;
  }
  
  .video-container {
    position: relative;
    height: 0;
    padding-bottom: 74.25%; /* 16:9 aspect ratio */
    background-color: var(--gray-900);
    border-radius: 0.375rem;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  }
  
  .video-container img,
  .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Ensure video stays within container */
  .video-container video {
    max-width: 100%;
    max-height: 100%;
    object-position: center;
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5rem;
    height: 5rem;
    background-color: var(--primary-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }
  
  .play-button svg {
    color: var(--white);
    margin-left: 0.25rem;
    width: 2rem;
    height: 2rem;
  }
  
  .play-button:hover {
    background-color: var(--primary-dark);
    transform: translate(-50%, -50%) scale(1.1);
  }
  
  /* Classroom Section */
  .classroom-section {
    background-color: var(--white);
    padding: 5rem 1.5rem;
  }
  
  /* Outside Classroom Section */
  .outside-classroom-section {
    background-color: var(--light-bg);
    padding: 5rem 1.5rem;
  }
  
  .outside-classroom-section .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .outside-classroom-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
  }
  
  .outside-classroom-section .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .outside-classroom-section .card-content p {
    flex: 1;
    margin-bottom: 1.5rem;
  }
  
  .outside-classroom-section .link-with-arrow {
    margin-top: auto;
  }
  
  /* Facilities Section */
  .facilities-section {
    background-color: var(--light-bg);
    padding: 5rem 1.5rem;
  }
  
  .facilities-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }
  
  @media (min-width: 640px) {
    .facilities-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (min-width: 1024px) {
    .facilities-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .facility-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.375rem;
    text-align: center;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .facility-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
  }
  
  /*.facility-image {*/
  /*  width: 120px;*/
  /*  height: 120px;*/
  /*  border-radius: 50%;*/
  /*  overflow: hidden;*/
  /*  margin: 0 auto 1.5rem;*/
  /*  border: 3px solid var(--primary-color);*/
  /*  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);*/
  /*}*/
  
  /*.facility-image img {*/
  /*  width: 100%;*/
  /*  height: 100%;*/
  /*  object-fit: cover;*/
  /*}*/
  
  .facility-image {
    width: 100%;
    height: 200px; /* Adjust height as needed */
    overflow: hidden;
    margin: 0 auto 1.5rem;
    /* border-radius: 50%; */ /* Removed for square/rectangle */
    /* border: 3px solid var(--primary-color); */ /* Optional: remove if not needed */
    /* box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1); */ /* Optional */
  }
  
  .facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .facility-item h3 {
    margin-bottom: 1rem;
    color: var(--accent-color);
  }
  
  .facility-item p {
    color: var(--gray-700);
    margin-bottom: 0;
  }
  
  /* News and Events Section */
  .news-events-section {
    background-color: var(--white);
    padding: 5rem 1.5rem;
  }
  
  .news-events-section .three-column {
    margin-bottom: 3rem;
  }
  
  .news-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
  }
  
  .news-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  .news-card .card-content p:not(.date) {
    flex: 1;
    margin-bottom: 1.5rem;
  }
  
  .news-card .link-with-arrow {
    margin-top: auto;
  }
  
  /* Calendar Section */
  /*.calendar-section {*/
  /*  background-color: var(--light-bg);*/
  /*  padding: 5rem 1.5rem;*/
  /*}*/ 
  
 .calendar-section {
  background: url('../images/home-gallery.jpg') no-repeat center center;
  background-size: cover;
  background-attachment: fixed; /* Optional for a parallax effect */
  padding: 5rem 1.5rem;
  position: relative;
  z-index: 1;
}

.calendar-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(207, 235, 227, 0.8); /* Optional overlay for better text visibility */
  z-index: -1;
}
  
  .calendar-intro {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto 3rem;
  }
  
  .calendar-features {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
    grid-template-columns: repeat(1, 1fr);
  }
  
  @media (min-width: 768px) {
    .calendar-features {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .calendar-feature {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .calendar-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }
  
  .calendar-feature .icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
  }
  
  .calendar-feature h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
  }
  
  .calendar-feature p {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 0;
  }
  
  .upcoming-events {
    max-width: 48rem;
    margin: 0 auto;
  }
  
  .upcoming-events h3 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-color);
  }
  
  .events-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .event-item {
    display: flex;
    align-items: flex-start;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 0 0.5rem 0.5rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .event-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
  }
  
  .event-date {
    margin-right: 1.5rem;
    text-align: center;
    min-width: 4rem;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.75rem;
    border-radius: 0.5rem;
  }
  
  .event-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
  }
  
  .event-date .month {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 0.25rem;
    opacity: 0.9;
  }
  
  .event-details {
    flex: 1;
  }
  
  .event-details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
  }
  
  .event-details p {
    color: var(--gray-700);
    margin-bottom: 0.25rem;
  }
  
  .event-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
  }
  
  .event-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  
  .calendar-actions {
    text-align: center;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .calendar-actions .button {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
  
  .calendar-actions .button.secondary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
  }
  
  .calendar-actions .button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
  }
  
  /* Apply Banner */
  .apply-banner {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    padding: 5rem 1.5rem;
    position: relative;
    overflow: hidden;
  }
  
  .apply-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("../images/banner-bg.jpg") center / cover;
    opacity: 0.1;
    z-index: 1;
  }
  
  .apply-banner::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(200, 160, 53, 0.2) 0%, transparent 70%);
    z-index: 2;
  }
  
  .apply-content {
    max-width: 72rem;
    margin: 0 auto;
    position: relative;
    z-index: 3;
  }
  
  .apply-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: 1fr;
  }
  
  @media (min-width: 1024px) {
    .apply-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .apply-text h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }
  
  .apply-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
  }
  
  .apply-features {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .apply-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(10px);
  }
  
  .apply-feature .icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.875rem;
  }
  
  .apply-feature span {
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .apply-actions {
    display: flex;
    justify-content: center; /* Center the buttons */
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .apply-actions .button {
    min-width: 220px; /* Ensures both buttons have the same width */
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border-radius: 8px;
  }
  
  .apply-actions .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  }
  .apply-actions .button.outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.apply-actions .button.outline:hover {
    background-color: var(--accent-color);
    color: #fff;
}
  
  .apply-actions .button.secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
  }
  
  .apply-actions .button.secondary:hover {
    background-color: var(--white);
    color: var(--accent-color);
  }
  
  .apply-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .stats-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-card {
    background-color: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: 1rem;
    text-align: center;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
  }
  
  .stat-card .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    display: block;
    margin-bottom: 0.5rem;
  }
  
  .stat-card .label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  
  .floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }
  
  .floating-card {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 0.75rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
  }
  
  .floating-card:nth-child(1) {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
  }
  
  .floating-card:nth-child(2) {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
  }
  
  .floating-card:nth-child(3) {
    top: 60%;
    right: 5%;
    animation-delay: 4s;
  }
  
  @keyframes float {
    0%,
    100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }
  
  /* HPSK Contact Section */
  .hpsk-contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 6rem 1.5rem;
    position: relative;
  }
  
  .hpsk-contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e2e8f0' fill-opacity='0.3'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
  }
  
  .hpsk-contact-section .container {
    position: relative;
    z-index: 2;
  }
  
  .hpsk-contact-section h2 {
    text-align: center;
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
  }
  
  .hpsk-contact-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 4rem;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hpsk-contact-grid {
    display: grid;
    gap: 4rem;
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  @media (min-width: 1024px) {
    .hpsk-contact-grid {
      grid-template-columns: 5fr 7fr;
      gap: 5rem;
    }
  }
  
  /* Contact Information Side */
  .hpsk-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .hpsk-contact-info h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .hpsk-contact-info h3::before {
    content: "📍";
    font-size: 1.5rem;
  }
  
  .hpsk-contact-cards {
    display: grid;
    gap: 1.5rem;
  }
  
  .hpsk-contact-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .hpsk-contact-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-color) 100%);
  }
  
  .hpsk-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
  }
  
  .hpsk-contact-card h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .hpsk-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(6deg, #3551c8 0%, #d353a3 100%);;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  }
  
  .hpsk-contact-card p {
    margin-bottom: 0.75rem;
    color: var(--gray-700);
    line-height: 1.6;
    font-size: 1rem;
  }
  
  .hpsk-contact-card p:last-child {
    margin-bottom: 0;
  }
  
  .hpsk-contact-card strong {
    color: var(--accent-color);
    font-weight: 600;
  }
  
  .hpsk-contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .hpsk-contact-card a:hover {
    color: var(--accent-color);
    text-decoration: underline;
  }
  
  /* Office Hours */
  .hpsk-office-hours {
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  
  .hpsk-office-hours h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .hpsk-office-hours h4::before {
    content: "🕒";
    font-size: 1.25rem;
  }
  
  .hpsk-hours-grid {
    display: grid;
    gap: 0.75rem;
  }
  
  .hpsk-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 0.5rem;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
  }
  
  .hpsk-hours-row:hover {
    background-color: rgba(59, 130, 246, 0.05);
    border-color: var(--primary-color);
  }
  
  .hpsk-hours-day {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.95rem;
  }
  
  .hpsk-hours-time {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
  }
  
  /* Departments Grid */
  .hpsk-departments-section {
    margin: 2rem 0;
  }
  
  .hpsk-departments-section h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .hpsk-departments-section h4::before {
    content: "📧";
    font-size: 1.25rem;
  }
  
  .hpsk-departments-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
  }
  
  @media (min-width: 640px) {
    .hpsk-departments-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .hpsk-department-contact {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 1.25rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .hpsk-department-contact:hover {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  }
  
  .hpsk-department-contact h5 {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    transition: color 0.3s ease;
  }
  
  .hpsk-department-contact:hover h5 {
    color: var(--white);
  }
  
  .hpsk-department-contact a {
    color: var(--gray-600);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
  }
  
  .hpsk-department-contact:hover a {
    color: var(--white);
  }
  
  /* Quick Actions */
  .hpsk-quick-actions {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
    grid-template-columns: repeat(1, 1fr);
  }
  
  @media (min-width: 640px) {
    .hpsk-quick-actions {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .hpsk-quick-action {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 1.25rem;
    border-radius: 0.75rem;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  
  .hpsk-quick-action::before {
    font-size: 1.5rem;
  }
  
  .hpsk-quick-action:nth-child(1)::before {
    content: "📅";
  }
  
  .hpsk-quick-action:nth-child(2)::before {
    content: "🏫";
  }
  
  .hpsk-quick-action:nth-child(3)::before {
    content: "📄";
  }
  
  .hpsk-quick-action:hover {
    background: linear-gradient(145deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
  }
  
  /* Contact Form */
  .hpsk-contact-form-section {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
  }
  
  .hpsk-contact-form-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
  }
  
  .hpsk-contact-form-section h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    text-align: center;
    font-size: 1.875rem;
    font-weight: 600;
  }
  
  .hpsk-form-subtitle {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 2rem;
    font-size: 1rem;
  }
  
  .hpsk-form-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
    grid-template-columns: repeat(1, 1fr);
  }
  
  @media (min-width: 640px) {
    .hpsk-form-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  .hpsk-form-group {
    display: flex;
    flex-direction: column;
  }
  
  .hpsk-form-group.full-width {
    grid-column: 1 / -1;
  }
  
  .hpsk-form-group label {
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.95rem;
  }
  
  .hpsk-form-group input,
  .hpsk-form-group select,
  .hpsk-form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    font-family: inherit;
  }
  
  .hpsk-form-group input:focus,
  .hpsk-form-group select:focus,
  .hpsk-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
    background-color: #fafbfc;
  }
  
  .hpsk-form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: inherit;
  }
  
  .hpsk-form-submit {
    text-align: center;
  }
  
  .hpsk-form-submit .button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    width: 100%;
  }
  
  @media (min-width: 640px) {
    .hpsk-form-submit .button {
      width: auto;
    }
  }
  
  .hpsk-form-submit .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  }
  
  .hpsk-response-promise {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(12, 34, 63, 0.1) 100%);
    border-radius: 0.75rem;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
  }
  
  .hpsk-response-promise::before {
    content: "⚡";
    margin-right: 0.5rem;
    font-size: 1.1rem;
  }
  
  /* Social Links */
  .hpsk-social-links {
    text-align: center;
    margin-top: 2rem;
  }
  
  .hpsk-social-links h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.25rem;
    font-weight: 600;
  }
  
  .hpsk-social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .hpsk-social-icons a {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.25rem;
  }
  
  .hpsk-social-icons a:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    border-color: var(--primary-color);
  }
  
  /* Enhanced Footer Styles */
  .footer-top {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
  }
  
  @media (min-width: 768px) {
    .footer-top {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  
  .footer-logo {
    display: flex;
    align-items: center;
  }
  
  .footer-logo img {
    margin-right: 1rem;
  }
  
  .footer-logo-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
  }
  
  .footer-logo-text p {
    color: var(--gray-300);
    margin-bottom: 0;
  }
  
  .footer-contact p {
    margin-bottom: 0.5rem;
    color: var(--gray-300);
  }
  
  .footer-contact strong {
    color: var(--white);
  }
  
  .footer-social h4 {
    color: var(--white);
    margin-bottom: 1rem;
  }
  
  .footer-social .social-icons a {
    color: var(--gray-300);
  }
  
  .footer-social .social-icons a:hover {
    color: var(--primary-color);
  }
  
  .footer-grid {
    display: grid;
    gap: 2rem;
  }
  
  @media (min-width: 768px) {
    .footer-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }
  
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-400);
    font-size: 0.875rem;
  }
  
  @media (min-width: 768px) {
    .footer-bottom {
      flex-direction: row;
      justify-content: space-between;
    }
  }
  
  .footer-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
  }
  
  @media (min-width: 768px) {
    .footer-links {
      margin-top: 0;
    }
  }
  
  .footer-links a {
    color: var(--gray-400);
    transition: color 0.2s ease;
  }
  
  .footer-links a:hover {
    color: var(--primary-color);
  }
  
  
  /* Alert Messages */
.alert {
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  animation: slideIn 0.3s ease-out;
}

.alert svg {
  flex-shrink: 0;
}

.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert ul {
  margin: 0;
  padding-left: 20px;
}

.alert li {
  margin: 5px 0;
}

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

/* Form validation styles */
.hpsk-form-group input:invalid,
.hpsk-form-group textarea:invalid,
.hpsk-form-group select:invalid {
  border-color: #dc3545;
}

.hpsk-form-group input:valid,
.hpsk-form-group textarea:valid,
.hpsk-form-group select:valid {
  border-color: #28a745;
}

/* Loading state for submit button */
.button.loading {
  opacity: 0.7;
  pointer-events: none;
}

.button.loading::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-left: 10px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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




  