  /* Reset and base styles */
 html, body {
     margin: 0;
     padding: 0;
     overflow-x: hidden;
}
 body {
     font-family: "Montserrat", sans-serif;
     display: flex;
     flex-direction: column;
     min-height: 100vh;
}
 main {
     flex: 1 0 auto;
     padding-top: 100px;
    /* Increased padding for fixed header */
}
 footer {
     flex-shrink: 0;
}
/* Variables */
 :root {
     --primary-blue: #003767;
     --light-blue: #79bde8;
     --dark-gray: #333333;
     --primary-blue-light: #f0f5fa;
}
/* Utility classes */
 .bg-primary-blue {
     background-color: var(--primary-blue);
}
 .bg-primary-blue-light {
     background-color: var(--primary-blue-light);
}
 .text-primary-blue {
     color: var(--primary-blue);
}
 .text-light-blue {
     color: var(--light-blue);
}
 .bg-light-blue {
     background-color: var(--light-blue);
}
 .text-dark-gray {
     color: var(--dark-gray);
}
/* Header styles - Fixed positioning */
 header {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1030;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
 .btn-outline-light:hover {
     background-color: var(--light-blue);
     color: var(--primary-blue);
     border-color: var(--light-blue);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Hero section styles */
 .hero-section {
     position: relative;
     background: url("https://www.wcmo.edu/online/files/banner-home.jpg");
     background-size: cover;
     background-position: center;
     padding: 200px 0 100px;
     margin-top: -100px;
}
 .hero-program{
     background: url("https://www.wcmo.edu/online/files/columns.jpg") !important;
     background-size: cover !important;
}
 .hero-section::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(to right, rgba(0, 30, 60, 0.98), rgba(0, 55, 103, 0.4));
     z-index: 1;
}
 .hero-section .container {
     position: relative;
     z-index: 2;
}
/* Program Hero Section */
 .program-hero-section {
     position: relative;
     background-color: var(--primary-blue);
     padding: 80px 0;
     color: white;
}
 .program-hero-section .container {
     position: relative;
     z-index: 2;
}
 .program-heading {
     font-size: 3.2rem;
     line-height: 1.2;
     font-weight: 600;
}
/* Hero headings */
 .hero-heading {
     font-size: 3.5rem;
     line-height: 1.1;
}
 .hero-subheading {
     font-size: 2.5rem;
     line-height: 1.1;
}
/* Hero content */
 .hero-content {
     display: flex;
     flex-direction: column;
     justify-content: center;
     height: 100%;
     padding-right: 2rem;
}
 .form-placeholder {
     background-color: rgba(0, 55, 103, 0.85);
     border-radius: 8px;
}
/* Accolades */
 .accolades-logo {
     transition: all 0.3s ease;
     max-height: 180px;
     width: auto;
     object-fit: contain;
}
 .accolades-logo:hover {
     transform: scale(1.05);
}
 @media (min-width: 1200px) {
     .accolades-row {
         max-width: 1000px;
         margin-left: auto;
         margin-right: auto;
    }
}
 @media (min-width: 1400px) {
     .accolades-row {
         max-width: 1100px;
         margin-left: auto;
         margin-right: auto;
    }
}
/* Program cards */
 .program-card {
     display: flex;
     flex-direction: column;
    /*height: 100%;
     */
     transition: all 0.3s;
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
 .program-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}
 .program-image {
     height: 220px;
     background-size: cover;
     background-position: center;
}
 .card-content {
     display: flex;
     flex-direction: column;
    /*height: 100%;
     */
     flex-grow: 1;
}
 .card-content .btn {
     margin-top: auto;
}
 .card-text {
     margin-bottom: 20px;
}
/* Button styles */
 .btn-light-blue {
     background-color: var(--light-blue);
     color: var(--primary-blue);
     transition: all 0.3s ease;
     font-weight: 600;
}
 .btn-light-blue:hover {
     background-color: var(--primary-blue);
     color: white;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Request Info Button */
 .btn-request-info {
     background-color: var(--light-blue);
     color: var(--primary-blue);
     font-weight: 600;
     border-radius: 4px;
     padding: 12px 24px;
     font-size: 1.1rem;
     transition: all 0.3s ease;
}
 .btn-request-info:hover {
     background-color: var(--primary-blue);
     color: white;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* Features section */
 .features-section {
     background: linear-gradient(rgba(0, 55, 103, 0.85), rgba(0, 55, 103, 0.85)), url("https://www.wcmo.edu/online/files/features.jpg");
     background-size: cover;
     background-position: center;
}
 .feature {
     transition: all 0.3s ease;
     padding: 20px 10px;
     border-radius: 8px;
}
 .feature:hover {
     background-color: rgba(255, 255, 255, 0.1);
     transform: translateY(-10px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
 .feature i {
     color: var(--light-blue);
     font-size: 3rem;
     margin-bottom: 15px;
     transition: all 0.3s ease;
}
 .feature:hover i {
     transform: scale(1.2);
     color: white;
}
 .feature p {
     font-size: 1.2rem;
     font-weight: 500;
}
/* Program Objectives */
 .objective-box {
     background-color: rgba(121, 189, 232, 0.15);
     border-radius: 8px;
     padding: 25px;
     height: 100%;
     transition: all 0.3s ease;
     border-left: 4px solid var(--light-blue);
}
 .objective-box:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
     background-color: rgba(121, 189, 232, 0.25);
}
 .objective-box h3 {
     color: var(--primary-blue);
     font-weight: 600;
     margin-bottom: 15px;
     font-size: 1.25rem;
}
 .objective-box p {
     color: var(--dark-gray);
     margin-bottom: 0;
}
/* Career Outcomes */
 .career-box {
     background-color: white;
     border-radius: 8px;
     padding: 15px 20px;
     margin-bottom: 15px;
     transition: all 0.3s ease;
     border-left: 4px solid var(--light-blue);
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
 .career-box:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
 .career-box h4 {
     color: var(--primary-blue);
     font-weight: 600;
     margin-bottom: 0;
     font-size: 1.1rem;
}
/* Approach list */
 .approach-list li {
     position: relative;
     padding-left: 25px;
}
 .approach-list li::before {
     content: "•";
     position: absolute;
     left: 0;
     top: 0;
     color: var(--light-blue);
     font-size: 1.5rem;
     line-height: 1;
}
/* Image shadows */
 .img-shadow {
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
/* Accreditation section */
 .accreditation-section {
     padding: 30px 0;
     margin-top: 0;
}
/* Accreditation logo containers */
 .accreditation-container {
     height: 166px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 15px;
}
 .accreditation-logo {
     transition: all 0.3s ease;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     max-height: 166px;
     width: auto;
     object-fit: contain;
}
 .accreditation-logo:hover {
     transform: scale(1.05);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
 .accreditation-iframe {
     border: 0;
     margin: 0;
     padding: 0;
     background-color: transparent;
     width: 150px;
     height: 166px;
}
 .accreditation-name {
     font-size: 0.9rem;
     margin-bottom: 0;
}
/* Animation classes */
 .animate-on-scroll {
     opacity: 0;
     transform: translateY(30px);
     transition: opacity 0.6s ease, transform 0.6s ease;
}
 .animate-on-scroll.show {
     opacity: 1;
     transform: translateY(0);
}
/* Feature animation */
 .feature-animate {
     animation-duration: 1s;
     animation-fill-mode: both;
}
 .feature-delay-1 {
     animation-delay: 0.1s;
}
 .feature-delay-2 {
     animation-delay: 0.2s;
}
 .feature-delay-3 {
     animation-delay: 0.3s;
}
 .feature-delay-4 {
     animation-delay: 0.4s;
}
 .feature-delay-5 {
     animation-delay: 0.5s;
}
/* Request Info Button Container */
 .request-info-btn-container {
     text-align: center;
     margin: 40px 0;
}
/* Responsive styles */
 @media (max-width: 767px) {
     main {
         padding-top: 80px;
    }
     .hero-section {
         padding: 180px 0 60px;
         margin-top: -80px;
    }
     .program-hero-section {
         padding: 100px 0 60px;
    }
     .hero-heading {
         font-size: 2.5rem;
    }
     .hero-subheading {
         font-size: 1.5rem;
    }
     .program-heading {
         font-size: 2.4rem;
    }
    /* Header mobile */
     .header-mobile {
         padding-top: 15px !important;
         padding-bottom: 15px !important;
    }
     .logo-mobile {
         height: 60px !important;
    }
     .btn-mobile {
         padding: 8px 12px !important;
         font-size: 14px !important;
         white-space: nowrap;
         margin-right: 10px !important;
        /* Added right margin for mobile */
    }
     .hero-content {
         padding-right: 0;
    }
    /* Center the 5th feature on mobile */
     .features-mobile .col:last-child {
         margin-left: auto;
         margin-right: auto;
    }
    /* Keep accreditation logos consistent on mobile */
     .accreditation-container {
         height: 166px;
        /* Same as desktop */
         margin-bottom: 10px;
    }
     .accreditation-iframe {
         width: 150px;
        /* Same as desktop */
         height: 166px;
        /* Same as desktop */
         transform: none;
        /* Remove scaling */
    }
     .accreditation-logo {
         max-height: 166px;
        /* Same as desktop */
    }
    /* Ensure full width for accreditation items on mobile */
     .accreditation-section .col-md-5 {
         width: 100%;
         margin-bottom: 20px;
    }
    /* Header button container spacing */
     #header-button-container {
         padding-right: 10px;
    }
}
/* Desktop-specific styles */
 @media (min-width: 768px) {
     body {
         font-size: 17px;
    }
}
/* THANK YOU PAGE CSS */
 .hover-card {
     transition: all 0.3s ease;
}
 .hover-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}
 .next-step {
     height: 100%;
     border-radius: 8px;
     transition: all 0.3s ease;
}
 .next-step:hover {
     background-color: rgba(121, 189, 232, 0.1);
     transform: translateY(-3px);
}

/* Primary Blue Button */
.btn-primary-blue {
  background-color: var(--primary-blue);
  color: white;
  transition: all 0.3s ease;
  font-weight: 600;
  border: 2px solid var(--primary-blue);
}

.btn-primary-blue:hover {
  background-color: var(--light-blue);
  color: var(--primary-blue);
  border-color: var(--light-blue);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Action List Styles */
.action-list {
  max-width: 100%;
}

.action-item {
  background-color: white;
  border-radius: 8px;
  border: 1px solid rgba(121, 189, 232, 0.3);
  transition: all 0.3s ease;
}

.action-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-color: var(--light-blue);
}

.action-emoji {
  font-size: 2rem;
  min-width: 50px;
  text-align: center;
}

.action-title {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 1.1rem;
}

.action-description {
  color: var(--dark-gray);
  font-size: 0.95rem;
  line-height: 1.4;
}

.final-message {
  border: 1px solid rgba(0, 55, 103, 0.2);
}

/* Mobile Responsive for Action Items */
@media (max-width: 767px) {
  .action-item {
    flex-direction: column;
    text-align: center;
  }

  .action-content {
    margin-bottom: 15px;
  }

  .action-button {
    margin-left: 0 !important;
    width: 100%;
  }
  
  .action-button a {
    width: 100%;
  }

  .action-emoji {
    margin-bottom: 10px;
  }
 
}