main{
    background-color: #222563;
}

/* Training Hero Section */
.training-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
}


.training-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.training-hero .hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.training-hero .hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}



/* Programs Section */
.programs-section {
    padding: 5rem 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.program-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #000;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.program-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--zhahi-teal);
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--zhahi-navy);
}

.program-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #666;
}

.program-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.program-card p {
    margin-bottom: 1rem;
    color: #333;
}

.program-features {
    margin: 1.5rem 0;
    padding: 0;
    list-style: none;
}

.program-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.program-card .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* College Sessions Section */
.college-sessions {
    padding: 6rem 1rem;
    background-color: var(--zhahi-navy);
    position: relative;
    overflow: hidden;
}

.college-sessions::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 150%;
    background: radial-gradient(circle, rgba(0,172,193,0.08) 0%, transparent 60%);
    z-index: 0;
}


/* Filter Section - Modern Attractive Design */
.sessions-filter {
    margin: 0 auto 3rem;
    position: sticky;
    top: 80px;
    z-index: 10;
    background: rgba(34, 37, 99, 0.96);
    padding: 1.5rem;
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 172, 193, 0.3);
    max-width: 1000px;
    transition: all 0.3s ease;
}

.sessions-filter:hover {
    box-shadow: 0 12px 40px rgba(0, 172, 193, 0.2);
    border-color: rgba(0, 172, 193, 0.5);
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-box i {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--zhahi-teal);
    font-size: 1.3rem;
}

#session-search {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3.8rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

#session-search:focus {
    outline: none;
    border-color: var(--zhahi-teal);
    box-shadow: 0 0 0 3px rgba(0, 172, 193, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.filter-tag {
    padding: 0.8rem 1.6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.filter-tag:hover {
    background: rgba(0, 172, 193, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.filter-tag.active {
    background: var(--zhahi-teal);
    border-color: var(--zhahi-teal);
    box-shadow: 0 6px 16px rgba(0, 172, 193, 0.4);
    font-weight: 600;
}

/* Session Cards - Premium Design */
.sessions-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.session-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 24px -8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--text-dark);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.session-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,172,193,0.03) 0%, rgba(34,37,99,0.03) 100%);
    z-index: 0;
}

.session-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.session-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.session-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
    z-index: 1;
}

.session-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.session-card:hover .session-image img {
    transform: scale(1.08);
}

.session-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--zhahi-teal);
    color: white;
    padding: 0.5rem 1.3rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.session-content {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.session-content h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: var(--zhahi-navy);
    line-height: 1.3;
}

.session-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    color: #4a5568;
}

.session-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.session-meta i {
    color: var(--zhahi-teal);
    font-size: 1.1rem;
}

.session-content p {
    margin-bottom: 1.8rem;
    color: #4a5568;
    line-height: 1.6;
    flex-grow: 1;
}

.session-topics {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: auto;
}

.session-topics span {
    background: rgba(0, 172, 193, 0.12);
    color: var(--zhahi-teal);
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 172, 193, 0.2);
}

.session-topics span:hover {
    background: var(--zhahi-teal);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 172, 193, 0.2);
}

/* CTA Box - Elegant Design */
.cta-box {
    background: linear-gradient(135deg, rgba(0,172,193,0.15) 0%, rgba(34,37,99,0.4) 100%);
    border: 1px solid var(--zhahi-teal);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem auto 0;
    max-width: 800px;
    backdrop-filter: blur(8px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,172,193,0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    z-index: 0;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 172, 193, 0.25);
    border-color: rgba(0, 172, 193, 0.6);
}

.cta-box-content {
    position: relative;
    z-index: 1;
}

.cta-box h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-box p {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.programs-section .btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2.4rem;
    border: 2px solid var(--zhahi-teal);
    border-radius: 12px;
    color: var(--zhahi-teal);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.1);
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.programs-section .btn-outline:hover {
    background: var(--zhahi-teal);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 172, 193, 0.4);
    border-color: transparent;
}

