:root {
  --apply-primary: #e20a17;
  --apply-primary-dark: #b00812;
  --apply-secondary: #2d3748;
  --apply-accent: #3490dc;
  --apply-light: #f7fafc;
  --apply-dark: #1a202c;
  --apply-gray: #a0aec0;
  --apply-light-gray: #edf2f7;
  --apply-success: #38a169;
  --apply-card-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  --apply-transition: all 0.3s ease;
  --uni-primary: #e20a17;
  --uni-primary-light: #ff4a54;
  --uni-primary-dark: #b00812;
  --uni-secondary: #2a3054;
  --uni-accent: #3d9be9;
  --uni-light: #ffffff;
  --uni-dark: #1a1d2b;
  --uni-gray: #76788b;
  --uni-light-gray: #f5f7fa;
  --uni-border: #e6eaf1;
  --uni-success: #38b2ac;
  --uni-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --uni-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --uni-radius: 12px;
  --uni-container-width: 1200px;
  --uni-gradient: linear-gradient(135deg, var(--uni-primary) 0%, var(--uni-primary-dark) 100%);
  --programPage-primary: #e20a17;
  --programPage-primary-dark: #b00812;
  --programPage-secondary: #2d3748;
  --programPage-accent: #3490dc;
  --programPage-light: #ffffff;
  --programPage-dark: #1a202c;
  --programPage-gray: #718096;
  --programPage-light-gray: #f7fafc;
  --programPage-border: #e2e8f0;
  --programPage-success: #38a169;
  --programPage-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  --programPage-transition: all 0.3s ease;
  --programPage-radius: 12px;
  --programPage-gradient: linear-gradient(135deg, var(--programPage-primary) 0%, var(--programPage-primary-dark) 100%);
  --ProgramArchivePage-primary: #e20a17;
  --ProgramArchivePage-primary-dark: #b00812;
  --ProgramArchivePage-primary-light: #ff4a54;
  --ProgramArchivePage-secondary: #2d3748;
  --ProgramArchivePage-accent: #3490dc;
  --ProgramArchivePage-light: #ffffff;
  --ProgramArchivePage-dark: #1a202c;
  --ProgramArchivePage-gray: #718096;
  --ProgramArchivePage-light-gray: #f7fafc;
  --ProgramArchivePage-border: #e2e8f0;
  --ProgramArchivePage-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  --ProgramArchivePage-transition: all 0.3s ease;
  --ProgramArchivePage-radius: 12px;

}

.sit-search {
    background: #fff;
    box-shadow: 0 4px 13px 0 #0000001A;
    border-radius: 8px;
    padding: 18px;
}


 /* Test item styling */
.requirements-table {
            width: 100%;
            border-collapse: collapse;
            font-family: Arial, sans-serif;
        }
.row {
            border-bottom: 1px solid #e0e0e0;
            padding: 15px 0;
            display: flex;
            align-items: center;
        }
.test-name {
            width: 30%;
            color: #666;
            font-size: 18px;
            padding: 15px 0;
        }
.requirement {
            width: 40%;
            font-size: 18px;
            font-weight: bold;
            padding: 15px 0;
        }
.learn-more {
            width: 30%;
            text-align: right;
            padding: 15px 0;
        }
.learn-more-btn {
            background-color: #d32f2f;
            color: white;
            border: none;
            padding: 10px 25px;
            font-size: 18px;
            cursor: pointer;
            text-decoration: none;
        }
.header {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 20px;
            padding: 10px 0;
        }
.toefl-logo {
            height: 30px;
            width: auto;
        }
        
 /* Test item styling */
       
        




/* Curriculum item styling */

.accordion {
    width: 100%;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 6px;
    overflow: hidden;
}

.accordion-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f5f7fa;
    color: #0056b3;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 6px;
}

.accordion-label:hover {
    background-color: #e9ecef;
}

/* Arrow indicator */
.accordion-label::after {
    content: "↓";
    font-size: 20px;
    transition: transform 0.3s ease;
}

input:checked + .accordion-label::after {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background-color: #fff;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

input:checked + .accordion-label {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

input:checked + .accordion-label + .accordion-content {
    max-height: 500px;
    padding: 20px;
}

/* Hide the checkbox */
.accordion input {
    display: none;
}

/* Curriculum item styling */
.curriculum-item {
    background-color: #f8f9fa;
    padding: 12px 15px;
    border-radius: 5px;
    font-size: 14px;
    color: #444;
    margin-bottom: 10px;
    border-left: 3px solid #0056b3;
    transition: all 0.2s ease;
}

.curriculum-item:hover {
    background-color: #e9ecef;
    transform: translateX(5px);
}

/* Curriculum item styling */







.sit-search form {
    display: flex;
    gap: 20px;
}

.sit-search form > div {
    width: 100%;
}

.sit-search form .form-group select {
    border: none;
    outline: none;
    box-shadow: none;
    font-weight: 300;
    line-height: 17px;
    padding: 0;
    font-size: 14px;
    background: #fff !important;
}

.sit-search form .form-group img {
    width: 25px;
    height: 25px;
}

.university-image img {
    height: 180px;
    object-fit: cover;
}

.sit-search form .form-group {
    padding: 10px;
    border-radius: 2px;
    border: 1px solid rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    gap: 7px;
    height: 46px;
    font-family: "Alexandria", sans-serif;
    font-weight: 300;
    font-size: 14px;
}

.sit-search form .form-group:last-child {
    padding: 0;
    border: 0;
    max-width: 230px;
}

.sit-search form .form-group button {
    width: 100%;
    background: #E20A17;
    color: #fff;
    height: 46px;
}

.top-universities {
    display: block;
    width: 100%;
}

.university-box-wrapper {
    background: #fff;
    box-shadow: 0 4px 4px 0 #00000040;
    border-radius: 12px;
    /*padding: 20px;*/
    margin: 10px;

}
.uni-box-hei{
    min-height: 408px;
}
.campus-box-hei{
    min-height: 329px;
}
.all-faculties-program {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.all-faculties-program .university-box-wrapper.university-box-wrapper-du {
    width: calc(33% - 30px);
}
.all-faculties-program .university-box-wrapper.uni-programs {
    width: calc(33% - 30px);
}
.campus-box-hei .university-content h3{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.uni-box-hei .university-content h3{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.university-image {
    display: flex;
    padding: 20px 20px 0px 20px;
    position: relative;
}
.university-box-wrapper-du{
    padding-bottom: 20px !important;
}

.university-image img {
    border-radius: 12px;
    height: 100%;
}

.unilink {
    margin-top: 32px !important;
    padding: 13px 40px;
    background-color: rgba(226, 10, 23, 1);
    color: #ffff !important;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-family: 'Almarai', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19.5px;
    width: max-content;
    margin: auto;
    display: block;
}
.university-content{
    padding: 0px 20px;
}
.university-content a {
    margin: 0;
    color: black;
    display: block;
}

.university-content a h3 {
    margin: 12px 0 5px 0 !important;
    font-family: "Alexandria", sans-serif;
    font-size: 20px !important;
    font-weight: 400 !important;
    text-transform: capitalize !important;
    line-height: 24px !important;

}

.university-content .country {
    font-size: 16px;
    margin-bottom: 8px;
    font-family: 'Almarai', sans-serif;
}

.university-content {
    font-family: "Alexandria", sans-serif;
    font-weight: 400;
}

.university-content p:not(.country) {
    font-family: 'Almarai', sans-serif;
    color: #717171;
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.university-attributes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 0;
}

.university-attributes .attribute {
    display: flex;
    align-items: start;
    gap: 5px;
}

.university-attributes .attribute img {
    width: 100%;
    max-width: 18px;
}

.university-attributes .attribute .attribute-content {
    font-family: 'Almarai', sans-serif;
    font-size: 14px;
}

.university-attributes .attribute .attribute-content h4 {
    color: #E00020;
    margin: 0;
    font-size: 14px;
    line-height: 18px;
}

.university-attributes .attribute .attribute-content p {
    color: #000;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Alexandria', sans-serif;
    margin: 0;

}
.university-attributes .attribute .attribute-content .discounted-price{
    display: flex;
    align-items: center;
    gap: 4px;
}
.university-attributes .attribute .attribute-content .discounted-price h5 {
    color: #c29191 !important;
    text-decoration: line-through;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Alexandria', sans-serif;
    margin: 0;
}
/* Enhanced Trending Areas Section */
.trending-areas-wrapper {
    display: grid;
    gap: 25px;
    align-items: stretch;
    grid-template-columns: repeat(5, 1fr);
    margin: 40px 0;
}

.trending-item {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trending-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(226, 10, 23, 0.15);
    border-color: rgba(226, 10, 23, 0.2);
}

.trending-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #e20a17, #ff6b6b);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.trending-item:hover:before {
    transform: scaleX(1);
    transform-origin: left;
}

.trending-item h3 {
    font-family: 'Alexandria', sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: #333;
    transition: color 0.3s ease;
}

.trending-item:hover h3 {
    color: #e20a17;
}

.trending-item p {
    margin: 0 0 15px 0;
    font-family: 'Almarai', sans-serif;
    font-size: 14px;
    color: #666;
}

.trending-item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 50%;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    margin: 5px 0;
}

.trending-item:hover img {
    transform: scale(1.1);
    background-color: #FBE9E9;
    border-color: rgba(226, 10, 23, 0.2);
}

.trending-item a {
    background: #e20a17;
    color: #fff;
    width: 100%;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: 'Almarai', sans-serif;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    box-shadow: 0 4px 8px rgba(226, 10, 23, 0.2);
}

.trending-item a:hover {
    background: #cc0000;
    box-shadow: 0 6px 12px rgba(226, 10, 23, 0.3);
}

.trending-item a:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 1;
}

.trending-item a:hover:before {
    left: 100%;
}

/* University Filter Checkboxes */
.filter-checkbox-label {
    display: block;
    padding: 8px 12px;
    margin: 4px 0;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.filter-checkbox-label:hover {
    background: #f5f5f5;
    border-color: #110053;
}

.filter-checkbox-label.active {
    background: #110053;
    color: white;
    border-color: #110053;
}

.university-checkbox {
    margin-right: 8px;
}

.filter-checkbox-text {
    font-size: 14px;
    font-weight: 500;
}

.trending-item .count-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #f5f5f5;
    color: #e20a17;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 10px;
    font-family: 'Alexandria', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .trending-areas-wrapper {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .trending-areas-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .trending-areas-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .trending-areas-wrapper {
        grid-template-columns: 1fr;
    }
    
    .trending-item {
        padding: 20px 15px;
    }
}
/* Enhanced Country Section */
.country-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.country-item {
    display: flex;
    background: #fff;
    border-radius: 12px;
    padding: 18px 25px;
    gap: 20px;
    align-items: center;
    width: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.country-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(226, 10, 23, 0.2);
}

.country-item:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #e20a17, #ff6b6b);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.country-item:hover:after {
    transform: scaleY(1);
    transform-origin: top;
}

.country-wrapper .country-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.country-item:hover img {
    border-color: rgba(226, 10, 23, 0.3);
    transform: scale(1.05);
}

.country-item a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
    padding-right: 25px;
}

.country-item a:after {
    content: '→';
    position: absolute;
    right: 0;
    font-size: 18px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #e20a17;
}

.country-item:hover a:after {
    opacity: 1;
    transform: translateX(0);
}

.country-item h3 {
    font-family: 'Alexandria', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.country-item:hover h3 {
    color: #e20a17;
}

/* Adding program count if available */
.country-item .program-count {
    font-family: 'Almarai', sans-serif;
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .country-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .country-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .country-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .country-item {
        padding: 15px 20px;
    }
    
    .country-wrapper .country-item img {
        width: 50px;
        height: 50px;
    }
    
    .country-item h3 {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .country-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Adding a "featured" or "popular" country highlight option */
.country-item.featured {
    background: linear-gradient(to right, rgba(226, 10, 23, 0.03), rgba(255, 255, 255, 1));
    border-left: 3px solid #e20a17;
}

.country-item.featured:after {
    display: none;
}

.filter-results {
    display: flex;
    flex-wrap: wrap;
    column-gap: 24px;
    row-gap: 30px;
}

.filter-results .university-box-wrapper {
    width: calc(33.33% - 16px);
    margin: 0px;
}

.header-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
}

.header-title h1 {
    font-family: 'Almarai', sans-serif;
    font-size: 35px;
    font-weight: 500;
    line-height: 42.67px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    color: black;
    margin-bottom: 10px;
}

.header-info {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
}

.courses-found {
    color: rgba(226, 10, 23, 1);
    font-family: 'Almarai', sans-serif;
    font-size: 24px;
    font-weight: 300;
    line-height: 29.26px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
}
.search-by-name{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 300px;
}
.search-by-name button , .search-by-name button:hover{
    border: 1px solid #c36;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 3px;
    transition: all .3s;
    background-color: #e20a17;
    font-family: 'Almarai';
    font-weight: 300;
    line-height: 17.07px;
    color: rgb(255 255 255);
    outline: 0px;
}


.search-by-name-campus{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 300px;
}
.search-by-name-campus button , .search-by-name-campus button:hover{
    border: 1px solid #c36;
    padding: 14px 20px;
    font-size: 1rem;
    border-radius: 3px;
    transition: all .3s;
    background-color: #e20a17;
    font-family: 'Almarai';
    font-weight: 300;
    line-height: 17.07px;
    color: rgb(255 255 255);
    outline: 0px;
}

span.discount_badge {
    position: absolute;
    bottom: 20px;
    left: 32px;
    background: rgba(226, 10, 23, 1);
    border-radius: 4px;
    font-family: Alexandria;
    font-weight: 300;
    font-size: 12px;
    line-height: 14.63px;
    color: rgba(255, 255, 255, 1);
    padding: 6px 10px;
}
span.discount_badge.advanced-discount-badge {
    bottom: 55px;
}
.other-universities  button.owl-next {
    position: absolute;
    top: 50%;
    right: 0;
    margin: 0;
}
.other-universities button {
    margin: 0 !important;
    position: absolute !important;
    top: 50%;
    background: #ddddea !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50% !important;
    padding: 18px !important;
}
.other-universities button span{
    display: contents;
}
.other-universities  button.owl-prev {
    margin: 0 !important;
    position: absolute !important;
    top: 50%;
}
.filter-results .university-box-wrapper:hover span.discount_badge{
    transform: scale(1.1);
    left: 35px;
}
p.advanced-discount {
    color: rgba(113, 113, 113, 1);
    font-size: 14px;
    margin: 0;
    background: rgba(245, 245, 245, 1);
    padding: 8px 20px;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    margin-top: 12px;
}
input#search-university {
    padding: 14px 20px;
    border: 1px solid rgba(0, 0, 0, 0.19);
    border-radius: 0px;
    background-color: #fff;
    font-family: 'Almarai', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 17.07px;
    color: rgba(51, 51, 51, 1);
    outline: 0px;
}
.header-actions {
    display: flex;
    align-items: start;
    gap: 10px;
}
.filter-export {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
button.export-btn {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    background: #fff;
    color: #dc2626;
    font-size: 13px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border-radius: 25px;
}
#expoting-download{
display: none;
}
/* Enhanced Top Universities Carousel */
.top-universities {
    position: relative;
    margin: 50px 0;
    padding: 10px 5px 40px;
}

/* Card styling */
.top-universities .university-box-wrapper {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: hidden;
    margin: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.top-universities .university-box-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(226, 10, 23, 0.15);
    border-color: rgba(226, 10, 23, 0.2);
}

.top-universities .university-image {
    display: block;
    position: relative;
    padding: 0;
    overflow: hidden;
    height: 200px;
}

.top-universities .university-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.6s ease;
}

.top-universities .university-box-wrapper:hover .university-image img {
    transform: scale(1.05);
}

.top-universities .university-content {
    padding: 25px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.top-universities .university-content a {
    text-decoration: none;
}

.top-universities .university-content a h3 {
    font-family: "Alexandria", sans-serif;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    color: #333;
    margin: 0 0 10px 0 !important;
    transition: color 0.3s ease;
    position: relative;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.6em;
}

.top-universities .university-box-wrapper:hover .university-content a h3 {
    color: #e20a17;
}

.top-universities .university-content .country {
    font-size: 15px;
    margin-bottom: 12px;
    font-family: 'Almarai', sans-serif;
    color: #555;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-universities .university-content .country:before {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url('path-to-location-icon.svg'); /* Replace with your location icon */
    background-size: contain;
    background-repeat: no-repeat;
}

.top-universities .university-content p:not(.country) {
    font-family: 'Almarai', sans-serif;
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 15px;
}

/* University attributes */
.top-universities .university-attributes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 5px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.top-universities .university-attributes .attribute {
    display: flex;
    align-items: start;
    gap: 8px;
}

.top-universities .university-attributes .attribute img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.top-universities .university-attributes .attribute .attribute-content {
    font-family: 'Almarai', sans-serif;
    font-size: 14px;
}

.top-universities .university-attributes .attribute .attribute-content h4 {
    color: #e20a17;
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
}

.top-universities .university-attributes .attribute .attribute-content p {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    font-family: 'Alexandria', sans-serif;
    margin: 0;
}

.top-universities .university-attributes .attribute .attribute-content .discounted-price {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-universities .university-attributes .attribute .attribute-content .discounted-price h5 {
    color: #999 !important;
    text-decoration: line-through;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Alexandria', sans-serif;
    margin: 0;
}

/* Apply button */
.top-universities .unilink {
    background-color: #e20a17;
    color: #fff !important;
    border: none;
    cursor: pointer;
    font-family: 'Almarai', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.2;
    width: 100%;
    margin: 0;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.top-universities .university-box-wrapper:hover .unilink {
    background-color: #cc0000;
}

.top-universities .unilink:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: 1;
}

.top-universities .university-box-wrapper:hover .unilink:before {
    left: 100%;
}

/* Discount badge */
.top-universities span.discount_badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(226, 10, 23, 0.9);
    border-radius: 4px;
    font-family: Alexandria;
    font-weight: 500;
    font-size: 12px;
    line-height: 1.2;
    color: #fff;
    padding: 6px 12px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(226, 10, 23, 0.3);
    transition: all 0.3s ease;
}

.top-universities .university-box-wrapper:hover span.discount_badge {
    transform: scale(1.05);
    background: rgba(226, 10, 23, 1);
}

/* Carousel Navigation */
.top-universities .owl-nav {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    pointer-events: none;
    padding: 0 -40px;
}

.top-universities .owl-nav button {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.9) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    pointer-events: auto;
    transition: all 0.3s ease;
    position: absolute;
}

.top-universities .owl-nav button:hover {
    background: #e20a17 !important;
    transform: scale(1.1);
}

.top-universities .owl-nav button span {
    font-size: 24px;
    line-height: 1;
    color: #555;
    transition: color 0.3s ease;
}

.top-universities .owl-nav button:hover span {
    color: white;
}

.top-universities .owl-nav button.owl-prev {
    left: -22px;
}

.top-universities .owl-nav button.owl-next {
    right: -22px;
}

/* Dots */
.top-universities .owl-dots {
    text-align: center;
    margin-top: 20px;
}

.top-universities .owl-dots .owl-dot {
    display: inline-block;
    margin: 0 5px;
}

.top-universities .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
}

.top-universities .owl-dots .owl-dot.active span,
.top-universities .owl-dots .owl-dot:hover span {
    background: #e20a17;
    transform: scale(1.2);
}

/* Section title */
.top-universities-title {
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
    padding-left: 15px;
}

.top-universities-title:before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 5px;
    background: linear-gradient(to bottom, #e20a17, #ff6b6b);
    border-radius: 3px;
}

/* Loading Animation */
.top-universities.owl-carousel .owl-stage {
    transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1) !important;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .top-universities .university-image {
        height: 180px;
    }
}

@media (max-width: 992px) {
    .top-universities .owl-nav button {
        width: 38px !important;
        height: 38px !important;
    }
    
    .top-universities .owl-nav button.owl-prev {
        left: -19px;
    }
    
    .top-universities .owl-nav button.owl-next {
        right: -19px;
    }
}

@media (max-width: 768px) {
    .top-universities .university-content {
        padding: 20px 15px;
    }
    
    .top-universities .university-content a h3 {
        font-size: 16px !important;
    }
    
    .top-universities .university-attributes {
        gap: 8px 5px;
    }
    
    .top-universities-title {
        font-size: 24px;
    }
    
    .top-universities .university-image {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .top-universities .owl-nav {
        display: none;
    }
    
    .top-universities .owl-dots {
        margin-top: 15px;
    }
    
    .top-universities .university-content .country {
        font-size: 14px;
    }
}

/* Display fix */
.top-universities {
    display: block !important;
}





.card-footer.single-sit-program-fot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.select2main .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 48px !important;
}
.select2main .select2-container .select2-selection--single {
    height: 47px !important;
}
.select2main .select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 10px !important;
}
a.uni-link , a.uni-link:hover {
    margin-top: 15px;
    padding: 13px 40px;
    background-color: rgba(226, 10, 23, 1);
    color: #ffff !important;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-family: 'Almarai', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19.5px;
    width: max-content;
    margin: auto;
    margin-top: 40px;
    display: block;
}
.top-universities .owl-nav button {
    width: 20px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #dddde4 !important;
}

.top-universities .owl-nav button span {
    height: inherit;
}
.top-universities .owl-nav button.owl-next {
    right: -20px;
    position: absolute;
}
body.page-id-29712 {
    overflow-x: hidden;
}
#expoting-download .export-popup {
    max-height: fit-content !important;
}
button.export-btn:hover {
    background: #e20a17;
    color: #fff;
}
.export-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(31 32 34 / 85%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    display: none;
}

/* Popup container */
.export-popup {
    background: #fff;
    padding: 30px;
    width: 95%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    font-family: 'Segoe UI', sans-serif;
    color: #111827;
    overflow-x: hidden;
}

/* Header */
.export-header h2 {
    color: #000000;
    margin-bottom: 5px;
    font-size: 20px;
}
.header-action button.print-btn {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: #000;
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 15px;
    margin-bottom: 7px;
}
.export-header p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
}
.generated-date {
    font-style: italic;
}

/* Close button */
.close-export {
    position: absolute;
    top: 9px;
    right: -9px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    background: unset !important;
    cursor: pointer;
}
.close-export:hover {
    color: #111;
}

/* Table */
.export-popup h3 {
    font-size: 20px;
}
.program-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    border: 1px solid #e5e7eb;
}
.program-table th,
.program-table td {
    padding: 12px;
    text-align: left;
    border: 0px;
    border-bottom: 1px solid #e5e7eb;
}
.program-table td{
    background: transparent !important;
    color: #000;
}
.program-table th {
    background-color: #f9fafb;
    font-weight: 600;
    color: #64748b;
    font-size: 14px;
}

/* Program Cards */
.export-popup .program-card {
    background: #ffffff;
    padding: 0px !important;
    margin-bottom: 20px;
    box-shadow: unset;
    padding-bottom: 20px !important;
    border-bottom: 1px solid #e5e7eb;
    border-radius: 0px;
    display: flex;
    gap: 16px;
}
.export-popup .program-card .university-image {
    padding: 0px;
    width: 80px;
    height: 80px;
}

.export-popup .program-card .university-image img {
    border-radius: 4px;
    object-fit: cover;
}
.export-popup .program-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 0px;
}
.uni-name {
    color: #d97706;
    font-size: 16px;
    font-weight: 400;
}
.program-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px 50px;
    font-family: 'Segoe UI', sans-serif;
    font-size: 12px;
    color: #111827;
    line-height: 1.5;
    margin-top: 5px;

}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.info-item .icon {
    font-size: 16px;
    color: #6b7280;
}

.export-popup .export-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
/* Contact Info */
.export-popup .contact-info {
    font-size: 14px;
}
.footer-popup{
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    margin-top: 30px;
}
.footer-popup p{
    margin: 0;
    font-size: 12px;
}
.header-actions .btn {
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: #f8f9fa;
    cursor: pointer;
}

.header-actions .btn:hover {
    background-color: #e9ecef;
}

.header-actions .filter {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 14px 20px;
    border: 1px solid rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    background-color: #fff;
    font-family: 'Almarai', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 17.07px;
    cursor: pointer;
    color: rgba(51, 51, 51, 1);
}

.header-actions .sort-dropdown {
    padding: 14px 20px;
    border: 1px solid rgba(0, 0, 0, 0.19);
    border-radius: 5px;
    background-color: #fff;
    font-family: 'Almarai', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 17.07px;
    cursor: pointer;
    color: rgba(51, 51, 51, 1);
}

.elementor-element.elementor-element-8a7f9fd.filter-top-sec.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded:before {
    content: "";
    background-image: url(https://search.studyinturkiye.com/wp-content/uploads/2025/02/lined-and-blured-background-2-2-e1739345443915.png);
    left: 0;
    top: 25%;
    transform: translateY(-49%) rotate(-6deg);
    position: absolute;
    width: 272px;
    height: 132px;
    background-size: 272px 132px;
    background-repeat: no-repeat;
    transform: rotate(-15deg);
}

.elementor-element.elementor-element-8a7f9fd.filter-top-sec.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded:after {
    content: "";
    background-image: url(https://search.studyinturkiye.com/wp-content/uploads/2025/02/lined-and-blured-background-2-1-1-e1739345638223.png);
    right: 15px;
    top: 33%;
    transform: translateY(-50%) rotate(30deg);
    position: absolute;
    width: 272px;
    height: 132px;
    background-size: 272px 132px;
    background-repeat: no-repeat;
    transform: rotate(25deg);
}

.filter-pagination .pagination {
    width: max-content;
    gap: 10px;
}

.filter-pagination .pagination span.page-numbers.current {
    background: rgba(226, 10, 23, 1);
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    font-family: 'Almarai', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 26.78px;
    border: 1px solid rgba(226, 10, 23, 1);
}

.filter-pagination .pagination a.page-numbers {
    background: rgba(255, 255, 255, 1);
    height: 48px;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: rgba(135, 134, 128, 1);
    font-family: 'Almarai', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 26.78px;
    border: 1px solid rgba(255, 255, 255, 1);
}

.filter-pagination .pagination a.page-numbers img {
    width: 25px;
}

.filter-pagination {
    margin: 56px 0px;
}

.filters {
    position: relative;
}

.new-sr-filter {
    z-index: 999;
    position: absolute;
    right: 0;
    top: 60px;
    width: 580px !important;
}

.new-srch-result-coulmn .filter-list {
    box-shadow: 4px 4px 32px 0px #0000001F;
    border-radius: 10px;
}

.filter-list {
    background: #ffffff;
    border: 1px solid rgba(196, 196, 196, 0.3);
    box-shadow: 4px 4px 32px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
}

.d-none {
    display: none !important;
}

.filter-head {
    padding: 1rem;
    border-bottom: 1px solid #d8d8d8;
    align-items: center !important;
    justify-content: space-between !important;
    display: flex;
}

.filter-list .accordion {
    padding: 0 16px;
}

.filter-head h3 {
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: #212529;
    margin: 0;
}

.filter-list .accordion-item {
    border-bottom: 1px solid #d8d8d8;
    border-width: 0 0 1px 0;
}

.accordion-item:first-of-type {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem;
}

.accordion-item {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125);
}

.accordion-header {
    margin-bottom: 0;
}

.new-sr-filter .filter-list .accordion-header button {
    font-weight: 400 !important;
}

.filter-list .accordion-header button {
    font-weight: 600 !important;
    font-size: 18px !important;
    line-height: 21px !important;
    color: #110053 !important;
    box-shadow: none;
}

.filter-list .accordion-button {
    background: #fff;
    padding: 1.3rem 0 !important;
}

.accordion-button {
    position: relative;
    display: flex !important;
    align-items: center;
    width: 100% !important;
    padding: 1rem 1.25rem !important;
    font-size: 1rem !important;
    color: #212529 !important;
    text-align: left !important;
    background-color: #fff !important;
    border: 0 !important;
    border-radius: 0 !important;
    overflow-anchor: none;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out, border-radius .15s ease !important;
}

.accordion-button:not(.collapsed) {
    color: #0c63e4 !important;
}

.filter-list .accordion-button:not(.collapsed)::after {
    background-image: url(https://search.aeccglobal.com/coursev2/images/down-arrow-grey.svg);
}

.filter-list .accordion-button::after {
    background-image: url(https://search.aeccglobal.com/coursev2/images/down-arrow-grey.svg);
    width: 15px;
    height: 13px;
    background-size: 15px;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform .2s ease-in-out;
}

.collapse:not(.show) {
    display: none;
}

.sr-filter .accordion-body {
    padding: 0 0 12px;
    display: flex;
    flex-wrap: wrap;
    column-gap: 5px;
    padding-top: 0 !important;
    width: 100% !important;
}

.new-sr-filter .mobile-filter-btn {
    padding: 16px;
}

.mobile-filter-btn {
    display: flex !important;
    width: 100% !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 20px;
}

.mobile-filter-btn .btn-primary-ghoast {
    width: 25%;
    padding: 10px !important;
    box-shadow: none;
    background: #fff;
    border: 1px solid #e20a17a1;
    border-radius: 24px;
    color: #e20a17a1;
    font-weight: 500;
    font-size: 16px;
    height: 48px;
}

.btn-primary-ghoast:hover, .btn-primary-ghoast:active {
    color: #ffffff !important;
    background: #e20a17a1 !important;
    box-shadow: none;
}

.mobile-filter-btn .new-filter-apply {
    width: 75%;
    height: 48px;
    border-radius: 25px !important;
    font-size: 16px;
    background: #e20a17a1 !important;
    padding: 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border: 0;
    font-weight: 500;
    transition: .3s;
}

.mobile-filter-btn .new-filter-apply:hover {
    background: #fbfbfb !important;
    color: #e20a17a1 !important;
    border: 1px solid;
}

.mobile-filter-btn .new-filter-apply-campus {
    width: 75%;
    height: 48px;
    border-radius: 25px !important;
    font-size: 16px;
    background: #e20a17a1 !important;
    padding: 10px !important;
    text-align: center !important;
    color: #ffffff !important;
    border: 0;
    font-weight: 500;
    transition: .3s;
}

.mobile-filter-btn .new-filter-apply-campus:hover {
    background: #fbfbfb !important;
    color: #e20a17a1 !important;
    border: 1px solid;
}

.fade {
    transition: opacity 0.15s linear;
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.collapsing.show {
    height: auto;
}

.new-sr-filter .filter-btn:not(.filter-btn.active) {
    color: #4D407E !important;
}

.filter-btn {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #110053 !important;
    background: #ffffff;
    border: 1px solid #dedede;
    border-radius: 16px;
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    height: auto;
    margin-bottom: 8px;
    position: relative;
}

.filter-btn:not(.active):hover {
    border: 1px solid #715AE6;
}

.range-input-flex {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: .5rem !important;
    margin: 0;
    padding: 0;
}

.range-input-flex .field {
    width: 49.2%;
}

.range-input-flex label {
    font-size: 9px;
    color: #110053;
}

.range-input-flex input {
    font-weight: 400;
    font-size: 11px;
    line-height: 20px;
    color: #110053 !important;
    background: #ffffff;
    border: 1px solid #dedede !important;
    border-radius: 8px !important;
    padding: 4px 6px !important;
    display: inline-flex;
    align-items: center;
    height: auto;
    width: 100% !important;
    outline: 0px;
}

.range-error {
    background: linear-gradient(0deg, #FFE8F4, #FFE8F4), linear-gradient(0deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5));
    padding: 4px;
    border-radius: 4px;
    font-size: 12px;
    line-height: 15px;
    display: none;
    align-items: center;
    width: 100%;
}

.range-input {
    width: 100%;
}

.filter-btn.active {
    background: #110053 !important;
    color: #fff !important;
}

.bread-crump {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bread-crump img {
    width: 12px;
}

.bread-crump .b-home {
    width: 23px;
    height: 26px;
}

.bread-crump p {
    margin: 0;
    font-family: 'Almarai', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 24.38px;
    color: rgba(0, 0, 0, 1);
}

.logo-main {
    width: 176px !important;
    height: max-content !important;
}

.related-title {
    font-family: 'Almarai', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 29.26px;
    color: rgba(0, 0, 0, 1);
}

.related-row h3 {
    margin-bottom: 18px;
    font-family: 'Almarai', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    color: rgba(51, 51, 51, 1);
    display: flex;
    align-items: center;
    gap: 8px;
}

.related-row h3 img {
    width: 25px;
    height: 25px;
}

.related-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 27px;
}

.related-list li a {
    font-family: 'Almarai', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 17.07px;
    display: inline-block;
    padding: 8px 10px;
    border: 1px solid rgba(0, 0, 0, 0.19);
    border-radius: 8px;
    color: rgba(51, 51, 51, 1);
}

.container-single {
    display: flex;
    margin: 0 auto;
    background: #F2F2F2;
    padding: 58px 0px;
    max-width: var(--content-width);
}

.left-content {
    flex: 2;
    margin-left: 20px;
    /*max-width: 870px;*/
}

.right-sidebar .page-content h3 {
    font-family: Alexandria;
    font-weight: 400;
    font-size: 20px;
    line-height: 24.38px;
    color: #000;
    padding-left: 26px;
}

.right-sidebar .page-content ul {
    padding: 0px;
    list-style: none;
}

.right-sidebar .page-content ul li {
    padding-left: 26px;
    margin-bottom: 12px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.right-sidebar .page-content ul li a {
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 17.86px;
    color: black;
}

.right-sidebar .page-content ul li.active {
    background: rgba(226, 10, 23, 1);
    position: relative;
}

.right-sidebar .page-content ul li.active:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 5px;
    background: rgba(243, 100, 109, 1);
    top: 0;
}

.right-sidebar .page-content ul li.active a {
    color: #fff;
}

.right-sidebar {
    flex: 1;
    position: sticky;
    top: 50px;
    background-color: transparent;
    border-radius: 8px;
    height: max-content;
}

.card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 26px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    display: grid;
}

.card .row {
    display: flex;
    padding: 24px 0px;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
}

.card .col-4 {
    width: 33%;
}

.card .col-4 p.label {
    color: rgba(226, 10, 23, 1);
    margin: 0px;
    margin-bottom: 8px;
}

.card .col-4 p.info {
    color: rgb(0, 0, 0);
    margin: 0px;
    text-transform: uppercase;
}
.card .col-6 {
    width: 50%;
}

.card .col-6 p.label {
    color: rgba(226, 10, 23, 1);
    margin: 0px;
    margin-bottom: 8px;
}

.card .col-6 p.info {
    color: rgb(0, 0, 0);
    margin: 0px;
    text-transform: uppercase;
}

.info.card h4 {
    font-family: Alexandria;
    font-weight: 400;
    font-size: 20px;
    line-height: 24.38px;
    color: #000;
    margin-bottom: 0px;
}

.info.card {
    justify-items: anchor-center;
}

.info.card button {
    background: rgba(226, 10, 23, 1);
    color: #fff;
    padding: 13px 40px;
    border-radius: 0px;
}

.right-sidebar .page-content {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    background: #ffffff;
    padding: 30px 0px;
    margin-bottom: 32px;
    border-radius: 12px;
}

.card h3 {
    margin-top: 0;
    font-family: Alexandria;
    font-weight: 500;
    font-size: 20px;
    line-height: 24.38px;
    color: rgba(0, 0, 0, 1);
    margin: 0px;
}

a.visit-officail-link {
    color: rgba(226, 10, 23, 1);
    margin-top: 10px;
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 17.86px;
    text-decoration: underline !important;
}

.card p {
    margin-bottom: 0;
    font-family: 'Almarai', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color: rgba(0, 0, 0, 1);
    margin-top: 24px;
}

.cta-card {
    background-color: #d60000;
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.cta-card h2 {
    margin: 0;
    font-family: 'Almarai', sans-serif;
    font-weight: 500;
    font-size: 26px;
    line-height: 31.69px;
    color: #ffffff;
}

.card button {
    margin-top: 15px;
    padding: 13px 40px;
    background-color: rgba(226, 10, 23, 1);
    color: #ffff;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-family: 'Almarai', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19.5px;
    width: max-content;
    margin: auto;
    margin-top: 40px;
}

.card button:hover {
    background-color: rgba(226, 10, 23, 1);
    color: #ffff;
}

.cta-card button {
    margin-top: 15px;
    padding: 13px 40px;
    background-color: #fff;
    color: #d60000;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-family: 'Almarai', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19.5px;
    position: relative;
}

a.apply-now-link:after {
    content: "";
    background-image: url(https://search.studyinturkiye.com/wp-content/uploads/2025/02/lined-and-blured-background-2-1-2.png);
    background-size: 168px 82px;
    background-position: center;
    position: absolute;
    display: block;
    width: 168px;
    height: 82px;
    right: -180px;
    top: -30px;
}

a.apply-now-link:hover {
    background-color: #f5f5f5;
    color: #d60000;
}

.card .col-12 {
    width: 100%;
}

.card .col-12 p {
    margin: 0px;
}

.card .col-12 a.visit-officail-link {
    margin-top: 8px;
}

.card h4 {
    margin: 0;
    margin-bottom: 24px;
    font-family: Alexandria;
    font-weight: 500;
    font-size: 20px;
    line-height: 24.38px;
}

.ranking {
    display: flex;
    gap: 10px;
}

.ranking img {
    width: 32px;
    height: 32px !important;
}

.ranking h5 {
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 17.86px;
    color: rgba(226, 10, 23, 1);
    margin: 0px;
    margin-bottom: 8px;
}

.ranking p {
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 17.86px;
    color: black;
}

.card-footer {
    justify-self: center;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 300px;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: space-between;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    margin: 0;
    font-size: 32px;
    font-weight: bold;
}

.hero-content p {
    margin: 5px 0;
    font-size: 16px;
}

.actions {
    position: relative;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.action-button {
    padding: 8px 12px;
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.action-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.single-sit-program .bread-crump, .single-sit-university .bread-crump {
    padding: 20px;
    background: #fff;
}

.other-universities {
    display: block;
    width: 100%;
    overflow: hidden;
}

.other-universities .university-image img {
    border-radius: 8px;
}

.other-universities .university-content h3 {
    margin: 0px !important;
    font-family: Alexandria;
    font-weight: 400;
    font-size: 20px;
    line-height: 24.38px;
    margin-top: 6px !important;
    margin-bottom: 12px !important;
}

.other-universities .university-content p {
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 17.86px;
    margin: 0px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 24px !important;
}

.other-universities .university-content p img {
    width: 25px;
    height: 25px;
}

.other-universities .university-attributes .attribute a {
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 17.86px;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: Auto;
    color: rgba(226, 10, 23, 1) !important;
    text-decoration-skip-ink: auto;
}

.study-journey .row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.study-journey .row .col {
    background-color: transparent;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
}

.study-journey .row .col h4 {
    font-family: Alexandria;
    font-weight: 400;
    font-size: 20px;
    line-height: 24.38px;
    text-align: center;
    color: black;
    margin-top: 0px;
    margin-bottom: 9px;
}

.study-journey .row .col p {
    font-family: 'Almarai', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 17.86px;
    text-align: center;
    color: black;
    margin: 0;
}


.study-journey .grid.row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    width: 100%;
}

.study-journey .grid.row .progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 1);
    transform: translateY(-50%);
    z-index: 1;
}

.study-journey .grid.row .col {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    padding: 0;
}

.study-journey .grid.row .step span {
    width: 43px;
    height: 43px;
    background-color: rgba(226, 10, 23, 1);
    color: rgba(255, 255, 255, 1);
    font-family: Alexandria;
    font-weight: 700;
    font-size: 16px;
    line-height: 19.5px;
    text-align: center;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.recent-searches {
    display: flex;
    gap: 25px;
    margin-top: 15px;
    align-items: center;
}

.recent-searches h3 {
    font-family: "Alexandria", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    color: #1C244B;
    margin: 0;
    text-wrap: nowrap;
}

.recent-searches ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 10px;
    flex-wrap: wrap;
}

.recent-searches ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ccc;
    padding: 6px 10px;
    border-radius: 6PX;
    font-family: 'Almarai', sans-serif;
    font-size: 15px;
    color: #222;
}

.recent-searches ul li a .title span {
    font-weight: 600;
}




/*apply*/
/* Enhanced Apply Now Section */
.applynow-con {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin: 50px auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    max-width: var(--content-width);
    position: relative;
    overflow: hidden;
}

.applynow-con:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #e20a17, #ff6b6b);
}

/* Background accents */
.applynow-con:after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(226, 10, 23, 0.05) 0%, rgba(226, 10, 23, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Header styling */
.applynow-con .apply-title {
    font-family: 'Alexandria', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    position: relative;
    display: inline-block;
}

.applynow-con .apply-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: #e20a17;
    border-radius: 2px;
}

.applynow-con .sub-heading {
    font-family: 'Almarai', sans-serif;
    font-size: 18px;
    color: #666;
    margin: 0 0 25px 0;
}

/* Row layout */
.applynow-con .row-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.applynow-con .row-main .col-md-6 {
    width: calc(50% - 15px);
}

.applynow-con .row-main .col-md-12 {
    width: 100%;
    margin-top: 30px;
}

/* Program card styling */
.applynow-con .university-box-wrapper {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.applynow-con .university-box-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(226, 10, 23, 0.2);
}

.applynow-con .university-image {
    position: relative;
    overflow: hidden;
    height: 180px;
}

.applynow-con .university-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.applynow-con .university-box-wrapper:hover .university-image img {
    transform: scale(1.05);
}

.applynow-con .university-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.applynow-con .university-content h3 {
    font-family: 'Alexandria', sans-serif;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    line-height: 1.3;
    color: #333;
    transition: color 0.3s ease;
}

.applynow-con .university-content a {
    text-decoration: none;
}

.applynow-con .university-box-wrapper:hover .university-content h3 {
    color: #e20a17;
}

/* Attributes styling */
.applynow-con .university-attributes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: auto;
}

.applynow-con .attribute {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.applynow-con .attribute img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.applynow-con .attribute-content h4 {
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #e20a17;
    margin: 0 0 5px 0;
}

.applynow-con .attribute-content p {
    font-family: 'Almarai', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    margin: 0;
}

/* Form styling */
.applynow-con form {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
}

.applynow-con .row.g-3 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.applynow-con .col-md-6 {
    width: calc(50% - 10px);
}

.applynow-con label.form-label {
    font-family: 'Alexandria', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    margin-bottom: 8px;
    display: block;
}

.applynow-con .text-danger {
    color: #e20a17;
}

.applynow-con .form-control,
.applynow-con .form-select {
    height: 46px;
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Almarai', sans-serif;
    font-size: 15px;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
    width: 100%;
}

.applynow-con .form-control:focus,
.applynow-con .form-select:focus {
    border-color: rgba(226, 10, 23, 0.5);
    box-shadow: 0 0 0 3px rgba(226, 10, 23, 0.1);
    outline: none;
}

.applynow-con .form-control::placeholder {
    color: #aaa;
}

/* File upload styling */
.applynow-con input[type="file"] {
    padding: 10px;
    background-color: #fff;
    border: 1px dashed #ddd;
    border-radius: 8px;
    width: 100%;
    font-family: 'Almarai', sans-serif;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.applynow-con input[type="file"]:hover {
    border-color: rgba(226, 10, 23, 0.5);
    background-color: rgba(226, 10, 23, 0.02);
}

/* Custom file upload button */
.applynow-con .file-upload-wrapper {
    position: relative;
    width: 100%;
}

.applynow-con .file-upload-wrapper:after {
    content: 'Browse';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 15px;
    background: #f0f0f0;
    color: #555;
    font-family: 'Alexandria', sans-serif;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    border-left: 1px solid #ddd;
    pointer-events: none;
}

/* Submit button styling */
.applynow-con .apply-btn {
    background: linear-gradient(to right, #e20a17, #cc0000);
    color: #fff;
    font-family: 'Alexandria', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(226, 10, 23, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.applynow-con .apply-btn:hover {
    background: linear-gradient(to right, #cc0000, #e20a17);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(226, 10, 23, 0.3);
}

.applynow-con .apply-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.5s ease;
    z-index: 1;
}

.applynow-con .apply-btn:hover:before {
    left: 100%;
}

/* Select2 custom styling */
.applynow-con .select2-container {
    width: 100% !important;
}

.applynow-con .select2-container .select2-selection--single {
    height: 46px !important;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    padding: 8px 15px !important;
    font-family: 'Almarai', sans-serif !important;
    font-size: 15px !important;
    color: #333 !important;
    transition: all 0.3s ease !important;
}

.applynow-con .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333 !important;
    line-height: 30px !important;
    padding-left: 0 !important;
}

.applynow-con .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px !important;
    right: 10px !important;
}

.applynow-con .select2-container--default .select2-selection--single:focus {
    border-color: rgba(226, 10, 23, 0.5) !important;
    box-shadow: 0 0 0 3px rgba(226, 10, 23, 0.1) !important;
}

.applynow-con .select2-dropdown {
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden;
}

.applynow-con .select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #ddd !important;
    border-radius: 4px !important;
    padding: 8px !important;
}

.applynow-con .select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #e20a17 !important;
    color: white !important;
}

/* Form validation styling */
.applynow-con .form-control.is-invalid,
.applynow-con .form-select.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.applynow-con .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.applynow-con .was-validated .form-control:invalid ~ .invalid-feedback,
.applynow-con .was-validated .form-select:invalid ~ .invalid-feedback,
.applynow-con .form-control.is-invalid ~ .invalid-feedback,
.applynow-con .form-select.is-invalid ~ .invalid-feedback {
    display: block;
}

/* Success state */
.application-success {
    text-align: center;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.application-success h2 {
    font-family: 'Alexandria', sans-serif;
    font-size: 28px;
    color: #28a745;
    margin-bottom: 15px;
}

.application-success p {
    font-family: 'Almarai', sans-serif;
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .applynow-con {
        padding: 30px;
    }
    
    .applynow-con .row-main .col-md-6 {
        width: 100%;
    }
    
    .applynow-con .university-image {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .applynow-con {
        padding: 20px;
    }
    
    .applynow-con .apply-title {
        font-size: 26px;
    }
    
    .applynow-con .sub-heading {
        font-size: 16px;
    }
    
    .applynow-con form {
        padding: 20px;
    }
    
    .applynow-con .col-md-6 {
        width: 100%;
    }
    
    .applynow-con .row.g-3 {
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .applynow-con {
        padding: 15px;
    }
    
    .applynow-con form {
        padding: 15px;
    }
    
    .applynow-con .apply-btn {
        width: 100%;
    }
}





.select2-dropdown{
    border: 0px !important;
}

.select2-results__options::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
}
.select2-results__options::-webkit-scrollbar-thumb {
    cursor: pointer;
    border-radius: 5px;
    background: rgba(0, 0, 0, .25);
    -webkit-transition: color .2sease;
    transition: color .2sease;
}
.select2-results__options::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, .1);
    border-radius: 0;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #e20a17;
    color: white;
}
.select2-results__option {
    padding: 6px;
    user-select: none;
    -webkit-user-select: none;
    font-size: 13px;
    padding: 8px 8px;
}
form#search-bar span.select2-selection.select2-selection--single {
    border: 0px !important;
}
.applynow-con .row-main .col-md-12 .row .col-md-3{
    width: calc(25% - 15px);
    align-content: center;
}
.applynow-con .university-box-wrapper{
    box-shadow: unset;
    border: 1px solid #e7e7e7 !important;
}
.applynow-con .university-box-wrapper:hover{
    box-shadow: 0 0px 5px 0 #00000040;
}
.applynow-con.mt-5 {
    padding-bottom: 4rem;
}
.apply-title {
    font-size: 24px;
    font-weight: bold;
}
a.apply-now-link {
    margin-top: 15px;
    padding: 15px 40px;
    background-color: #fff;
    color: #d60000;
    border: none;
    border-radius: 0px;
    cursor: pointer;
    font-family: 'Almarai', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 19.5px;
    position: relative;
    display: block;
    width: fit-content;
}
.applynow-con .row-main .col-md-12 input{
    border:1px solid #ccc ;
    outline: 0px;
}
.sub-heading {
    font-size: 18px;
    color: #555;
}

.custom-input {
    border-radius: 6px;
    height: 45px;
    border: 1px solid #ccc;
}

.apply-btn {
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    margin-top: 15px;
}

.program-card {
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

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

.card-body {
    padding: 15px;
}

.program-title {
    font-size: 20px;
    font-weight: bold;
}

.program-details {
    list-style: none;
    padding: 0;
}

.program-details li {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}
/*apply*/


.card .row-req {
    display: flex;
    padding: 14px 0px !important;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
    align-items: center;
}

.card .col-3 {
    width: 18%;
}
.card .row-req .col-6 {
    width: 64%;
    display: flex;
    align-items: end;
    justify-content: end;
}
.card .col-3 p.info {
    color: rgba(0, 0, 0, 1);
    margin: 0px;
    text-transform: uppercase;
}
.card .col-3 p.info.info-las {
    color: rgba(113, 113, 113, 1);
    margin: 0px;
    text-transform: uppercase;
}
.card .row-req .col-6 a{
    padding: 10px 30px;
    background: rgba(226, 10, 23, 1);
    font-family: Alexandria;
    font-weight: 300;
    font-size: 16px;
    line-height: 19.5px;
    color: #ffffff;
    display: block;
    width: fit-content;
}
.other-universities{
    display: none;
}
.other-universities .owl-dots {
    display: none;
}
.single-campus-content h4{

}
.single-campus-content .trending-areas-wrapper {
    margin-bottom: 60px;
}
.top-universities{
    display: none;
}
.main-university input {
    border: none !important;
    outline: none !important;
    box-shadow: none;
    font-weight: 300 !important;
    line-height: 17px !important;
    padding: 0 !important;
    font-size: 14px !important;
    background: #fff !important;
}
.main-university div#sit-search {
    max-width: var(--content-width);
    margin: auto;
}
.main-university .search-container {
    background-color: #e30613; /* Red background */
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    border-radius: 10px;
    max-width: var(--content-width);;
    margin: 50px auto;
}

.main-university .search-box {
    background-color: #ffffff; /* White box */
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
    min-width: 342px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.main-university .search-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.main-university .search-box img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.main-university .search-title {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
}

.main-university .search-type {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.filter-header a , .filter-header a:hover{
    display: block;
    background: #e20a17;
    color: #fff;
    padding: 10px;
}
.country-wrapper.country-cities {
    margin-bottom: 25px;
}
.country-cities .country-item {
    box-shadow: 0 4px 4px 0 #00000040;
}
.country-cities .country-item a{
    color: #e20a17 !important;
}
.single-sit-program .related-result {
    max-width: var(--content-width);
    margin: 0 auto;
}
#curriculum .accordion {
    overflow: hidden;
}
.thank-you-section {
    background: #fff;
    text-align: center;
    position: relative;
    max-width: 100%;
    margin: 40px auto;
    border-radius: 10px;
}

.thank-you-text {
    font-size: 32px;
    font-weight: 800;
    color: #d00000;
    margin-bottom: 20px;
    width: 15%;
    line-height: 32px;
}
.thankyou-content {
    display: flex;
    align-items: center;
    justify-content: center;
}
.emoji-books {
    font-size: 64px;
    margin-bottom: 20px;
}
.emoji-books img {
    width: 155px;
}
.thank-you-message {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    color: #333;
}

.arrow {
    position: absolute;
    top: 20px;
    width: 200px;
}

.arrow-left {
    left: 20px;
    transform: rotate(-10deg);
}

.arrow-right {
    right: 20px;
    transform: rotate(10deg);
}

.arrow img {
    width: 100%;
    height: auto;
}
#curriculum .accordion-item {
    border-bottom: 0px solid #ddd;
    border: 0px;
}

#curriculum .accordion input {
    display: none;
}

#curriculum .accordion-label {
    display: block;
    cursor: pointer;
    background: #b1959500;
    transition: background 0.3s;
    font-family: Alexandria;
    font-weight: 500;
    font-size: 20px;
    line-height: 24.38px;
    color: rgba(0, 0, 0, 1);
    margin: 0px;
}