/* Responsive Design */
@media (max-width: 767px) {
    .college-sessions {
        padding: 4rem 1rem;
    }
    

    
    .sessions-filter {
        padding: 1.2rem;
        top: 70px;
        border-radius: 12px;
    }
    
    .filter-tags {
        gap: 0.6rem;
    }
    
    .filter-tag {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    #session-search {
        padding: 1rem 1.2rem 1rem 3.2rem;
    }
    
    .session-image {
        height: 200px;
    }
    
    .session-content {
        padding: 1.5rem;
    }
    
    .session-meta {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cta-box {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    
}

@media (min-width: 768px) {
    .sessions-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .session-image {
        height: 240px;
    }
}

@media (min-width: 1024px) {
    .sessions-container {
        grid-template-columns: repeat(3, 1fr);
    }
    

}

/* Animations */
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.session-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.session-card:nth-child(1) { animation-delay: 0.1s; }
.session-card:nth-child(2) { animation-delay: 0.2s; }
.session-card:nth-child(3) { animation-delay: 0.3s; }
.session-card:nth-child(4) { animation-delay: 0.4s; }

.session-card.filtered-out {
    animation: fadeOut 0.4s ease forwards;
}

@keyframes fadeOut {
    to {
        opacity: 0;
        height: 0;
        padding: 0;
        margin: 0;
        transform: scale(0.9);
    }
}
/* Webinars & Seminars Section */
.webinars-section {
    padding: 2rem 0;
}

.events-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem 0;
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.tab-btn.active {
    background-color: var(--zhahi-teal);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.events-content {
    margin-top: 2rem;
}

.event-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    color: #000;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--zhahi-navy);
    color: white;
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-align: center;
}

.event-day {
    font-size: 1.75rem;
    font-weight: bold;
    line-height: 1;
}

.event-month {
    font-size: 0.875rem;
    text-transform: uppercase;
}

.event-details {
    position: relative;
}

.event-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.event-badge.webinar {
    background-color: rgba(234, 67, 53, 0.1);
    color: #ea4335;
}

.event-badge.seminar {
    background-color: rgba(52, 168, 83, 0.1);
    color: #34a853;
}

.event-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--zhahi-navy);
    padding-right: 80px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #666;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.event-details p {
    margin-bottom: 1rem;
    color: #333;
}

.event-card .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    color: #000;
}

.testimonial-content {
    position: relative;
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    font-size: 1.5rem;
    opacity: 0.3;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial-content p {
    padding-left: 2rem;
    font-style: italic;
    color: #333;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--zhahi-navy);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #666;
    display: block;
}

.testimonial-course {
    font-size: 0.75rem;
    color: var(--zhahi-teal);
    font-weight: 600;
}

/* Enrollment Section */
.enroll-section {
    padding: 5rem 0;
}

.enroll-container {
    background-color: var(--zhahi-navy);
    border-radius: 0.5rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.enroll-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.enroll-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.enroll-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
}

.enroll-form {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1.5rem;
    color: #000;
}

.enroll-form h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--zhahi-navy);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
}

.enroll-form .btn-primary {
    width: 100%;
    text-align: center;
    justify-content: center;
}



/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries */
@media (min-width: 640px) {
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .enroll-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .session-card {
        grid-template-columns: 300px 1fr;
    }
    
    .session-image {
        height: auto;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .enroll-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .training-hero {
        min-height: 70vh;
    }
}




  /* Form animations */
  .fade-in-left {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease-out;
  }
  
  .fade-in-right {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease-out;
  }
  
  .fade-in-left.animate,
  .fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Loading spinner */
  .bx-spin {
    animation: spin 1s linear infinite;
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Form success/error states */
  .form-success .form-input,
  .form-success .form-select,
  .form-success .form-textarea {
    border-color: #4CAF50 !important;
  }
  
  .form-error .form-input,
  .form-error .form-select,
  .form-error .form-textarea {
    border-color: #F44336 !important;
  }
    
  /* Notification Toast Styles */
  .notification-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: rgba(17, 34, 64, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 255, 218, 0.3);
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
    max-width: 350px;
  }
  
  .notification-toast.show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .notification-toast.success {
    border-left: 4px solid #4CAF50;
  }
  
  .notification-toast.error {
    border-left: 4px solid #F44336;
  }
  
  .toast-icon {
    font-size: 24px;
  }
  
  .toast-icon.success {
    color: #4CAF50;
  }
  
  .toast-icon.error {
    color: #F44336;
  }
  
  .toast-message {
    color: white;
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* Close button for toast */
  .toast-close {
    margin-left: 15px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
  }
  
  .toast-close:hover {
    color: white;
  }