#curriculum .accordion-label:hover {
    background: #b1959500;
}

#curriculum .accordion-content {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0px;
    font-size: 16px;
    line-height: 1.6;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
#curriculum .row {
    flex-wrap: wrap;
    row-gap: 10px;
}
#curriculum .accordion input:checked ~ .accordion-content {
    max-height: max-content;
    padding-top: 20px;
}

#curriculum .accordion input:checked ~ .accordion-label {
    background: #e0f7fa00;
}
@media (max-width: 768px) {
    .filter-results .university-box-wrapper {
        width: 100%;
    }
    .all-faculties-program .university-box-wrapper.university-box-wrapper-du , .all-faculties-program .university-box-wrapper.uni-programs  {
        width: calc(100% - 30px);
    }
    .header-container, .filter-results, .related-result {
        padding: 0px 10px;
    }

    .elementor-element.elementor-element-8a7f9fd.filter-top-sec.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded:after,
    .elementor-element.elementor-element-8a7f9fd.filter-top-sec.e-flex.e-con-boxed.e-con.e-parent.e-lazyloaded:before {
        top: 70%;
        width: 120px;
        height: 50px;
        background-size: 120px 50px;
    }

    .new-sr-filter {
        width: 340px !important;
    }

    .mobile-filter-btn .btn-primary-ghoast {
        width: 50%;
    }

    .container-single {
        flex-direction: column;
        gap: 20px;
        padding: 58px 10px;
    }

    .right-sidebar {
        position: relative;
        top: unset;
    }

    .hero-section {
        flex-direction: column;
        justify-content: space-around;
    }

    .left-content {
        margin-left: 0px;
    }

    .card button {
        padding: 13px 20px;
    }

    .unilink {
        margin-top: 32px !important;
        padding: 10px;
        background-color: rgba(226, 10, 23, 1);
        color: #ffff !important;
        border: none;
        border-radius: 0px;
        cursor: pointer;
        font-family: 'Almarai', sans-serif;
        font-weight: 300;
        font-size: 12px;
        line-height: 19.5px;
        width: max-content;
        margin: auto;
        display: block;
        width: auto;
        text-align: center;
    }

    a.apply-now-link:after {
        background-size: 120px 60px;
        width: 120px;
        height: 60px;
        right: -160px;
    }

    .card {
        padding: 20px 20px;
    }
}

/* program-details.css - Apply this to your program details page only */

/* Hero Section Improvements */
.hero-section {
    position: relative;
    width: 100%;
    height: 380px;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: space-between;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-content h1 {
    margin: 0 0 15px 0;
    font-size: 42px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    margin: 12px 0;
    font-size: 18px;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
}

.hero-content p:first-of-type {
    font-size: 20px;
    font-weight: 500;
}

.actions {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 15px;
    animation: fadeInRight 0.8s ease-out;
}

.action-button {
    padding: 12px 18px;
    background-color: rgba(226, 10, 23, 0.9);
    border: none;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.action-button:hover {
    background-color: rgba(226, 10, 23, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Breadcrumb Improvements */
.bread-crump {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
}

.bread-crump img {
    width: 12px;
    opacity: 0.7;
}

.bread-crump .b-home {
    width: 23px;
    height: 26px;
    opacity: 1;
}

.bread-crump p, .bread-crump a {
    margin: 0;
    font-family: 'Almarai', sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: rgba(0, 0, 0, 0.7);
    transition: color 0.2s;
}

.bread-crump a:hover {
    color: #e20a17;
}

/* Container Improvements */
.container-single {
    display: flex;
    margin: 0 auto;
    background: #F9F9F9;
    padding: 40px 0;
    max-width: var(--content-width);
    gap: 30px;
}

/* Left Content Improvements */
.left-content {
    flex: 2;
    margin-left: 20px;
}

/* Card Improvements */
.card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: grid;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card h3 {
    margin-top: 0;
    font-family: 'Alexandria', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    color: #222;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 15px;
}

.card h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #e20a17;
}

.card .row {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid rgba(217, 217, 217, 0.5);
}

.card .row:last-child {
    border-bottom: none;
}

.card .col-4 {
    width: 33%;
}

.card .col-4 p.label {
    color: #e20a17;
    margin: 0 0 8px 0;
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card .col-4 p.info {
    color: #333;
    margin: 0;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 16px;
}

.card button, .card .trigger-modal {
    margin-top: 25px;
    padding: 14px 40px;
    background-color: #e20a17;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Almarai', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    width: max-content;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(226, 10, 23, 0.2);
}

.card button:hover, .card .trigger-modal:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(226, 10, 23, 0.3);
}

/* CTA Card Improvements */
.cta-card {
    background: linear-gradient(135deg, #e20a17 0%, #a70000 100%);
    color: #fff;
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(226, 10, 23, 0.2);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

.cta-card:before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-card h2 {
    margin: 0 0 25px 0;
    font-family: 'Almarai', sans-serif;
    font-weight: 600;
    font-size: 28px;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

a.apply-now-link {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 40px;
    background-color: #fff;
    color: #e20a17;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Almarai', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
}

a.apply-now-link:hover {
    background-color: #f5f5f5;
    color: #d60000;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

a.apply-now-link:after {
    content: "";
    background-image: url(https://search.studyinturkiye.com/wp-content/uploads/2025/02/lined-and-blured-background-2-1-2.png);
    background-size: 168px 82px;
    background-position: center;
    position: absolute;
    display: block;
    width: 168px;
    height: 82px;
    right: -180px;
    top: -30px;
    opacity: 0.8;
    transform: rotate(10deg);
    transition: all 0.4s ease;
}

a.apply-now-link:hover:after {
    transform: rotate(0deg);
    opacity: 1;
}

/* Right Sidebar Improvements */
.right-sidebar {
    flex: 1;
    position: sticky;
    top: 80px;
    background-color: transparent;
    border-radius: 8px;
    height: max-content;
}

.right-sidebar .page-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    padding: 30px 0;
    margin-bottom: 32px;
    border-radius: 12px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.right-sidebar .page-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.right-sidebar .page-content h3 {
    font-family: 'Alexandria', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.3;
    color: #222;
    padding-left: 26px;
    margin-bottom: 20px;
}

.right-sidebar .page-content ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.right-sidebar .page-content ul li {
    padding: 12px 26px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.right-sidebar .page-content ul li:hover {
    background-color: #f8f9fa;
}

.right-sidebar .page-content ul li a {
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #555;
    text-decoration: none;
    display: block;
    transition: color 0.2s;
}

.right-sidebar .page-content ul li a:hover {
    color: #e20a17;
}

.right-sidebar .page-content ul li.active {
    background: #e20a17;
    position: relative;
}

.right-sidebar .page-content ul li.active:before {
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 5px;
    background: #f3646d;
    top: 0;
}

.right-sidebar .page-content ul li.active a {
    color: #fff;
}

.info.card {
    background: linear-gradient(to right, #f9f9f9, #fff);
    padding: 25px;
    border-left: 4px solid #e20a17;
}

.info.card h4 {
    font-family: 'Alexandria', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 20px;
}

.info.card button {
    background: #e20a17;
    color: #fff;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

/* Test Requirements Section Improvements */
.row-req {
    align-items: center !important;
    padding: 15px 0 !important;
    transition: background-color 0.3s ease;
}

.row-req:hover {
    background-color: #f9f9f9;
}

.row-req .col-3 {
    width: 30%;
}

.row-req .col-4 {
    width: 40%;
}

.row-req .col-6 {
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.row-req .col-3 p.info.info-las {
    color: #555;
    margin: 0;
    text-transform: uppercase;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.row-req .col-6 a {
    padding: 10px 25px;
    background: #e20a17;
    font-family: 'Alexandria', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    color: #ffffff;
    display: block;
    width: fit-content;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(226, 10, 23, 0.2);
}

.row-req .col-6 a:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(226, 10, 23, 0.3);
}

/* Curriculum Section Improvements */
#curriculum .accordion {
    width: 100%;
    overflow: visible;
}

#curriculum .accordion-item {
    margin-bottom: 15px;
    border: none;
    background: transparent;
}

#curriculum .accordion-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #f5f7fa;
    color: #333;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    position: relative;
}

#curriculum .accordion-label:hover {
    background-color: #e9ecef;
}

#curriculum .accordion-label::after {
    content: "↓";
    font-size: 20px;
    transition: transform 0.3s ease;
}

#curriculum input:checked + .accordion-label::after {
    transform: rotate(180deg);
}

#curriculum .accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: #fff;
    border-radius: 0 0 6px 6px;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

#curriculum input:checked + .accordion-label {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background-color: #e9ecef;
}

#curriculum input:checked + .accordion-label + .accordion-content {
    max-height: 1000px;
    padding: 20px;
    border: 1px solid #e9ecef;
    border-top: none;
}

.curriculum-item {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
    font-size: 15px;
    color: #444;
    margin-bottom: 12px;
    border-left: 3px solid #e20a17;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.curriculum-item:hover {
    background-color: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
    border-left-width: 5px;
}

/* Rankings Section Improvements */
.ranking {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 10px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.ranking:hover {
    transform: translateY(-3px);
    background-color: #f5f5f5;
}

.ranking img {
    width: 45px !important;
    height: 45px !important;
    object-fit: contain;
}

.ranking-info {
    flex: 1;
}

.ranking h5 {
    font-family: 'Almarai', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    color: #e20a17;
    margin: 0 0 5px 0;
}

.ranking p {
    font-family: 'Almarai', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.2;
    color: #333;
    margin: 0 !important;
}

/* University Section Link Improvements */
.card-footer.single-sit-program-fot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}

a.uni-link {
    display: inline-block;
    padding: 12px 25px;
    background-color: #e20a17;
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-family: 'Almarai', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.2;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(226, 10, 23, 0.2);
    margin: 0;
}

a.uni-link:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(226, 10, 23, 0.3);
}

/* Related Results Section Improvements */
.related-result {
    max-width: var(--content-width);
    margin: 40px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.related-row h3 {
    margin-bottom: 20px;
    font-family: 'Almarai', sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.3;
    color: #333;
    display: flex;
    align-items: center;
    gap: 12px;
}

.related-row h3 img {
    width: 30px;
    height: 30px;
}

.related-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
}

.related-list li a {
    font-family: 'Almarai', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    display: inline-block;
    padding: 10px 15px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 30px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.related-list li a:hover {
    background-color: #e20a17;
    color: #fff;
    border-color: #e20a17;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(226, 10, 23, 0.15);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .container-single {
        padding: 30px 15px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .card-footer.single-sit-program-fot {
        flex-direction: column;
        align-items: flex-start;
    }
    
    a.uni-link {
        margin-top: 15px;
    }
}

@media (max-width: 768px) {
    .container-single {
        flex-direction: column;
        gap: 30px;
    }
    
    .right-sidebar {
        position: relative;
        top: unset;
    }
    
    .left-content {
        margin-left: 0;
    }
    
    .hero-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        height: auto;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .actions {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        justify-content: center;
    }
    
    .card .row {
        flex-direction: column;
    }
    
    .card .col-4, .card .col-6, .card .col-3 {
        width: 100%;
        margin-bottom: 15px;
    }
    
    .row-req {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .row-req .col-6 {
        width: 100%;
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    a.apply-now-link:after {
        display: none;
    }
}

.share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.share-modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.close-share-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
}

.close-share-modal:hover {
    color: #e20a17;
}

.share-modal h3 {
    margin-top: 0;
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    font-family: 'Alexandria', sans-serif;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.share-option {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
    border-radius: 6px;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    font-family: 'Almarai', sans-serif;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-option i {
    margin-right: 8px;
    font-size: 18px;
}

.share-option.facebook {
    background-color: #3b5998;
}

.share-option.twitter {
    background-color: #1da1f2;
}

.share-option.whatsapp {
    background-color: #25d366;
}

.share-option.linkedin {
    background-color: #0077b5;
}

.share-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.share-option.copy-link {
    grid-column: span 2;
    background-color: #f5f5f5;
    color: #333;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-option.copy-link input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px;
    font-size: 14px;
    color: #555;
    outline: none;
    overflow: hidden;
    text-overflow: ellipsis;
}

.share-option.copy-link button {
    background-color: #e20a17;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Almarai', sans-serif;
    font-weight: 500;
    transition: background-color 0.2s;
}

.share-option.copy-link button:hover {
    background-color: #cc0000;
}

/* Enhanced share button in hero section */
.action-button.share-button {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.action-button.share-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    z-index: -1;
}

.action-button.share-button:hover:before {
    left: 0;
}

/* Floating share button for mobile */
.floating-share-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e20a17;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
    
.floating-share-btn:hover {
    transform: scale(1.1);
    animation: none;
}
    
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(226, 10, 23, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(226, 10, 23, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(226, 10, 23, 0);
    }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .share-options {
        grid-template-columns: 1fr;
    }
    
    .share-option.copy-link {
        grid-column: span 1;
    }
}


/* Ultimate Journey Section Styles - FIXED VERSION */
.journey-section {
  max-width: var(--content-width);
  margin: 60px auto;
  padding: 60px 30px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

/* Background elements */
.journey-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 10% 90%, rgba(226, 10, 23, 0.03) 0%, transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(226, 10, 23, 0.04) 0%, transparent 30%);
  opacity: 0.6;
  z-index: 0;
}

.journey-accent-shape {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background-color: rgba(226, 10, 23, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
  animation: morphShape 15s linear infinite alternate;
}

@keyframes morphShape {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Main heading */
.journey-heading {
  text-align: center;
  font-family: 'Alexandria', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.journey-heading:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #e20a17, #ff6b6b);
  border-radius: 2px;
}

/* Journey container */
.journey-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
}

/* Individual step */
.journey-step {
  width: 18%;
  position: relative;
  perspective: 1000px;
  transition: transform 0.4s ease;
}

.journey-step.active .step-card {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(226, 10, 23, 0.1);
  border-color: rgba(226, 10, 23, 0.5);
}

.step-card {
  position: relative;
  width: 100%;
  padding: 25px 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.journey-step:hover .step-card {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(226, 10, 23, 0.1);
  border-color: rgba(226, 10, 23, 0.3);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 15px;
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #e20a17, #ff6b6b);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(226, 10, 23, 0.3);
  z-index: 2;
}

/* Step icon styling */
.step-icon-container {
  position: relative;
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
}

.step-icon {
  width: 100%;
  height: 100%;
  background-color: #FBE9E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.step-icon svg {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.journey-step:hover .step-icon svg,
.journey-step.active .step-icon svg {
  transform: scale(1.1);
}

.step-icon-ring {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border: 2px dashed rgba(226, 10, 23, 0.3);
  border-radius: 50%;
  animation: spin 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.journey-step:hover .step-icon-ring,
.journey-step.active .step-icon-ring {
  opacity: 1;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Step content */
.step-title {
  font-family: 'Alexandria', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 10px;
}

.step-description {
  font-family: 'Almarai', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 0;
}

/* Connector styling */
.step-connector {
  position: absolute;
  top: 35%;
  right: -30%;
  width: 60%;
  height: 20px;
  z-index: 0;
}

.journey-step:last-child .step-connector {
  display: none;
}

.connector-path {
  stroke-dasharray: 4 4;
  animation: dash 30s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

/* Mobile styling - FIXED */
.journey-mobile {
  display: none;
  margin-top: 40px;
}

/* Set fixed minimum height to avoid layout jumps */
.mobile-slides {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  min-height: 280px;
}

.mobile-slide {
  display: none;
  width: 100%;
  animation: fadeIn 0.5s ease forwards;
}

.mobile-slide.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.mobile-card-header {
  background: linear-gradient(to right, #e20a17, #ff6b6b);
  padding: 15px 20px;
  color: white;
  display: flex;
  align-items: center;
  gap: 15px;
}

.mobile-step-number {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Alexandria', sans-serif;
  font-weight: 700;
  font-size: 18px;
}

.mobile-card-header h3 {
  margin: 0;
  font-family: 'Alexandria', sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.mobile-card-body {
  padding: 25px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-icon {
  width: 70px;
  height: 70px;
  background: #FBE9E9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mobile-icon svg {
  width: 35px;
  height: 35px;
}

.mobile-card-body p {
  font-family: 'Almarai', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin: 0;
}

/* Mobile navigation - FIXED */
.mobile-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.mobile-prev, .mobile-next {
  background: #f5f5f5;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #666;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-prev:hover:not([disabled]), 
.mobile-next:hover:not([disabled]) {
  background: #e20a17;
  color: white;
}

.mobile-prev:disabled, 
.mobile-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.mobile-indicators {
  display: flex;
  gap: 8px;
}

.mobile-indicator {
  width: 10px;
  height: 10px;
  background: #ddd;
  border-radius: 50%;
  transition: all 0.3s ease;
  cursor: pointer;
}

.mobile-indicator.active {
  background: #e20a17;
  transform: scale(1.2);
}

/* The connector path animation - FIXED */
@keyframes dash {
  to {
    stroke-dashoffset: -1000;
  }
}

/* Hide original journey sections */
.study-journey:not(.journey-section),
.study-journey-clean:not(.journey-section),
.study-journey-premium:not(.journey-section) {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .journey-container {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }
  
  .journey-step {
    width: 45%;
  }
  
  .step-connector {
    display: none;
  }
}

@media (max-width: 768px) {
  .journey-container {
    display: none;
  }
  
  .journey-mobile {
    display: block;
  }
  
  .journey-heading {
    font-size: 28px;
    margin-bottom: 40px;
  }
  
  .journey-section {
    padding: 40px 20px;
  }
  
  /* Improve mobile button targets */
  .mobile-prev, 
  .mobile-next {
    min-width: 44px;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .journey-heading {
    font-size: 24px;
  }
  
  .mobile-card-header h3 {
    font-size: 18px;
  }
  
  .mobile-card-body p {
    font-size: 14px;
  }
}



/* Complete Redesign - Application Form Page */

/* Main container */
.apply-container {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: 'Inter', 'Roboto', sans-serif;
}

/* Page header */
.apply-header {
  text-align: center;
  margin-bottom: 50px;
}

.apply-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--apply-secondary);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.apply-title:after {
  content: '';
  position: absolute;
  width: 60px;
  height: 4px;
  background: var(--apply-primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.apply-subtitle {
  font-size: 18px;
  color: var(--apply-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Main layout */
.apply-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}

/* Program summary card */
.apply-program-summary {
  position: sticky;
  top: 30px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--apply-card-shadow);
  transition: var(--apply-transition);
}

.apply-program-summary:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.apply-program-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

.apply-program-summary:hover .apply-program-image img {
  transform: scale(1.05);
}

.apply-program-discount {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--apply-primary);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 8px rgba(226, 10, 23, 0.25);
}

.apply-program-content {
  padding: 25px;
}

.apply-program-type {
  text-transform: uppercase;
  color: var(--apply-accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.apply-program-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--apply-dark);
  margin-bottom: 15px;
  line-height: 1.3;
}

.apply-program-university {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--apply-light-gray);
}

.apply-university-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.apply-university-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.apply-university-name {
  font-weight: 600;
  color: var(--apply-secondary);
  font-size: 16px;
}

.apply-program-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.apply-detail-item {
  display: flex;
  flex-direction: column;
}

.apply-detail-label {
  font-size: 13px;
  color: var(--apply-gray);
  margin-bottom: 5px;
}

.apply-detail-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--apply-dark);
}

.apply-program-cta {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--apply-light-gray);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.uni-fee {
    width: 100%;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}
.service-fee , .total-fee {
    width: 33%;
}
.total-fee {
    width: 100%;
}
.uni-fee span.apply-price-value {
    font-size: 16px;
    color: #705859;
}
.uni-fee span.apply-price-label {
    width: 100%;
    display: block;
}
.apply-program-price {
  display: flex;
  flex-direction: column;
}

.apply-price-label {
  font-size: 13px;
  color: var(--apply-gray);
}

.apply-price-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--apply-primary);
}

.apply-program-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--apply-accent);
  font-weight: 600;
  text-decoration: none;
  transition: var(--apply-transition);
}

.apply-program-link:hover {
  color: var(--apply-primary);
}

.apply-program-link svg {
  width: 16px;
  height: 16px;
}

/* Application form */
.apply-form-container {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--apply-card-shadow);
}

.apply-form-header {
  background: var(--apply-secondary);
  color: white;
  padding: 25px 30px;
  border-bottom: 5px solid var(--apply-primary);
}

.apply-form-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.apply-form-description {
  font-size: 14px;
  opacity: 0.9;
  margin: 8px 0 0;
}

.apply-form-body {
  padding: 30px;
}

.apply-form-section {
  margin-bottom: 30px;
}

.apply-section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--apply-secondary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--apply-light-gray);
  display: flex;
  align-items: center;
  gap: 10px;
}

.apply-section-title svg {
  width: 20px;
  height: 20px;
  color: var(--apply-primary);
}

.apply-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.apply-form-group {
  margin-bottom: 20px;
}

.apply-form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--apply-secondary);
  margin-bottom: 8px;
}

.apply-form-required {
  color: var(--apply-primary);
  margin-left: 4px;
}

.apply-form-control {
  width: 100%;
  height: 50px;
  padding: 10px 15px !important;
  border: 1px solid var(--apply-light-gray) !important;
  border-radius: 8px !important;
  font-size: 15px;
  transition: var(--apply-transition);
  background: var(--apply-light);
}

.apply-form-control:focus {
  border-color: var(--apply-accent);
  box-shadow: 0 0 0 3px rgba(52, 144, 220, 0.1);
  outline: none;
}

.apply-form-control::placeholder {
  color: #cbd5e0;
}

.apply-form-select {
  width: 100%;
  height: 50px;
  padding: 10px 15px;
  border: 1px solid var(--apply-light-gray);
  border-radius: 8px;
  font-size: 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--apply-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a0aec0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat;
  background-position: calc(100% - 15px) center;
  transition: var(--apply-transition);
}

.apply-form-select:focus {
  border-color: var(--apply-accent);
  box-shadow: 0 0 0 3px rgba(52, 144, 220, 0.1);
  outline: none;
}

.apply-file-container {
  position: relative;
  width: 100%;
}

.apply-file-input {
  width: 100%;
  height: 50px;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  z-index: 2;
}

.apply-file-label {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  height: 50px;
  border: 1px solid var(--apply-light-gray);
  border-radius: 8px;
  background: var(--apply-light);
  transition: var(--apply-transition);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.apply-file-label svg {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: var(--apply-accent);
}

.apply-file-text {
  color: var(--apply-gray);
  font-size: 15px;
}

.apply-file-input:focus + .apply-file-label {
  border-color: var(--apply-accent);
  box-shadow: 0 0 0 3px rgba(52, 144, 220, 0.1);
}

.apply-file-help {
  margin-top: 5px;
  font-size: 12px;
  color: var(--apply-gray);
}

.apply-submit-btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--apply-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--apply-transition);
  position: relative;
  overflow: hidden;
}

.apply-submit-btn:hover {
  background: var(--apply-primary-dark);
}

.apply-submit-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.8s ease;
}

.apply-submit-btn:hover:before {
  left: 100%;
}

/* Form footer */
.apply-form-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--apply-light);
  border-top: 1px solid var(--apply-light-gray);
}

.apply-privacy-text {
  font-size: 13px;
  color: var(--apply-gray);
  text-align: center;
}

.apply-privacy-link {
  color: var(--apply-accent);
  text-decoration: none;
  transition: var(--apply-transition);
}

.apply-privacy-link:hover {
  color: var(--apply-primary);
  text-decoration: underline;
}

/* Support section */
.apply-support-section {
  margin-top: 30px;
  padding: 20px;
  border-radius: 8px;
  background: var(--apply-light);
  display: flex;
  align-items: center;
  gap: 15px;
}

.apply-support-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  color: var(--apply-accent);
}

.apply-support-icon svg {
  width: 25px;
  height: 25px;
}

.apply-support-content {
  flex: 1;
}

.apply-support-heading {
  font-size: 16px;
  font-weight: 600;
  color: var(--apply-secondary);
  margin: 0 0 5px;
}

.apply-support-description {
  font-size: 14px;
  color: var(--apply-gray);
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .apply-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .apply-program-summary {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .apply-title {
    font-size: 30px;
  }
  
  .apply-subtitle {
    font-size: 16px;
  }
  
  .apply-form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .apply-program-details {
    grid-template-columns: 1fr;
  }
  
  .apply-form-body {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .apply-container {
    margin: 30px auto;
  }
  
  .apply-header {
    margin-bottom: 30px;
  }
  
  .apply-title {
    font-size: 26px;
  }
  
  .apply-program-cta {
    flex-direction: column;
    gap: 15px;
  }
}



/* University Program Details Page - Complete Redesign */

/* Base Styles */
.uni-container {
  max-width: var(--uni-container-width);
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'Poppins', 'Inter', sans-serif;
}

/* Enhanced Hero Section */
.uni-hero {
  position: relative;
  height: 450px;
  background-size: cover;
  background-position: center;
  color: var(--uni-light);
  overflow: hidden;
}

.uni-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 29, 43, 0.85) 0%, rgba(26, 29, 43, 0.65) 50%, rgba(26, 29, 43, 0.4) 100%);
  z-index: 1;
}

.uni-hero::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1200 120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0v46.29c47.79 22.2 103.59 32.17 158 28 70.36-5.37 136.33-33.31 206.8-37.5 73.84-4.36 147.54 16.88 218.2 35.26 69.27 18 138.3 24.88 209.4 13.08 36.15-6 69.85-17.84 104.45-29.34C989.49 25 1113-14.29 1200 52.47V0z' opacity='.25' fill='%23FFFFFF'/%3E%3Cpath d='M0 0v15.81c13 21.11 27.64 41.05 47.69 56.24C99.41 111.27 165 111 224.58 91.58c31.15-10.15 60.09-26.07 89.67-39.8 40.92-19 84.73-46 130.83-49.67 36.26-2.85 70.9 9.42 98.6 31.56 31.77 25.39 62.32 62 103.63 73 40.44 10.79 81.35-6.69 119.13-24.28s75.16-39 116.92-43.05c59.73-5.85 113.28 22.88 168.9 38.84 30.2 8.66 59 6.17 87.09-7.5 22.43-10.89 48-26.93 60.65-49.24V0z' opacity='.5' fill='%23FFFFFF'/%3E%3Cpath d='M0 0v5.63C149.93 59 314.09 71.32 475.83 42.57c43-7.64 84.23-20.12 127.61-26.46 59-8.63 112.48 12.24 165.56 35.4C827.93 77.22 886 95.24 951.2 90c86.53-7 172.46-45.71 248.8-84.81V0z' fill='%23FFFFFF'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
  z-index: 1;
}

.uni-hero-container {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  max-width: var(--uni-container-width);
  margin: 0 auto;
  padding: 0 30px;
}

.uni-hero-content {
  max-width: 650px;
  animation: fadeInUp 0.8s ease-out;
}

.uni-hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.uni-hero-title {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.uni-hero-location {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
}

.uni-hero-location svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.uni-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 25px;
}

.uni-hero-stat {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.uni-hero-stat svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  opacity: 0.9;
}

.uni-hero-stat-label {
  font-size: 14px;
  font-weight: 500;
}

.uni-hero-actions {
  position: absolute;
  bottom: 100px;
  right: 30px;
  display: flex;
  gap: 15px;
  z-index: 2;
  animation: fadeInRight 0.8s ease-out;
}

.uni-hero-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--uni-transition);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.uni-hero-button.primary {
  background: var(--uni-primary);
  color: white;
  border: none;
}

.uni-hero-button.primary:hover {
  background: var(--uni-primary-dark);
  transform: translateY(-2px);
}

.uni-hero-button.secondary {
  background: rgba(255, 255, 255, 0.85);
  color: var(--uni-secondary);
  border: none;
}

.uni-hero-button.secondary:hover {
  background: white;
  transform: translateY(-2px);
}

.uni-hero-button svg {
  width: 18px;
  height: 18px;
}

/* Enhanced Breadcrumb */
.uni-breadcrumb {
  display: flex;
  align-items: center;
  padding: 20px 0;
  background: var(--uni-light);
  border-bottom: 1px solid var(--uni-border);
  margin-bottom: 40px;
}

.uni-breadcrumb-container {
  max-width: var(--uni-container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.uni-breadcrumb-item {
  display: flex;
  align-items: center;
  color: var(--uni-gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--uni-transition);
}

.uni-breadcrumb-item:hover {
  color: var(--uni-primary);
}

.uni-breadcrumb-separator {
  margin: 0 12px;
  opacity: 0.5;
}

.uni-breadcrumb-home {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--uni-light-gray);
  transition: var(--uni-transition);
}

.uni-breadcrumb-home:hover {
  background: var(--uni-primary-light);
  color: white;
}

.uni-breadcrumb-current {
  color: var(--uni-secondary);
  font-weight: 600;
}

/* Main Layout */
.uni-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  max-width: var(--uni-container-width);
  margin: 0 auto 60px;
  padding: 0 20px;
}

/* Left Column - Main Content */
.uni-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Enhanced Cards */
.uni-card {
  background: var(--uni-light);
  border-radius: var(--uni-radius);
  box-shadow: var(--uni-shadow);
  overflow: hidden;
  transition: var(--uni-transition);
}

.uni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.uni-card-header {
  padding: 25px 30px;
  border-bottom: 1px solid var(--uni-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uni-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--uni-secondary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.uni-card-title svg {
  width: 20px;
  height: 20px;
  color: var(--uni-primary);
}

.uni-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--uni-primary);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--uni-transition);
}

.uni-card-link:hover {
  background: var(--uni-primary-dark);
}

.uni-card-body {
  padding: 25px 30px;
}

.uni-card-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 30px;
}

.uni-card-row:last-child {
  margin-bottom: 0;
}

.uni-card-column {
  flex: 1;
  min-width: 200px;
}

.uni-card-label {
  font-size: 14px;
  color: var(--uni-gray);
  margin: 0 0 8px;
  font-weight: 500;
}

.uni-card-value {
  font-size: 16px;
  color: var(--uni-dark);
  margin: 0;
  font-weight: 600;
  text-transform: capitalize;
}

.uni-card-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--uni-gray);
  margin: 0;
}

.uni-card-footer {
  padding: 20px 30px;
  border-top: 1px solid var(--uni-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.uni-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--uni-transition);
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  border: none;
}

.uni-button.primary {
  background: var(--uni-primary);
  color: white;
}

.uni-button.primary:hover {
  background: var(--uni-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(226, 10, 23, 0.2);
}

.uni-button.secondary {
  background: var(--uni-light-gray);
  color: var(--uni-secondary);
}

.uni-button.secondary:hover {
  background: var(--uni-border);
  transform: translateY(-2px);
}

.uni-button.outline {
  background: transparent;
  color: var(--uni-primary);
  border: 2px solid var(--uni-primary);
}

.uni-button.outline:hover {
  background: var(--uni-primary);
  color: white;
  transform: translateY(-2px);
}

.uni-button svg {
  width: 18px;
  height: 18px;
}

/* Enhanced CTA Card */
.uni-cta-card {
  background: var(--uni-gradient);
  border-radius: var(--uni-radius);
  padding: 40px 30px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(226, 10, 23, 0.25);
  transition: var(--uni-transition);
}

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

.uni-cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: url("data:image/svg+xml,%3Csvg width='200' height='200' viewBox='0 0 200 200' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='100' cy='100' r='100' fill='white' fill-opacity='0.05'/%3E%3Ccircle cx='100' cy='100' r='80' fill='white' fill-opacity='0.05'/%3E%3Ccircle cx='100' cy='100' r='60' fill='white' fill-opacity='0.05'/%3E%3Ccircle cx='100' cy='100' r='40' fill='white' fill-opacity='0.05'/%3E%3Ccircle cx='100' cy='100' r='20' fill='white' fill-opacity='0.05'/%3E%3C/svg%3E") no-repeat;
  background-size: contain;
  opacity: 0.5;
}

.uni-cta-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 20px;
  max-width: 80%;
  position: relative;
  z-index: 1;
}

.uni-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
  z-index: 1;
}

/* Rankings Section */
.uni-ranking {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  background: var(--uni-light-gray);
  margin-top: 15px;
  transition: var(--uni-transition);
}

.uni-ranking:hover {
  background: #f0f2f7;
  transform: translateX(5px);
}

.uni-ranking-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.uni-ranking-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.uni-ranking-info {
  flex: 1;
}

.uni-ranking-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--uni-primary);
  margin: 0 0 5px;
}

.uni-ranking-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--uni-secondary);
  margin: 0;
}

/* Programs and Campuses Carousel */
.uni-carousel-container {
  position: relative;
  margin: 20px 0;
}

.uni-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Carousel Item */
.uni-carousel-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--uni-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.uni-carousel-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.uni-carousel-image {
  height: 160px;
  overflow: hidden;
}

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

.uni-carousel-item:hover .uni-carousel-image img {
  transform: scale(1.05);
}

.uni-carousel-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.uni-carousel-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--uni-secondary);
  margin: 0 0 10px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.uni-carousel-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--uni-gray);
  margin-bottom: 15px;
}

.uni-carousel-location svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.uni-carousel-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: auto;
}

.uni-carousel-detail {
  display: flex;
  flex-direction: column;
  font-size: 13px;
}

.uni-carousel-detail-label {
  color: var(--uni-gray);
  margin-bottom: 3px;
}

.uni-carousel-detail-value {
  font-weight: 600;
  color: var(--uni-secondary);
}

.uni-carousel-footer {
  padding: 15px 20px;
  border-top: 1px solid var(--uni-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uni-carousel-price {
  font-weight: 700;
  color: var(--uni-primary);
}

.uni-carousel-link {
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--uni-light-gray);
  color: var(--uni-secondary);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--uni-transition);
}

.uni-carousel-link:hover {
  background: var(--uni-primary);
  color: white;
}

/* Right Sidebar */
.uni-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Sticky Navigation */
.uni-nav {
  background: var(--uni-light);
  border-radius: var(--uni-radius);
  box-shadow: var(--uni-shadow);
  overflow: hidden;
  position: sticky;
  top: 30px;
  transition: var(--uni-transition);
}

.uni-nav:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.uni-nav-header {
  padding: 20px 25px;
  background: var(--uni-secondary);
  color: white;
}

.uni-nav-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.uni-nav-list {
  list-style: none;
  margin: 0;
  padding: 15px 0;
}

.uni-nav-item {
  margin: 0;
  padding: 0;
}

.uni-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  color: var(--uni-gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--uni-transition);
  position: relative;
}

.uni-nav-link svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: var(--uni-transition);
}

.uni-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--uni-primary);
  opacity: 0;
  transition: var(--uni-transition);
}

.uni-nav-link:hover,
.uni-nav-link.active {
  color: var(--uni-secondary);
  background: var(--uni-light-gray);
}

.uni-nav-link.active {
  color: var(--uni-primary);
  font-weight: 600;
}

.uni-nav-link.active::before {
  opacity: 1;
}

.uni-nav-link:hover svg,
.uni-nav-link.active svg {
  opacity: 1;
  color: var(--uni-primary);
}

/* Help Card */
.uni-help-card {
  background: var(--uni-light);
  border-radius: var(--uni-radius);
  box-shadow: var(--uni-shadow);
  overflow: hidden;
  transition: var(--uni-transition);
  border-top: 4px solid var(--uni-primary);
}

.uni-help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.uni-help-content {
  padding: 25px;
  text-align: center;
}

.uni-help-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--uni-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.uni-help-icon svg {
  width: 35px;
  height: 35px;
  color: var(--uni-primary);
}

.uni-help-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--uni-secondary);
  margin: 0 0 15px;
  line-height: 1.4;
}

.uni-help-button {
  margin-top: 20px;
  width: 100%;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
  .uni-layout {
    grid-template-columns: 2fr 1fr;
    gap: 30px;
  }
  
  .uni-hero {
    height: 400px;
  }
  
  .uni-hero-title {
    font-size: 36px;
  }
}

@media (max-width: 992px) {
  .uni-layout {
    grid-template-columns: 1fr;
  }
  
  .uni-sidebar {
    order: -1;
  }
  
  .uni-nav {
    position: static;
    margin-bottom: 20px;
  }
  
  .uni-hero {
    height: 350px;
  }
  
  .uni-hero-title {
    font-size: 32px;
  }
  
  .uni-hero-actions {
    position: static;
    margin-top: 20px;
  }
  
  .uni-cta-title {
    font-size: 24px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .uni-hero {
    height: auto;
    padding: 60px 0;
  }
  
  .uni-hero-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .uni-hero-content {
    max-width: 100%;
  }
  
  .uni-hero-title {
    font-size: 28px;
  }
  
  .uni-hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .uni-card-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .uni-card-footer {
    flex-direction: column;
    align-items: center;
  }
  
  .uni-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .uni-hero-title {
    font-size: 24px;
  }
  
  .uni-hero-badge {
    font-size: 12px;
  }
  
  .uni-hero-location {
    font-size: 16px;
  }
  
  .uni-card-header {
    padding: 20px 15px;
  }
  
  .uni-card-body {
    padding: 20px 15px;
  }
  
  .uni-card-footer {
    padding: 20px 15px;
  }
  
  .uni-carousel {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Program Cards and Search Filter */
.uni-programs-section {
  position: relative;
  margin-bottom: 40px;
}

/* Search and Filter Bar */
.uni-filter-container {
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: var(--uni-transition);
}

.uni-filter-container:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.uni-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.uni-filter-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--uni-secondary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.uni-filter-title svg {
  width: 20px;
  height: 20px;
  color: var(--uni-primary);
}

.uni-filter-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.uni-filter-group {
  position: relative;
}

.uni-filter-label {
  display: block;
  font-size: 13px;
  color: var(--uni-gray);
  margin-bottom: 8px;
  font-weight: 500;
}

.uni-filter-input {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border: 1px solid var(--uni-border);
  border-radius: 8px;
  font-size: 14px;
  transition: var(--uni-transition);
  background: var(--uni-light);
}

.uni-filter-input:focus {
  border-color: var(--uni-accent);
  box-shadow: 0 0 0 3px rgba(52, 144, 220, 0.1);
  outline: none;
}

.uni-filter-select {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border: 1px solid var(--uni-border);
  border-radius: 8px;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: var(--uni-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23a0aec0' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E") no-repeat;
  background-position: calc(100% - 15px) center;
  transition: var(--uni-transition);
}

.uni-filter-select:focus {
  border-color: var(--uni-accent);
  box-shadow: 0 0 0 3px rgba(52, 144, 220, 0.1);
  outline: none;
}

.uni-filter-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.uni-filter-button {
  height: 45px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--uni-transition);
  cursor: pointer;
  border: none;
}

.uni-filter-button.primary {
  background: var(--uni-primary);
  color: white;
}

.uni-filter-button.primary:hover {
  background: var(--uni-primary-dark);
  box-shadow: 0 6px 15px rgba(226, 10, 23, 0.2);
}

.uni-filter-button.secondary {
  background: var(--uni-light-gray);
  color: var(--uni-secondary);
}

.uni-filter-button.secondary:hover {
  background: var(--uni-border);
}

.uni-filter-button svg {
  width: 16px;
  height: 16px;
}

/* Simplified Program Section Styling */
.uni-programs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 25px;
  margin: 30px 0;
}

.uni-program-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.uni-program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.uni-program-header {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.uni-program-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.uni-program-card:hover .uni-program-image {
  transform: scale(1.05);
}

.uni-program-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.uni-program-logo {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 70px;
  height: 35px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.uni-program-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.uni-program-language {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--uni-primary, #e20a17);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.uni-program-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.uni-program-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--uni-secondary, #2d3748);
  margin: 0 0 15px;
  line-height: 1.3;
}

.uni-program-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--uni-gray, #76788b);
  margin-bottom: 20px;
}

.uni-program-location svg {
  width: 16px;
  height: 16px;
  color: var(--uni-primary, #e20a17);
}

.uni-program-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: auto;
}

.uni-program-detail {
  display: flex;
  flex-direction: column;
}

.uni-program-detail-label {
  font-size: 13px;
  color: var(--uni-gray, #76788b);
  margin-bottom: 5px;
}

.uni-program-detail-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--uni-secondary, #2d3748);
}

.uni-program-actions {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.uni-program-price {
  display: flex;
  flex-direction: column;
}

.uni-program-price-label {
  font-size: 12px;
  color: var(--uni-gray, #76788b);
}

.uni-program-price-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--uni-primary, #e20a17);
}

.uni-program-button {
  padding: 8px 15px;
  background: var(--uni-primary, #e20a17);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.uni-program-button:hover {
  background: #cc0000;
}

.uni-program-button svg {
  width: 14px;
  height: 14px;
}

/* Keyword Search Styling */
.uni-keyword-search {
  margin-bottom: 20px;
}

.uni-search-input {
  display: flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid #e6eaf1;
  border-radius: 8px;
  padding: 0 15px;
  height: 48px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.uni-search-input:focus-within {
  border-color: var(--uni-primary, #e20a17);
  box-shadow: 0 4px 15px rgba(226, 10, 23, 0.1);
}

.uni-search-input svg {
  width: 20px;
  height: 20px;
  color: #76788b;
}

.uni-search-input input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  height: 100%;
  color: #2d3748;
}

.uni-search-input input::placeholder {
  color: #a0aec0;
}

.uni-clear-search {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.uni-clear-search:hover {
  opacity: 1;
}

.uni-clear-search svg {
  width: 16px;
  height: 16px;
  color: #76788b;
}

/* Programs Results Info */
.uni-programs-results {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;
  margin-bottom: 15px;
}

.uni-programs-count {
  font-size: 14px;
  color: #76788b;
}

.uni-programs-count span {
  font-weight: 600;
  color: #2d3748;
}

/* Pagination Styling */
.uni-pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
  padding: 0 5px;
}

.uni-pagination-button {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid #e6eaf1;
  padding: 8px 16px;
  border-radius: 8px;
  color: #2d3748;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.uni-pagination-button:hover:not(:disabled) {
  background: #f5f7fa;
  border-color: #d1d5db;
}

.uni-pagination-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.uni-pagination-pages {
  display: flex;
  align-items: center;
  gap: 5px;
}

.uni-pagination-page {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: white;
  border: 1px solid #e6eaf1;
  color: #2d3748;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.uni-pagination-page:hover:not(.active) {
  background: #f5f7fa;
  border-color: #d1d5db;
}

.uni-pagination-page.active {
  background: var(--uni-primary, #e20a17);
  color: white;
  border-color: var(--uni-primary, #e20a17);
}

/* No Results Message */
.uni-no-results, .uni-no-programs {
  text-align: center;
  padding: 40px 20px;
  margin: 30px 0;
  background: #f7fafc;
  border-radius: 12px;
  grid-column: 1 / -1;
}

.uni-no-results-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.uni-no-results-icon svg {
  width: 24px;
  height: 24px;
  color: #a0aec0;
}

.uni-no-results h3, .uni-no-programs h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 10px;
}

.uni-no-results p, .uni-no-programs p {
  font-size: 14px;
  color: #76788b;
  margin: 0 0 20px;
}

.uni-clear-button {
  background: #e20a17;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.uni-clear-button:hover {
  background: #cc0000;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .uni-programs-grid {
    grid-template-columns: 1fr;
  }
  
  .uni-pagination {
    flex-direction: column;
    gap: 15px;
  }
  
  .uni-pagination-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-size: 14px;
  color: #76788b;
  font-weight: 700;
}

  .uni-pagination-pages {
    order: -1;
  }
}



/* Program Page */


/* Container */
.programPage-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-family: 'Inter', 'Roboto', sans-serif;
}

/* Hero Section */
.programPage-hero {
  position: relative;
  height: 450px;
  background-size: cover;
  background-position: center;
  color: var(--programPage-light);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.programPage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 32, 44, 0.85) 0%, rgba(26, 32, 44, 0.65) 50%, rgba(26, 32, 44, 0.4) 100%);
  z-index: 1;
}

.programPage-hero .programPage-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.programPage-hero-content {
  max-width: 650px;
  animation: programPage-fadeInUp 0.8s ease-out;
}

.programPage-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.programPage-hero-title {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 15px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.programPage-hero-location {
  display: flex;
  align-items: center;
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}

.programPage-hero-location svg {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.programPage-hero-program {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 20px;
  line-height: 1.3;
}

.programPage-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 25px;
}

.programPage-stat {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.programPage-stat svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  opacity: 0.9;
}

.programPage-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  animation: programPage-fadeInRight 0.8s ease-out;
}

.programPage-action-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--programPage-transition);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.programPage-save-btn {
  background: rgba(255, 255, 255, 0.85);
  color: var(--programPage-secondary);
  border: none;
}

.programPage-save-btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.programPage-share-btn {
  background: var(--programPage-primary);
  color: white;
  border: none;
}

.programPage-share-btn:hover {
  background: var(--programPage-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Breadcrumb */
.programPage-breadcrumb {
  background: var(--programPage-light);
  padding: 20px 0;
  border-bottom: 1px solid var(--programPage-border);
  margin-bottom: 40px;
}

.programPage-breadcrumb-item {
  align-items: center;
  color: var(--programPage-gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--programPage-transition);
}

.programPage-breadcrumb-item:hover {
  color: var(--programPage-primary);
}

.programPage-breadcrumb-separator {
  margin: 0 12px;
  color: var(--programPage-gray);
  opacity: 0.5;
}

.programPage-breadcrumb-separator svg {
  width: 16px;
  height: 16px;
}

.programPage-breadcrumb-home {
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--programPage-light-gray);
  transition: var(--programPage-transition);
}

.programPage-breadcrumb-home svg {
  width: 18px;
  height: 18px;
}

.programPage-breadcrumb-home:hover {
  background: var(--programPage-primary);
  color: white;
}

.programPage-breadcrumb-current {
  color: var(--programPage-secondary);
  font-weight: 600;
}

/* Main Content */
.programPage-main-content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.programPage-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Cards */
.programPage-card {
  background: var(--programPage-light);
  border-radius: var(--programPage-radius);
  box-shadow: var(--programPage-shadow);
  overflow: hidden;
  transition: var(--programPage-transition);
}

.programPage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.programPage-card-header {
  padding: 25px 30px;
  border-bottom: 1px solid var(--programPage-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.programPage-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--programPage-secondary);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.programPage-card-title svg {
  width: 20px;
  height: 20px;
  color: var(--programPage-primary);
}

.programPage-card-body {
  padding: 25px 30px;
}

.programPage-card-footer {
  padding: 20px 30px;
  border-top: 1px solid var(--programPage-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Information Rows */
.programPage-info-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
  gap: 30px;
}

.programPage-info-row:last-child {
  margin-bottom: 0;
}

.programPage-info-item {
  flex: 1;
  min-width: 200px;
}

.programPage-info-label {
  font-size: 14px;
  color: var(--programPage-gray);
  margin: 0 0 8px;
  font-weight: 500;
}

.programPage-info-value {
  font-size: 16px;
  color: var(--programPage-dark);
  margin: 0;
  font-weight: 600;
  text-transform: capitalize;
}

.programPage-discount {
  color: var(--programPage-primary);
}

/* Overview */
.programPage-overview-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--programPage-secondary);
  margin: 0 0 20px;
}

.programPage-overview-content {
  font-size: 16px;
  line-height: 1.7;
  color: var(--programPage-gray);
}

.programPage-overview-content p {
  margin: 0 0 15px;
}

.programPage-overview-content p:last-child {
  margin-bottom: 0;
}

/* CTA Card */
.programPage-cta-card {
  background: var(--programPage-gradient);
  border-radius: var(--programPage-radius);
  padding: 40px 30px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(226, 10, 23, 0.25);
  transition: var(--programPage-transition);
  display: flex;
  justify-content: space-between;
}

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

.programPage-cta-content {
  position: relative;
  z-index: 2;
  max-width: 70%;
}

.programPage-cta-icon {
  margin-bottom: 15px;
  width: 32px;
  height: 32px;
}

.programPage-cta-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 15px;
  line-height: 1.3;
}

.programPage-cta-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin: 0 0 25px;
}

.programPage-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--programPage-primary);
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--programPage-transition);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.programPage-cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.programPage-cta-accent {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
}

/* Requirements */
.programPage-requirements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.programPage-requirement-item {
  background: var(--programPage-light-gray);
  padding: 20px;
  border-radius: 12px;
  transition: var(--programPage-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.programPage-requirement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.programPage-requirement-logo {
  width: 90px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.programPage-requirement-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.programPage-requirement-logo.pte {
  background: #2078b5;
  color: white;
  font-weight: 700;
  font-size: 20px;
  border-radius: 6px;
}

.programPage-requirement-score {
  font-size: 18px;
  font-weight: 700;
  color: var(--programPage-dark);
  margin-bottom: 15px;
}

.programPage-requirement-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--programPage-primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--programPage-transition);
  font-size: 14px;
}

.programPage-requirement-link svg {
  width: 16px;
  height: 16px;
  transition: var(--programPage-transition);
}

.programPage-requirement-link:hover {
  color: var(--programPage-primary-dark);
}

.programPage-requirement-link:hover svg {
  transform: translateX(3px);
}

/* University Info */
.programPage-university-description {
  margin: 25px 0;
  line-height: 1.7;
  color: var(--programPage-gray);
}

.programPage-university-ranking {
  background: var(--programPage-light-gray);
  padding: 20px;
  border-radius: 12px;
}

.programPage-ranking-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--programPage-secondary);
  margin: 0 0 15px;
}

.programPage-ranking-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.programPage-ranking-logo {
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.programPage-ranking-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.programPage-ranking-info {
  flex: 1;
}

.programPage-ranking-name {
  font-size: 14px;
  color: var(--programPage-gray);
  margin-bottom: 5px;
}

.programPage-ranking-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--programPage-dark);
}

/* Campus */
.programPage-campus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.programPage-campus-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--programPage-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.programPage-campus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.programPage-campus-image {
  height: 160px;
  overflow: hidden;
}

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

.programPage-campus-card:hover .programPage-campus-image img {
  transform: scale(1.05);
}

.programPage-campus-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.programPage-campus-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--programPage-secondary);
  margin: 0 0 10px;
  line-height: 1.3;
}

.programPage-campus-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: var(--programPage-gray);
  margin-bottom: 15px;
}

.programPage-campus-location svg {
  width: 16px;
  height: 16px;
  opacity: 0.7;
}

.programPage-campus-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  color: var(--programPage-primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--programPage-transition);
  font-size: 14px;
}

.programPage-campus-link svg {
  width: 16px;
  height: 16px;
  transition: var(--programPage-transition);
}

.programPage-campus-link:hover {
  color: var(--programPage-primary-dark);
}

.programPage-campus-link:hover svg {
  transform: translateX(3px);
}

/* Curriculum */
.programPage-curriculum-toggle {
  position: relative;
}

.programPage-curriculum-toggle input {
  display: none;
}

.programPage-curriculum-toggle-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--programPage-light-gray);
  color: var(--programPage-secondary);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.programPage-toggle-icon {
  transition: transform 0.3s ease;
}

#curriculum-toggle:checked + .programPage-curriculum-toggle-label .programPage-toggle-icon {
  transform: rotate(180deg);
}

.programPage-curriculum-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

#curriculum-toggle:checked ~ .programPage-curriculum-content {
  max-height: 2000px;
  margin-top: 20px;
}

.programPage-curriculum-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.programPage-curriculum-item {
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--programPage-transition);
  border-left: 3px solid var(--programPage-primary);
}

.programPage-curriculum-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.programPage-curriculum-item svg {
  width: 18px;
  height: 18px;
  color: var(--programPage-primary);
  flex-shrink: 0;
}

/* Buttons */
.programPage-button {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--programPage-transition);
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  border: none;
  background: var(--programPage-primary);
  color: white;
}

.programPage-button:hover {
  background: var(--programPage-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(226, 10, 23, 0.2);
}

.programPage-button svg {
  width: 18px;
  height: 18px;
}

.programPage-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  width: 100%;
  justify-content: center;
}

.programPage-button-secondary {
  background: var(--programPage-light-gray);
  color: var(--programPage-secondary);
}

.programPage-button-secondary:hover {
  background: var(--programPage-border);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.programPage-button-outline {
  background: transparent;
  color: var(--programPage-primary);
  border: 2px solid var(--programPage-primary);
}

.programPage-button-outline:hover {
  background: var(--programPage-primary);
  color: white;
}

/* Sidebar */
.programPage-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Sticky Nav */
.programPage-sticky-nav {
  background: var(--programPage-light);
  border-radius: var(--programPage-radius);
  box-shadow: var(--programPage-shadow);
  overflow: hidden;
  position: sticky;
  top: 30px;
  transition: var(--programPage-transition);
}

.programPage-sticky-nav:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.programPage-nav-header {
  padding: 20px 25px;
  background: var(--programPage-secondary);
  color: white;
}

.programPage-nav-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.programPage-nav-list {
  list-style: none;
  margin: 0;
  padding: 15px 0;
}

.programPage-nav-item {
  margin: 0;
  padding: 0;
}

.programPage-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 25px;
  color: var(--programPage-gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--programPage-transition);
  position: relative;
}

.programPage-nav-link svg {
  width: 18px;
  height: 18px;
  opacity: 0.7;
  transition: var(--programPage-transition);
}

.programPage-nav-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--programPage-primary);
  opacity: 0;
  transition: var(--programPage-transition);
}

.programPage-nav-link:hover,
.programPage-nav-link.active {
  color: var(--programPage-secondary);
  background: var(--programPage-light-gray);
}

.programPage-nav-link.active {
  color: var(--programPage-primary);
  font-weight: 600;
}

.programPage-nav-link.active::before {
  opacity: 1;
}

.programPage-nav-link:hover svg,
.programPage-nav-link.active svg {
  opacity: 1;
  color: var(--programPage-primary);
}

/* Help Card */
.programPage-help-card {
  background: var(--programPage-light);
  border-radius: var(--programPage-radius);
  box-shadow: var(--programPage-shadow);
  overflow: hidden;
  transition: var(--programPage-transition);
  padding: 25px 20px;
  text-align: center;
  border-top: 4px solid var(--programPage-primary);
}

.programPage-help-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.programPage-help-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--programPage-light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.programPage-help-icon svg {
  width: 30px;
  height: 30px;
  color: var(--programPage-primary);
}

.programPage-help-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--programPage-secondary);
  margin: 0 0 10px;
}

.programPage-help-text {
  font-size: 14px;
  color: var(--programPage-gray);
  margin: 0 0 20px;
}

.programPage-help-button {
  width: 100%;
  background: var(--programPage-primary);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--programPage-transition);
}

.programPage-help-button:hover {
  background: var(--programPage-primary-dark);
}

/* Quick Apply */
.programPage-quick-apply {
  background: var(--programPage-light);
  border-radius: var(--programPage-radius);
  box-shadow: var(--programPage-shadow);
  overflow: hidden;
  transition: var(--programPage-transition);
}

.programPage-quick-apply:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.programPage-quick-apply-header {
  padding: 20px;
  background: var(--programPage-light-gray);
  display: flex;
  align-items: center;
  gap: 15px;
}

.programPage-quick-apply-header svg {
  width: 24px;
  height: 24px;
  color: var(--programPage-primary);
}

.programPage-quick-apply-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--programPage-secondary);
  margin: 0;
}

.programPage-quick-apply-body {
  padding: 20px;
}

.programPage-quick-apply-body p {
  font-size: 14px;
  color: var(--programPage-gray);
  margin: 0 0 20px;
  line-height: 1.6;
}

.programPage-quick-apply-button {
  width: 100%;
  background: var(--programPage-primary);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--programPage-transition);
}

.programPage-quick-apply-button:hover {
  background: var(--programPage-primary-dark);
}

/* Related Section */
.programPage-related-section {
  background: var(--programPage-light-gray);
  padding: 50px 0;
  margin-top: 30px;
}

.programPage-related-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--programPage-secondary);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.programPage-related-title svg {
  width: 24px;
  height: 24px;
  color: var(--programPage-primary);
}

.programPage-keywords-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.programPage-keyword {
  display: inline-block;
  padding: 8px 16px;
  background: white;
  border-radius: 30px;
  color: var(--programPage-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--programPage-transition);
  border: 1px solid var(--programPage-border);
}

.programPage-keyword:hover {
  background: var(--programPage-primary);
  color: white;
  border-color: var(--programPage-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(226, 10, 23, 0.15);
}

/* Floating Share Button */
.programPage-floating-share {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: var(--programPage-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(226, 10, 23, 0.3);
  cursor: pointer;
  z-index: 100;
  transition: var(--programPage-transition);
  animation: programPage-pulse 2s infinite;
  display: none;
}

.programPage-floating-share:hover {
  transform: scale(1.1);
  animation: none;
}

@keyframes programPage-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(226, 10, 23, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(226, 10, 23, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(226, 10, 23, 0);
  }
}

/* Animations */
@keyframes programPage-fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes programPage-fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .programPage-main-content {
    gap: 30px;
  }
  
  .programPage-hero {
    height: 400px;
  }
  
  .programPage-hero-title {
    font-size: 36px;
  }
  
  .programPage-curriculum-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 992px) {
  .programPage-main-content {
    grid-template-columns: 1fr;
  }
  
  .programPage-sidebar {
    order: -1;
  }
  
  .programPage-sticky-nav {
    position: static;
  }
  
  .programPage-hero {
    height: 350px;
  }
  
  .programPage-hero-title {
    font-size: 32px;
  }
  
  .programPage-hero .programPage-container {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .programPage-hero-actions {
    flex-direction: row;
    margin-top: 25px;
  }
  
  .programPage-requirements {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .programPage-hero {
    height: auto;
    padding: 80px 0;
  }
  
  .programPage-hero-title {
    font-size: 28px;
  }
  
  .programPage-hero-stats {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .programPage-button-group {
    flex-direction: column;
  }
  
  .programPage-campus-grid {
    grid-template-columns: 1fr;
  }
  
  .programPage-floating-share {
    display: flex;
  }
  
  .programPage-breadcrumb-item {
    font-size: 14px;
  }
  
  .programPage-cta-card {
    flex-direction: column;
  }
  
  .programPage-cta-content {
    max-width: 100%;
  }
  
  .programPage-cta-title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .programPage-hero-title {
    font-size: 24px;
  }
  
  .programPage-hero-program {
    font-size: 20px;
  }
  
  .programPage-card-header, 
  .programPage-card-body, 
  .programPage-card-footer {
    padding: 20px;
  }
  
  .programPage-info-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .programPage-action-button {
    width: 100%;
    justify-content: center;
  }
  
  .programPage-hero-actions {
    width: 100%;
    flex-direction: column;
  }
  
.programPage-curriculum-grid {
    grid-template-columns: 1fr;
  }
  
  .programPage-ranking-item {
    flex-direction: column;
    text-align: center;
  }
}

/* Campus Card Styles */
.programPage-campus-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.programPage-campus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(226, 10, 23, 0.2);
}

.programPage-campus-image {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.programPage-campus-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.programPage-campus-card:hover .programPage-campus-image img {
  transform: scale(1.05);
}

.programPage-campus-content {
  padding: 25px 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.programPage-campus-title {
  font-family: "Alexandria", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 15px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.programPage-campus-card:hover .programPage-campus-title {
  color: #e20a17;
}

.programPage-campus-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #718096;
  margin-bottom: 20px;
  font-weight: 500;
}

.programPage-campus-location svg {
  width: 18px;
  height: 18px;
  color: #e20a17;
}

.programPage-campus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.programPage-campus-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3490dc;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.programPage-campus-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.programPage-campus-link:hover {
  color: #e20a17;
}

.programPage-campus-link:hover svg {
  transform: translateX(3px);
}

.programPage-campus-button {
  margin-top: auto;
  background: #e20a17;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-align: center;
}

.programPage-campus-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.programPage-campus-button:hover {
  background: #b00812;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(226, 10, 23, 0.2);
}

.programPage-campus-button:hover svg {
  transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .programPage-campus-image {
    height: 160px;
  }
  
  .programPage-campus-content {
    padding: 20px 15px;
  }
  
  .programPage-campus-title {
    font-size: 18px;
  }
  
  .programPage-campus-button {
    padding: 10px 15px;
    font-size: 14px;
  }
}

.programPage-university-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.programPage-university-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: rgba(226, 10, 23, 0.2);
}

.programPage-university-image {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.programPage-university-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.programPage-university-card:hover .programPage-university-image img {
  transform: scale(1.05);
}

.programPage-university-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.programPage-university-title-link {
  text-decoration: none;
  color: inherit;
  display: block;
  margin-bottom: 15px;
}

.programPage-university-title {
  font-family: "Alexandria", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #2d3748;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 2.6em;
}

.programPage-university-card:hover .programPage-university-title {
  color: #e20a17;
}

.programPage-university-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #718096;
  margin-bottom: 20px;
  font-weight: 500;
}

.programPage-university-location svg {
  width: 18px;
  height: 18px;
  color: #e20a17;
  flex-shrink: 0;
}

.programPage-university-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: auto;
}

.programPage-university-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #3490dc;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.programPage-university-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.programPage-university-link:hover {
  color: #e20a17;
}

.programPage-university-link:hover svg {
  transform: translateX(3px);
}

.programPage-university-map-link svg {
  color: #4a5568;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .programPage-university-image {
    height: 160px;
  }
  
  .programPage-university-content {
    padding: 15px;
  }
  
  .programPage-university-title {
    font-size: 18px;
  }
  
  .programPage-university-location {
    font-size: 14px;
    margin-bottom: 15px;
  }
  
  .programPage-university-actions {
    flex-direction: column;
    gap: 10px;
  }
}


.ProgramArchivePage-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Cities Section */
.ProgramArchivePage-cities-section {
  background-color: var(--ProgramArchivePage-light);
  padding: 30px 0;
  margin-bottom: 40px;
}

.ProgramArchivePage-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 15px;
}

.ProgramArchivePage-city-card {
  background-color: var(--ProgramArchivePage-light);
  border-radius: 8px;
  padding: 15px 20px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
  transition: var(--ProgramArchivePage-transition);
  border: 1px solid var(--ProgramArchivePage-border);
}

.ProgramArchivePage-city-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--ProgramArchivePage-accent);
}

.ProgramArchivePage-city-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ProgramArchivePage-city-card h3 {
  margin: 0;
  color: var(--ProgramArchivePage-secondary);
  font-size: 16px;
  font-weight: 600;
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-city-card:hover h3 {
  color: var(--ProgramArchivePage-primary);
}

.ProgramArchivePage-city-arrow {
  opacity: 0;
  color: var(--ProgramArchivePage-primary);
  transition: var(--ProgramArchivePage-transition);
  transform: translateX(-10px);
}

.ProgramArchivePage-city-card:hover .ProgramArchivePage-city-arrow {
  opacity: 1;
  transform: translateX(0);
}

.ProgramArchivePage-city-arrow svg {
  width: 18px;
  height: 18px;
}

/* Programs Header */
.ProgramArchivePage-programs-header {
  background-color: var(--ProgramArchivePage-light);
  padding: 30px 0;
  margin-bottom: 30px;
  border-top: 1px solid var(--ProgramArchivePage-border);
  border-bottom: 1px solid var(--ProgramArchivePage-border);
}

.ProgramArchivePage-header-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.ProgramArchivePage-archive-title {
  font-size: 28px;
  color: var(--ProgramArchivePage-dark);
  font-weight: 700;
  margin: 0;
}

.ProgramArchivePage-programs-count {
  color: var(--ProgramArchivePage-primary);
  font-size: 18px;
  font-weight: 600;
}

.ProgramArchivePage-header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  width: 100%;
}

/* Search Input */
.ProgramArchivePage-search-form {
  flex: 1;
  min-width: 250px;
}

.ProgramArchivePage-search-input {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid var(--ProgramArchivePage-border);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--ProgramArchivePage-light);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-search-input:focus-within {
  border-color: var(--ProgramArchivePage-accent);
  box-shadow: 0 2px 10px rgba(52, 144, 220, 0.1);
}

.ProgramArchivePage-search-input svg {
  width: 18px;
  height: 18px;
  color: var(--ProgramArchivePage-gray);
  margin-left: 12px;
}

.ProgramArchivePage-search-input input {
  flex: 1;
  height: 45px;
  border: none;
  outline: none;
  padding: 0 15px;
  font-size: 15px;
  color: var(--ProgramArchivePage-dark);
  background: transparent;
}

.ProgramArchivePage-search-input input::placeholder {
  color: var(--ProgramArchivePage-gray);
  opacity: 0.7;
}

.ProgramArchivePage-search-button {
  height: 45px;
  border: none;
  background-color: var(--ProgramArchivePage-primary);
  color: white;
  padding: 0 20px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-search-button:hover {
  background-color: var(--ProgramArchivePage-primary-dark);
}

/* Sort Dropdown */
.ProgramArchivePage-sort-wrapper {
  position: relative;
  width: 220px;
}

.ProgramArchivePage-sort-dropdown {
  width: 100%;
  height: 45px;
  padding: 0 15px;
  border: 1px solid var(--ProgramArchivePage-border);
  border-radius: 8px;
  appearance: none;
  background-color: var(--ProgramArchivePage-light);
  font-size: 15px;
  color: var(--ProgramArchivePage-dark);
  cursor: pointer;
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-sort-dropdown:focus {
  border-color: var(--ProgramArchivePage-accent);
  outline: none;
  box-shadow: 0 2px 10px rgba(52, 144, 220, 0.1);
}

.ProgramArchivePage-sort-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--ProgramArchivePage-gray);
  pointer-events: none;
}

/* Filter Button & Dropdown */
.ProgramArchivePage-filter-wrapper {
  position: relative;
}

.ProgramArchivePage-filter-button {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  border: 1px solid var(--ProgramArchivePage-border);
  border-radius: 8px;
  background-color: var(--ProgramArchivePage-light);
  color: var(--ProgramArchivePage-dark);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-filter-button svg {
  width: 18px;
  height: 18px;
}

.ProgramArchivePage-filter-button:hover {
  border-color: var(--ProgramArchivePage-accent);
  background-color: var(--ProgramArchivePage-light-gray);
}

.ProgramArchivePage-filter-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 380px;
  background-color: var(--ProgramArchivePage-light);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 100;
  overflow: hidden;
  border: 1px solid var(--ProgramArchivePage-border);
}

.ProgramArchivePage-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid var(--ProgramArchivePage-border);
}

.ProgramArchivePage-filter-header h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 16px;
  color: var(--ProgramArchivePage-dark);
}

.ProgramArchivePage-filter-header svg {
  width: 18px;
  height: 18px;
  color: var(--ProgramArchivePage-primary);
}

.ProgramArchivePage-filter-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ProgramArchivePage-gray);
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-filter-close:hover {
  color: var(--ProgramArchivePage-primary);
}

.ProgramArchivePage-filter-close svg {
  width: 18px;
  height: 18px;
}

/* Filter Accordion */
.ProgramArchivePage-filter-accordion {
  max-height: 400px;
  overflow-y: auto;
}

.ProgramArchivePage-filter-item {
  border-bottom: 1px solid var(--ProgramArchivePage-border);
}

.ProgramArchivePage-filter-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-filter-item-header:hover {
  background-color: var(--ProgramArchivePage-light-gray);
}

.ProgramArchivePage-filter-item-header h4 {
  margin: 0;
  font-size: 15px;
  color: var(--ProgramArchivePage-secondary);
  font-weight: 600;
}

.ProgramArchivePage-accordion-icon {
  width: 16px;
  height: 16px;
  color: var(--ProgramArchivePage-gray);
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-filter-item-header[aria-expanded="true"] .ProgramArchivePage-accordion-icon {
  transform: rotate(180deg);
}

.ProgramArchivePage-filter-item-content {
  padding: 0 20px 15px;
  display: none;
}

.ProgramArchivePage-filter-item-content.active {
  display: block;
}

/* Filter Chips */
.ProgramArchivePage-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ProgramArchivePage-filter-chip {
  display: inline-flex;
  padding: 6px 12px;
  background-color: var(--ProgramArchivePage-light-gray);
  border: 1px solid var(--ProgramArchivePage-border);
  border-radius: 20px;
  color: var(--ProgramArchivePage-secondary);
  font-size: 14px;
  text-decoration: none;
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-filter-chip:hover {
  background-color: var(--ProgramArchivePage-light);
  border-color: var(--ProgramArchivePage-accent);
}

.ProgramArchivePage-filter-chip.active {
  background-color: var(--ProgramArchivePage-primary);
  color: white;
  border-color: var(--ProgramArchivePage-primary);
}

/* Range Inputs */
.ProgramArchivePage-range-inputs {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.ProgramArchivePage-range-field {
  flex: 1;
}

.ProgramArchivePage-range-field label {
  display: block;
  font-size: 13px;
  color: var(--ProgramArchivePage-gray);
  margin-bottom: 5px;
}

.ProgramArchivePage-range-input {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--ProgramArchivePage-border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--ProgramArchivePage-dark);
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-range-input:focus {
  border-color: var(--ProgramArchivePage-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(52, 144, 220, 0.1);
}

.ProgramArchivePage-range-error {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background-color: #FFF5F7;
  border-radius: 6px;
  color: #E53E3E;
  font-size: 13px;
}

.ProgramArchivePage-range-error svg {
  width: 16px;
  height: 16px;
  color: #E53E3E;
}

.ProgramArchivePage-range-error.active {
  display: flex;
}

/* Filter Actions */
.ProgramArchivePage-filter-actions {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  border-top: 1px solid var(--ProgramArchivePage-border);
}

.ProgramArchivePage-filter-clear {
  height: 40px;
  padding: 0 20px;
  background-color: var(--ProgramArchivePage-light);
  border: 1px solid var(--ProgramArchivePage-border);
  border-radius: 20px;
  color: var(--ProgramArchivePage-gray);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-filter-clear:hover {
  background-color: var(--ProgramArchivePage-light-gray);
  border-color: var(--ProgramArchivePage-gray);
}

.ProgramArchivePage-filter-apply {
  height: 40px;
  padding: 0 20px;
  background-color: var(--ProgramArchivePage-primary);
  border: none;
  border-radius: 20px;
  color: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-filter-apply:hover {
  background-color: var(--ProgramArchivePage-primary-dark);
}

/* Export Button */
.ProgramArchivePage-export-button {
  height: 45px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  background-color: var(--ProgramArchivePage-light);
  border: 1px solid var(--ProgramArchivePage-primary);
  border-radius: 8px;
  color: var(--ProgramArchivePage-primary);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-export-button svg {
  width: 18px;
  height: 18px;
}

.ProgramArchivePage-export-button:hover {
  background-color: var(--ProgramArchivePage-primary);
  color: white;
}

/* Programs Grid */
.ProgramArchivePage-programs-section {
  padding: 30px 0 60px;
}

.ProgramArchivePage-programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

/* Pagination */
.ProgramArchivePage-pagination {
  display: flex;
  justify-content: center;
}

.ProgramArchivePage-pagination-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ProgramArchivePage-pagination-links .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--ProgramArchivePage-gray);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-pagination-links .page-numbers.current {
  background-color: var(--ProgramArchivePage-primary);
  color: white;
}

.ProgramArchivePage-pagination-links .page-numbers:not(.current):hover {
  background-color: var(--ProgramArchivePage-light-gray);
  color: var(--ProgramArchivePage-secondary);
}

.ProgramArchivePage-pagination-links .page-numbers.prev,
.ProgramArchivePage-pagination-links .page-numbers.next {
  background-color: var(--ProgramArchivePage-light);
  border: 1px solid var(--ProgramArchivePage-border);
}

.ProgramArchivePage-pagination-links .page-numbers.prev:hover,
.ProgramArchivePage-pagination-links .page-numbers.next:hover {
  background-color: var(--ProgramArchivePage-light-gray);
  border-color: var(--ProgramArchivePage-accent);
}

.ProgramArchivePage-pagination-links .page-numbers svg {
  width: 16px;
  height: 16px;
}

/* Export Modal */
.ProgramArchivePage-export-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(26, 32, 44, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.ProgramArchivePage-export-content {
  background: white;
  border-radius: 12px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  padding: 30px;
}

.ProgramArchivePage-export-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ProgramArchivePage-border);
  position: relative;
}

.ProgramArchivePage-export-title h2 {
  margin: 0 0 8px;
  font-size: 24px;
  color: var(--ProgramArchivePage-dark);
}

.ProgramArchivePage-export-date {
  margin: 0;
  font-size: 14px;
  color: var(--ProgramArchivePage-gray);
  font-style: italic;
}

.ProgramArchivePage-export-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.ProgramArchivePage-export-print {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
  background-color: var(--ProgramArchivePage-light);
  border: 1px solid var(--ProgramArchivePage-border);
  border-radius: 6px;
  color: var(--ProgramArchivePage-secondary);
  font-size: 14px;
  cursor: pointer;
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-export-print:hover {
  background-color: var(--ProgramArchivePage-light-gray);
  border-color: var(--ProgramArchivePage-accent);
}

.ProgramArchivePage-export-print svg {
  width: 16px;
  height: 16px;
}

.ProgramArchivePage-export-actions p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--ProgramArchivePage-gray);
}

.ProgramArchivePage-export-close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  color: var(--ProgramArchivePage-gray);
  cursor: pointer;
  transition: var(--ProgramArchivePage-transition);
}

.ProgramArchivePage-export-close:hover {
  color: var(--ProgramArchivePage-primary);
}

.ProgramArchivePage-export-close svg {
  width: 20px;
  height: 20px;
}

.ProgramArchivePage-export-content h3 {
  font-size: 20px;
  color: var(--ProgramArchivePage-secondary);
  margin: 30px 0 15px;
}

.ProgramArchivePage-export-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ProgramArchivePage-gray);
  margin: 0 0 20px;
}

/* Export Table */
.ProgramArchivePage-export-table-container {
  overflow-x: auto;
  margin-bottom: 30px;
}

.ProgramArchivePage-export-table {
  width: 100%;
  border-collapse: collapse;
}

.ProgramArchivePage-export-table th,
.ProgramArchivePage-export-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid var(--ProgramArchivePage-border);
}

.ProgramArchivePage-export-table th {
  background-color: var(--ProgramArchivePage-light-gray);
  color: var(--ProgramArchivePage-secondary);
  font-weight: 600;
  font-size: 14px;
}

.ProgramArchivePage-export-table td {
  color: var(--ProgramArchivePage-dark);
  font-size: 14px;
}

.ProgramArchivePage-export-table tr:hover td {
  background-color: #f9fafb;
}

/* Export Program Cards */
.ProgramArchivePage-export-programs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.ProgramArchivePage-export-program {
  display: flex;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--ProgramArchivePage-border);
}

.ProgramArchivePage-export-program:last-child {
  border-bottom: none;
}

.ProgramArchivePage-export-program-image {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.ProgramArchivePage-export-program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ProgramArchivePage-export-program-content {
  flex: 1;
}

.ProgramArchivePage-export-program-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--ProgramArchivePage-dark);
  margin-bottom: 5px;
}

.ProgramArchivePage-export-program-university {
  font-size: 16px;
  color: var(--ProgramArchivePage-primary);
  margin-bottom: 10px;
}

.ProgramArchivePage-export-program-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.ProgramArchivePage-export-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ProgramArchivePage-secondary);
}

.ProgramArchivePage-export-detail-icon {
  font-size: 16px;
}

/* Export Contact & Footer */
.ProgramArchivePage-export-contact {
  margin-top: 30px;
  padding: 20px;
  background-color: var(--ProgramArchivePage-light-gray);
  border-radius: 8px;
}

.ProgramArchivePage-export-contact h4 {
  font-size: 16px;
  color: var(--ProgramArchivePage-dark);
  margin: 0 0 10px;
}

.ProgramArchivePage-export-contact p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ProgramArchivePage-gray);
  margin: 0;
}

.ProgramArchivePage-export-footer {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--ProgramArchivePage-border);
  text-align: center;
}

.ProgramArchivePage-export-footer p {
  font-size: 13px;
  color: var(--ProgramArchivePage-gray);
  margin: 0 0 5px;
}

.ProgramArchivePage-export-footer p:last-child {
  font-style: italic;
  font-size: 12px;
}

/* Helper classes */
.d-none {
  display: none !important;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .ProgramArchivePage-header-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .ProgramArchivePage-header-actions {
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .ProgramArchivePage-search-form {
    width: 100%;
  }
  
  .ProgramArchivePage-sort-wrapper {
    width: 100%;
  }
  
  .ProgramArchivePage-filter-button,
  .ProgramArchivePage-export-button {
    flex: 1;
    justify-content: center;
  }
  
  .ProgramArchivePage-filter-dropdown {
    width: 320px;
    right: auto;
    left: 0;
  }
  
  .ProgramArchivePage-programs-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .ProgramArchivePage-cities-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  
  .ProgramArchivePage-archive-title {
    font-size: 24px;
  }
  
  .ProgramArchivePage-programs-count {
    font-size: 16px;
  }
  
  .ProgramArchivePage-filter-dropdown {
    width: 100%;
    max-width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    border-radius: 0;
    display: flex;
    flex-direction: column;
  }
  
  .ProgramArchivePage-filter-accordion {
    flex: 1;
    max-height: none;
  }
  
  .ProgramArchivePage-export-content {
    padding: 20px;
  }
  
  .ProgramArchivePage-export-program {
    flex-direction: column;
  }
  
  .ProgramArchivePage-export-program-image {
    width: 100%;
    height: 160px;
  }
  
  .ProgramArchivePage-programs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .ProgramArchivePage-cities-grid {
    grid-template-columns: 1fr;
  }
  
  .ProgramArchivePage-header-actions {
    flex-direction: column;
  }
  
  .ProgramArchivePage-sort-wrapper,
  .ProgramArchivePage-filter-button,
  .ProgramArchivePage-export-button {
    width: 100%;
  }
  
  .ProgramArchivePage-pagination-links .page-numbers {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

.ProgramArchivePage-header-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin-bottom: 30px;
}

/* Search Input */
.ProgramArchivePage-search-wrapper {
  flex: 1;
  min-width: 280px;
}

.ProgramArchivePage-search-input {
  display: flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.ProgramArchivePage-search-input:focus-within {
  box-shadow: 0 3px 10px rgba(226, 10, 23, 0.08);
  border-color: #e20a17;
}

.ProgramArchivePage-search-input svg {
  width: 18px;
  height: 18px;
  color: #718096;
  margin-left: 12px;
}

.ProgramArchivePage-search-input input {
  flex: 1;
  height: 46px;
  border: none;
  outline: none;
  padding: 0 15px;
  background: transparent;
  font-size: 15px;
  color: #2d3748;
}

.ProgramArchivePage-search-input input::placeholder {
  color: #a0aec0;
}

.ProgramArchivePage-search-button {
  height: 46px;
  border: none;
  outline: none;
  padding: 0 20px;
  background-color: #e20a17;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ProgramArchivePage-search-button:hover {
  background-color: #b00812;
}

/* Action Controls Wrapper */
.ProgramArchivePage-actions-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Sort Dropdown */
.ProgramArchivePage-sort-control {
  position: relative;
  width: 220px;
}

.ProgramArchivePage-sort-select {
  width: 100%;
  height: 46px;
  padding: 0 15px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background-color: #ffffff;
  appearance: none;
  font-size: 15px;
  color: #2d3748;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ProgramArchivePage-sort-select:focus {
  outline: none;
  border-color: #3490dc;
  box-shadow: 0 3px 10px rgba(52, 144, 220, 0.1);
}

.ProgramArchivePage-sort-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: #718096;
  pointer-events: none;
}

/* Filter Button */
.ProgramArchivePage-filter-control {
  position: relative;
}

.ProgramArchivePage-filter-button {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 20px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  color: #2d3748;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ProgramArchivePage-filter-button:hover {
  background-color: #f7fafc;
  border-color: #3490dc;
}

.ProgramArchivePage-filter-button svg {
  width: 18px;
  height: 18px;
}

/* Export Button */
.ProgramArchivePage-export-button {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 20px;
  background-color: #ffffff;
  border: 1px solid #e20a17;
  border-radius: 8px;
  color: #e20a17;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ProgramArchivePage-export-button:hover {
  background-color: #e20a17;
  color: white;
}

.ProgramArchivePage-export-button svg {
  width: 18px;
  height: 18px;
}

/* Responsive styling */
@media (max-width: 992px) {
  .ProgramArchivePage-header-controls {
    flex-direction: column;
    align-items: stretch;
  }
  
  .ProgramArchivePage-actions-wrapper {
    flex-direction: column;
    width: 100%;
  }
  
  .ProgramArchivePage-sort-control,
  .ProgramArchivePage-filter-button,
  .ProgramArchivePage-export-button {
    width: 100%;
  }
  
  .ProgramArchivePage-filter-button,
  .ProgramArchivePage-export-button {
    justify-content: center;
  }
}


.ProgramBox-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ProgramBox-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Image Container */
.ProgramBox-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.ProgramBox-image-link {
  display: block;
  height: 100%;
  overflow: hidden;
}

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

.ProgramBox-card:hover .ProgramBox-image {
  transform: scale(1.08);
}

.ProgramBox-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

/* Badges */
.ProgramBox-badge {
  position: absolute;
  left: 15px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.ProgramBox-badge-discount {
  bottom: 15px;
  background-color: #e20a17;
}

.ProgramBox-badge-advanced {
  bottom: 55px;
  background-color: #e20a17;
  max-width: 85%;
}

.ProgramBox-badge-with-discount {
  bottom: 55px;
}

.ProgramBox-badge-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/* Content */
.ProgramBox-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* Header Section */
.ProgramBox-header {
  margin-bottom: 12px;
}

.ProgramBox-title-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.ProgramBox-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #2d3748;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ProgramBox-card:hover .ProgramBox-title {
  color: #e20a17;
}

.ProgramBox-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #718096;
}

.ProgramBox-location svg {
  width: 16px;
  height: 16px;
  color: #e20a17;
}

/* University */
.ProgramBox-university {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 12px;
}

.ProgramBox-university svg {
  width: 16px;
  height: 16px;
  color: #718096;
}

/* Description */
.ProgramBox-description {
  margin-bottom: 20px;
}

.ProgramBox-description p {
  font-size: 14px;
  line-height: 1.6;
  color: #718096;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Attributes */
.ProgramBox-attributes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  margin-top: auto;
}

.ProgramBox-attribute {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ProgramBox-attribute-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e20a17;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ProgramBox-attribute:hover .ProgramBox-attribute-icon {
  background-color: #e20a17;
  color: white;
}

.ProgramBox-attribute-icon svg {
  width: 16px;
  height: 16px;
}

.ProgramBox-attribute-content {
  flex: 1;
}

.ProgramBox-attribute-label {
  font-size: 12px;
  color: #718096;
  margin: 0 0 4px;
  font-weight: 500;
}

.ProgramBox-attribute-value {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
}

/* Price Styling */
.ProgramBox-price-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ProgramBox-price {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
}

.ProgramBox-price-original {
  font-size: 13px;
  color: #a0aec0;
  text-decoration: line-through;
}

.ProgramBox-price-discounted {
  font-size: 14px;
  font-weight: 600;
  color: #e20a17;
}

/* View Button */
.ProgramBox-view-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #e20a17;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  box-shadow: 0 4px 10px rgba(226, 10, 23, 0.15);
}

.ProgramBox-view-button:hover {
  background-color: #b00812;
  box-shadow: 0 6px 12px rgba(226, 10, 23, 0.25);
}

.ProgramBox-view-button svg {
  width: a6px;
  height: 16px;
  transition: transform 0.3s ease;
}

.ProgramBox-view-button:hover svg {
  transform: translateX(4px);
}
.program-table td span {
    text-decoration: line-through;
    display: block;
}
/* Responsive Adjustments */
@media (max-width: 992px) {
  .ProgramBox-attributes {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .ProgramBox-image-container {
    height: 180px;
  }
  
  .ProgramBox-content {
    padding: 15px;
  }
  
  .ProgramBox-title {
    font-size: 16px;
  }
  
  .ProgramBox-attributes {
    gap: 12px;
  }
  
  .ProgramBox-attribute-icon {
    width: 28px;
    height: 28px;
  }
  
  .ProgramBox-attribute-icon svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 576px) {
  .ProgramBox-attributes {
    grid-template-columns: 1fr;
  }
  
  .ProgramBox-view-button {
    width: 100%;
  }
}


.ProgramBoxUni-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.ProgramBoxUni-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Image Container */
.ProgramBoxUni-image-container {
  position: relative;
  overflow: hidden;
}

.ProgramBoxUni-image-link {
  display: block;
  height: 100%;
  overflow: hidden;
}

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

.ProgramBoxUni-card:hover .ProgramBoxUni-image {
  transform: scale(1.08);
}

.ProgramBoxUni-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

/* Badges */
.ProgramBoxUni-badge {
  position: absolute;
  left: 15px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.ProgramBoxUni-badge-discount {
  bottom: 15px;
  background-color: #e20a17;
}

.ProgramBoxUni-badge-advanced {
  bottom: 55px;
  background-color: #e20a17;
  max-width: 85%;
}

.ProgramBoxUni-badge-with-discount {
  bottom: 55px;
}

.ProgramBoxUni-badge-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}

/* Content */
.ProgramBoxUni-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* Header Section */
.ProgramBoxUni-header {
  margin-bottom: 12px;
}

.ProgramBoxUni-title-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.ProgramBoxUni-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #2d3748;
  line-height: 1.4;
  transition: color 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ProgramBoxUni-card:hover .ProgramBoxUni-title {
  color: #e20a17;
}

.ProgramBoxUni-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #718096;
}

.ProgramBoxUni-location svg {
  width: 16px;
  height: 16px;
  color: #e20a17;
}

/* University */
.ProgramBoxUni-university {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: #4a5568;
  margin-bottom: 12px;
}

.ProgramBoxUni-university svg {
  width: 16px;
  height: 16px;
  color: #718096;
}

/* Description */
.ProgramBoxUni-description {
  margin-bottom: 20px;
}

.ProgramBoxUni-description p {
  font-size: 14px;
  line-height: 1.6;
  color: #718096;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Attributes */
.ProgramBoxUni-attributes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  margin-top: auto;
}

.ProgramBoxUni-attribute {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ProgramBoxUni-attribute-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e20a17;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ProgramBoxUni-attribute:hover .ProgramBoxUni-attribute-icon {
  background-color: #e20a17;
  color: white;
}

.ProgramBoxUni-attribute-icon svg {
  width: 16px;
  height: 16px;
}

.ProgramBoxUni-attribute-content {
  flex: 1;
}

.ProgramBoxUni-attribute-label {
  font-size: 12px;
  color: #718096;
  margin: 0 0 4px;
  font-weight: 500;
}

.ProgramBoxUni-attribute-value {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
}

/* Price Styling */
.ProgramBoxUni-price-container {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ProgramBoxUni-price {
  font-size: 14px;
  font-weight: 600;
  color: #2d3748;
}

.ProgramBoxUni-price-original {
  font-size: 13px;
  color: #a0aec0;
  text-decoration: line-through;
}

.ProgramBoxUni-price-discounted {
  font-size: 14px;
  font-weight: 600;
  color: #e20a17;
}

/* View Button */
.ProgramBoxUni-view-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #e20a17;
  color: white;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  box-shadow: 0 4px 10px rgba(226, 10, 23, 0.15);
}

.ProgramBoxUni-view-button:hover {
  background-color: #b00812;
  box-shadow: 0 6px 12px rgba(226, 10, 23, 0.25);
}

.ProgramBoxUni-view-button svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.ProgramBoxUni-view-button:hover svg {
  transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .ProgramBoxUni-attributes {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ProgramBoxUni-image-container {
    height: 180px;
  }
  
  .ProgramBoxUni-content {
    padding: 15px;
  }
  
  .ProgramBoxUni-title {
    font-size: 16px;
  }
  
  .ProgramBoxUni-attributes {
    gap: 12px;
  }
  
  .ProgramBoxUni-attribute-icon {
    width: 28px;
    height: 28px;
  }
  
  .ProgramBoxUni-attribute-icon svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-width: 576px) {
  .ProgramBoxUni-attributes {
    grid-template-columns: 1fr;
  }
  
  .ProgramBoxUni-view-button {
    width: 100%;
  }
}

/* Grid layout for program cards */
.all-faculties-program {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  width: 100%;
  margin-bottom: 40px;
}

/* Alternative flexbox layout if you prefer */
/*
.all-faculties-program {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  margin-bottom: 40px;
}

.all-faculties-program .ProgramBoxUni-card {
  flex: 1 1 320px;
  min-width: 0; /* Prevents flex items from overflowing */
/*  max-width: calc(33.333% - 20px);
}
*/

/* Responsive adjustments */
@media (max-width: 992px) {
  .all-faculties-program {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  /* For flexbox: 
  .all-faculties-program .ProgramBoxUni-card {
    max-width: calc(50% - 15px);
  }
  */
}

@media (max-width: 576px) {
  .all-faculties-program {
    grid-template-columns: 1fr;
  }
  /* For flexbox:
  .all-faculties-program .ProgramBoxUni-card {
    max-width: 100%;
  }
  */
}


/* Grid layout for filter results */
.filter-results {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
  width: 100%;
  margin-bottom: 40px;
}

/* Alternative flexbox layout if you prefer */
/*
.filter-results {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  width: 100%;
  margin-bottom: 40px;
}

.filter-results > div {
  flex: 1 1 320px;
  min-width: 0; /* Prevents flex items from overflowing */
/*  max-width: calc(33.333% - 20px);
}
*/

/* Responsive adjustments */
@media (max-width: 992px) {
  .filter-results {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
  /* For flexbox: 
  .filter-results > div {
    max-width: calc(50% - 15px);
  }
  */
}

@media (max-width: 576px) {
  .filter-results {
    grid-template-columns: 1fr;
  }
  /* For flexbox:
  .filter-results > div {
    max-width: 100%;
  }
  */
}

.elementor-element-22c66aa .top-universities .owl-nav button.owl-prev {
    align-items: center !important;
    justify-content: center !important;
}
.elementor-element-22c66aa .top-universities .owl-nav button span{
  height: unset;
}


.program-search-container{
  position: relative;
}
.program-results-main{
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 9999;
  width: 100%;
  margin-top: 10px;
  background-color: #fff;
  -webkit-border-radius: 3px !important;
  border-radius: 3px !important;
  left: 0;
  display: none;
}
.program-results-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px;
}
.program-results-header p{
  margin-bottom: 0px;
  font-size: 14px;
  color: #444;
  font-weight: 400;
}
.swiper-buttons .swiper-button-prev:after {
  font-size: 12px;
}
.swiper-buttons .swiper-button-next:after {
  font-size: 12px;
}
.swiper-buttons{
  display: flex;
  align-items: center;
  gap: 5px;
}
.swiper.program-slider{

}
.swiper-buttons .swiper-button-prev {
  position: unset !important;
    color: #203D5A;
    border: 1px solid #E1E5EB;
    font-size: 12px;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px;
}

.swiper-buttons .swiper-button-next {
  position: unset !important;
    color: #203D5A;
    border: 1px solid #E1E5EB;
    font-size: 12px;
    height: 25px;
    width: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px;
}
.swiper-buttons .swiper-pagination{
  position: unset !important;
  width: auto;
  display: none;
}



  .program-search-box {
    display: flex;
    gap: 10px;
    margin: 20px 0;
  }
  
  #program-search-input {
    flex: 1;
    font-size: 14px;
    border: 1px solid #E1E5EB;
    border-radius: 4px;
    font-family: "Almarai", Sans-serif;
    font-weight: 500;
    background-color: #FDFDFD;
    padding: 11px 11px 11px 11px;
    outline: 0px;
    color: #000;
  }
  .program-results-main .program-results-header{
    display: none;
  }
.program-results-main .jet-ajax-search__spinner-holder .jet-ajax-search__spinner {
    color: #d60000;
}
.search-section .e-con-inner {
    background: #fff;
    box-shadow: 0 4px 13px 0 #0000001A;
    border-radius: 8px;
    padding: 18px;
}
#program-search-btn {
    padding: 10px 10px;
    background: #d60000;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    height: 44px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
#total-results {
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
    font-weight: bold;
}
  
.swiper-slide {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
}
  
.program-card {
    flex: 0 0 calc(50% - 10px);
    background: #fff;
    border: 1px solid #eee;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.08);
    border-radius: 8px;
    box-sizing: border-box;
}
  
.program-card h4 {
    font-size: 17px;
    color: #b80000;
    margin-bottom: 10px;
    font-weight: 600;
}
  
.program-card p {
    font-size: 14px;
    margin: 5px 0;
    color: #222;
}
  
.program-card strong {
    font-weight: 600;
    color: #000;
}
  
.program-card mark {
    background: transparent;
    padding: 0 3px;
    font-weight: bold;
}
  
.swiper-button-next,
.swiper-button-prev {
    color: #d60000;
}
  
.swiper-pagination-bullet-active {
    background: #d60000;
}
  
.see-all-btn {
    display: inline-block;
    background-color: #d60000;
    color: #fff;
    padding: 10px 20px;
    font-weight: bold;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 20px;
}
#program-search-btn svg {
    fill: #fff !important;
}
@media (max-width: 768px) {
    .program-card {
      flex: 0 0 100%;
    }
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    padding: 20px 0px;
}
  
  
.program-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.program-info {
    font-size: 14px;
    margin-bottom: 5px;
}
  
.fee {
    font-weight: bold;
    color: #0a6;
}
  
.discounted {
    color: #e53935;
    font-weight: bold;
}
  
/* Swiper overrides */
.swiper-button-next,
.swiper-button-prev {
    color: #333;
}
  
.swiper-pagination-bullet {
    background: #aaa;
    opacity: 1;
}
  
.swiper-pagination-bullet-active {
    background: #333;
}
  
.payment-form {
  max-width: 400px;
  margin: auto;
  font-family: 'Helvetica Neue', sans-serif;
}

.payment-box {
  background: #fff;
  border: 1px solid #dfe3e8;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.payment-box h3 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
}

.payment-method-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.method {
  padding: 6px 12px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  font-size: 14px;
  cursor: pointer;
}

.method.active {
  border-color: #3b82f6;
  background-color: #eff6ff;
  color: #1d4ed8;
}

label {
  font-size: 14px;
  margin-bottom: 4px;
  display: block;
}

.stripe-input {
  padding: 10px 12px;
  border: 1px solid #cbd5e0;
  border-radius: 8px;
  background: white;
  margin-bottom: 10px;
}

.input-row {
  display: flex;
  justify-content: space-between;
  gap: 0px;
  flex-direction: column;
}

.input-row > div {
  flex: 1;
}

.card-errors {
  color: red;
  font-size: 13px;
  margin-top: -10px;
  margin-bottom: 16px;
}

.pay-btn {
  background-color: #3b82f6;
  color: white;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pay-btn:hover {
  background-color: #2563eb;
}

.card-name{
  padding: 10px 12px !important;
    border: 1px solid #cbd5e0 !important;
    border-radius: 8px !important;
    background: white;
    margin-bottom: 10px;
    height: 41px;
}
img.loadar {
    width: 100px;
    height: 100px;
    display: none;
}


.stripe-input {
    padding: 10px 12px !important;
    border: 1px solid #cbd5e0 !important;
    border-radius: 8px !important;
    background: white;
    margin-bottom: 10px;
    height: 41px;
}

.card-expiry-element {
    padding: 10px 12px !important;
    border: 1px solid #cbd5e0 !important;
    border-radius: 8px !important;
    background: white;
    margin-bottom: 10px;
    height: 41px;
}

.card-cvc-element {
    padding: 10px 12px !important;
    border: 1px solid #cbd5e0 !important;
    border-radius: 8px !important;
    background: white;
    margin-bottom: 10px;
    height: 41px;
}




.selected-filters-display {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 12px;
}
.filtersApplied .filter-btn {
  background: linear-gradient(135deg, #E20A17 0%, #B8080F 100%);
  color: white;
  padding: 8px 12px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(226, 10, 23, 0.2);
  position: relative;
  overflow: hidden;
}
.filtersApplied .filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.filtersApplied .filter-btn:hover::before {
  left: 100%;
}
.filtersApplied .filter-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(226, 10, 23, 0.3);
}
.filtersApplied .remove-filter {
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.3);
}
.filtersApplied .remove-filter:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}
.clear-all-filters:hover {
  color: #005a87 !important;
}
.selected-filters-display.empty {
  display: none;
}

/* Sidebar Filter Styles */
.filter-section {
  margin-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 20px;
  transition: all 0.3s ease;
}

.filter-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.filter-section:hover {
  background: rgba(248, 249, 255, 0.5);
  border-radius: 8px;
  padding: 12px;
  margin: -12px -12px 12px -12px;
}

.filter-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-options {
  max-height: 200px;
  overflow-y: auto;
}

.filter-options::-webkit-scrollbar {
  width: 4px;
}

.filter-options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}

.filter-options::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 2px;
}

/* Checkbox filter styles */
.filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  color: #4a4a4a;
}

.filter-checkbox-label:hover {
  color: #1a1a1a;
}

.filter-checkbox-label.active {
  color: #E20A17;
  font-weight: 500;
}

.filter-checkbox-label input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #E20A17;
  cursor: pointer;
}

.filter-checkbox-text {
  line-height: 1.4;
  flex: 1;
}

/* Applied Filters in Sidebar */
.applied-filters-sidebar {
  margin-bottom: 24px;
  padding: 16px;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
  border-radius: 12px;
  border: 1px solid #e1e8ff;
}

.applied-filters-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.applied-filters-title::before {
  content: '✓';
  background: #E20A17;
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

.applied-filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.applied-filter-tag {
  background: linear-gradient(135deg, #E20A17 0%, #B8080F 100%);
  color: white;
  padding: 8px 12px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(226, 10, 23, 0.2);
  position: relative;
  overflow: hidden;
}

.applied-filter-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.applied-filter-tag:hover::before {
  left: 100%;
}

.applied-filter-tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(226, 10, 23, 0.3);
}

.applied-filter-remove {
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.3);
}

.applied-filter-remove:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

/* Price Range Styles */
.price-range-inputs {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.price-input-group {
  flex: 1;
}

.price-input-label {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
  display: block;
}

.price-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.2s;
}

.price-input:focus {
  outline: none;
  border-color: #E20A17;
}

/* Button Filters */
.filter-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.filter-button {
  padding: 8px 16px;
  border: 1px solid #ddd;
  background: white;
  color: #4a4a4a;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-button:hover {
  border-color: #E20A17;
  color: #E20A17;
}

.filter-button.active {
  background: #E20A17;
  border-color: #E20A17;
  color: white;
}
.filter-results-container {
  display: flex;
  gap: 24px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.filter-sidebar {
  width: 320px;
  min-width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 0;
  height: calc(100vh - 40px);
  position: sticky;
  top: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.filter-sidebar-content {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
}

.filter-sidebar::-webkit-scrollbar {
  width: 6px;
}

.filter-sidebar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.filter-sidebar::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}

.results-main-content {
  flex: 1;
  min-width: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .filter-results-container {
      flex-direction: column;
      padding: 16px;
  }
  
  .filter-sidebar {
      width: 100%;
      min-width: auto;
      position: static;
      order: 2;
  }
  
  .results-main-content {
      order: 1;
  }
  
  .mobile-filter-toggle {
      display: block;
      width: 100%;
      padding: 12px 20px;
      background: #E20A17;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 500;
      margin-bottom: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
  }
  
  .filter-sidebar.mobile-hidden {
      display: none;
  }
}

@media (min-width: 1025px) {
  .mobile-filter-toggle {
      display: none;
  }
}

/* Sidebar Header */
.filter-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e9ecef;
}

.filter-sidebar-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.clear-all-filters {
  background: none;
  border: none;
  color: #E20A17;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

.clear-all-filters:hover {
  background: #f8f9fa;
}

/* View Toggle Styles */
.view-toggle {
  display: flex;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 12px;
}

.view-toggle button {
  padding: 10px 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  font-size: 14px;
  color: #6c757d;
}

.view-toggle button.active {
  background: #E20A17;
  color: white;
}

.view-toggle button:hover:not(.active) {
  background: #e9ecef;
  color: #495057;
}

.view-toggle svg {
  flex-shrink: 0;
}

/* Filter Button Groups - Essential Styles */
.filter-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.filter-button {
  padding: 8px 16px;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  background: white;
  color: #495057;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-button:hover {
  border-color: #E20A17;
  background: #fef7f7;
}

.filter-button.active {
  background: #E20A17;
  color: white;
  border-color: #E20A17;
}

/* Price Range Inputs */
.price-range-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-input {
  flex: 1;
  padding: 8px 12px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  font-size: 14px;
}

.price-input:focus {
  outline: none;
  border-color: #E20A17;
  box-shadow: 0 0 0 2px rgba(226, 10, 23, 0.1);
}

.price-separator {
  color: #6c757d;
  font-weight: 500;
}



/* Ensure our new sidebar is visible */
.filter-sidebar {
  display: flex !important;
  visibility: visible !important;
}

/* Force our new sidebar to be visible and styled correctly */
.filter-results-container {
  display: flex !important;
  gap: 24px !important;
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 20px !important;
  position: relative !important;
  z-index: 999 !important;
}

.filter-sidebar {
  width: 320px !important;
  min-width: 320px !important;
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
  padding: 0 !important;
  height: calc(100vh - 40px) !important;
  position: sticky !important;
  top: 20px !important;
  overflow-y: auto !important;
  display: flex !important;
  flex-direction: column !important;
  visibility: visible !important;
  z-index: 1000 !important;
}

.filter-sidebar-content {
  padding: 24px !important;
  flex: 1 !important;
  overflow-y: auto !important;
  display: block !important;
  visibility: visible !important;
  z-index: 1001 !important;
  position: relative !important;
}

.filter-section {
  margin-bottom: 32px !important;
  display: block !important;
  visibility: visible !important;
  z-index: 1002 !important;
  position: relative !important;
}

.filter-section-title {
  font-size: 16px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  margin: 0 0 16px 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  visibility: visible !important;
  z-index: 1003 !important;
  position: relative !important;
  background: #f0f0f0 !important; /* DEBUG: Gray background to see titles */
  padding: 8px !important; /* DEBUG: Padding to make titles visible */
}

.filter-options {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  visibility: visible !important;
}

.filter-checkbox-label {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 16px !important;
  border: 1px solid #e9ecef !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  background: white !important;
  visibility: visible !important;
}

.filter-button-group {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  margin-top: 8px !important;
  visibility: visible !important;
}

.filter-button {
  padding: 8px 16px !important;
  border: 1px solid #e9ecef !important;
  border-radius: 20px !important;
  background: white !important;
  color: #495057 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  display: inline-block !important;
  visibility: visible !important;
}

.results-main-content {
  flex: 1 !important;
  min-width: 0 !important;
  display: block !important;
  visibility: visible !important;
}

/* Sidebar Header Styles */
.filter-sidebar-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-bottom: 24px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #e9ecef !important;
  visibility: visible !important;
}

.filter-sidebar-title {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: #1a1a1a !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  visibility: visible !important;
}

.clear-all-filters {
  background: none !important;
  border: none !important;
  color: #E20A17 !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  cursor: pointer !important;
  padding: 4px 8px !important;
  border-radius: 4px !important;
  transition: background 0.2s !important;
  display: inline-block !important;
  visibility: visible !important;
}

.filter-checkbox-text {
  font-size: 14px !important;
  color: #495057 !important;
  font-weight: 500 !important;
  flex: 1 !important;
  display: block !important;
  visibility: visible !important;
}

/* Price Range Inputs */
.price-range-inputs {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  visibility: visible !important;
}

.price-input {
  flex: 1 !important;
  padding: 8px 12px !important;
  border: 1px solid #e9ecef !important;
  border-radius: 6px !important;
  font-size: 14px !important;
  display: block !important;
  visibility: visible !important;
}

/* Single campus content positioning for loading overlay */
.single-campus-content {
  position: relative;
}

/* List View Container */
.all-faculties-program-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Ensure list container shows as block on mobile */
.all-faculties-program-list {
  width: 100%;
}

/* List View Item */
.program-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 12px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
}

.program-list-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: #E20A17;
}

/* List View Image */
.program-list-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e9ecef;
}

.program-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-list-placeholder {
  font-size: 24px;
  color: #6c757d;
}

/* List View Content */
.program-list-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.program-list-info {
  flex: 1;
}

.program-list-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.program-list-university {
  color: #6c757d;
  font-size: 14px;
  margin: 0 0 12px 0;
}

.program-list-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.program-list-detail {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #6c757d;
}

/* List View Right Side */
.program-list-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  text-align: right;
}

.program-list-fee {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.program-list-original-fee {
  font-size: 14px;
  color: #6c757d;
  text-decoration: line-through;
  margin-bottom: 2px;
}

.program-list-discounted-fee {
  font-size: 18px;
  font-weight: 600;
  color: #E20A17;
}

.program-list-current-fee {
  font-size: 18px;
  font-weight: 600;
  color: #E20A17;
}

/* List View Actions */
.program-list-actions {
  display: flex;
  gap: 8px;
}

.program-list-btn {
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
}

.program-list-btn-primary {
  background: #E20A17;
  color: white;
  border: 1px solid #E20A17;
}

.program-list-btn-primary:hover {
  background: #B8080F;
  border-color: #B8080F;
  transform: translateY(-1px);
}

.program-list-btn-outline {
  background: transparent;
  color: #E20A17;
  border: 1px solid #E20A17;
}

.program-list-btn-outline:hover {
  background: #E20A17;
  color: white;
  transform: translateY(-1px);
}

/* Pagination Styles */
.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 16px;
}

.pagination-info {
  color: #6c757d;
  font-size: 14px;
}

.pagination-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #e9ecef;
  background: white;
  color: #6c757d;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
}

.pagination-btn:hover:not(:disabled) {
  border-color: #E20A17;
  color: #E20A17;
}

.pagination-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-pages {
  display: flex;
  align-items: center;
  gap: 4px;
}

.pagination-page {
  width: 40px;
  height: 40px;
  border: 1px solid #e9ecef;
  background: white;
  color: #6c757d;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-page:hover {
  border-color: #E20A17;
  color: #E20A17;
}

.pagination-page.active {
  background: #E20A17;
  border-color: #E20A17;
  color: white;
}

.pagination-dots {
  padding: 0 8px;
  color: #6c757d;
}

.pagination-size {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6c757d;
}

.pagination-select {
  padding: 6px 12px;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  background: white;
  cursor: pointer;
  font-size: 14px;
}

.pagination-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 32px;
  background: white;
  border-radius: 12px;
  color: #6c757d;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  z-index: 1000;
  border: 1px solid #e9ecef;
}

.loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #E20A17;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Responsive pagination */
@media (max-width: 768px) {
  .pagination-container {
      flex-direction: column;
      gap: 16px;
      text-align: center;
  }
  
  .pagination-controls {
      order: 1;
  }
  
  .pagination-info {
      order: 2;
  }
  
  .pagination-size {
      order: 3;
  }
  
  .pagination-pages {
      flex-wrap: wrap;
      justify-content: center;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
    .view-toggle {
        order: -1;
        width: 100%;
        justify-content: center;
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    /* Mobile list view container improvements */
    .all-faculties-program-list {
        gap: 12px;
        padding: 0 4px;
    }
    
    .program-list-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 0;
        padding: 12px 16px;
        min-height: auto;
    }
    
    .program-list-image {
        display: none; /* Hide images on mobile */
    }
    
    .program-list-content {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    
    .program-list-info {
        text-align: left;
        flex: 1;
        min-width: 0;
    }
    
    .program-list-title {
        font-size: 15px;
        margin-bottom: 4px;
        line-height: 1.2;
    }
    
    .program-list-university {
        font-size: 12px;
        margin-bottom: 6px;
        color: #666;
    }
    
    .program-list-right {
        align-items: flex-end;
        text-align: right;
        gap: 8px;
        min-width: 120px;
        flex-shrink: 0;
    }
    
    .program-list-details {
        justify-content: flex-start;
        gap: 6px;
        flex-wrap: wrap;
        margin-top: 2px;
    }
    
    .program-list-detail {
        font-size: 11px;
        padding: 2px 6px;
        background: #f0f0f0;
        border-radius: 3px;
        white-space: nowrap;
    }
    
    .program-list-fee {
        margin-bottom: 8px;
    }
    
    .program-list-original-fee {
        font-size: 11px;
    }
    
    .program-list-discounted-fee,
    .program-list-current-fee {
        font-size: 14px;
        font-weight: 600;
    }
    
    .program-list-actions {
        width: 100%;
        flex-direction: column;
        gap: 4px;
    }
    
    .program-list-btn {
        width: 100%;
        padding: 6px 10px;
        font-size: 11px;
        min-width: 0;
        white-space: nowrap;
    }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
    .all-faculties-program-list {
        gap: 8px;
        padding: 0 2px;
    }
    
    .program-list-item {
        padding: 10px 12px;
        gap: 0;
    }
    
    .program-list-image {
        display: none; /* Keep images hidden */
    }
    
    .program-list-title {
        font-size: 15px;
        line-height: 1.2;
    }
    
    .program-list-university {
        font-size: 12px;
    }
    
    .program-list-detail {
        font-size: 11px;
        padding: 3px 6px;
    }
    
    .program-list-btn {
        padding: 5px 8px;
        font-size: 10px;
    }
    
    .program-list-discounted-fee,
    .program-list-current-fee {
        font-size: 15px;
    }
}