/* Admissions 2026 SEO Enhanced Styles */

/* Admissions Badge Styles */
.admissions-badge {
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.badge-pulse {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
    animation: pulse 2s infinite;
    display: inline-block;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(238, 90, 36, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(238, 90, 36, 0.3);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Title */
.hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: slideInFromTop 1.2s ease-out;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3px;
    animation: slideInFromBottom 1.2s ease-out 0.2s both;
}

/* Value Proposition */
.value-proposition {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2rem 0;
    text-align: center;
    animation: fadeIn 1s ease-out 0.4s both;
    margin-bottom: 2rem;
}

.value-proposition .lead {
    font-size: 1.3rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.value-proposition strong {
    color: #ffd700;
    font-weight: 700;
}

/* Hero Features */
.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    animation: slideInFromBottom 1s ease-out 0.6s both;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 150px;
    height: 100%;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-item i {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    display: block;
}

.feature-item span {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.feature-link {
    color: #ffd700 !important;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border: 1px solid #ffd700;
    border-radius: 20px;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.feature-link:hover {
    background: #ffd700;
    color: #1a1a2e !important;
    transform: scale(1.05);
}

/* Enhanced Hero Buttons */
.hero-buttons {
    animation: slideInFromBottom 1s ease-out 0.8s both;
    margin-bottom: 2rem;
}

.hero-buttons .btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
    transition: all 0.4s ease;
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.6);
    background: linear-gradient(45deg, #0056b3, #007bff);
}

.hero-buttons .btn-outline-light {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.hero-buttons .btn-outline-light:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Quick Info */
.quick-info {
    animation: fadeIn 1s ease-out 1s both;
}

.info-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.info-item i {
    font-size: 1.5rem;
    color: #ffd700;
    min-width: 30px;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1rem;
    color: #ffffff;
    font-weight: 600;
}

/* Animations */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .value-proposition .lead {
        font-size: 1.1rem;
    }
    
    .feature-item {
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline-light {
        padding: 12px 30px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
}

/* SEO Specific Styles */
.seo-highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.schema-markup {
    display: none;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Quick Info */
.quick-info {
    animation: slideInFromBottom 1s ease-out 1s both;
}

.info-item {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.info-item i {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 10px;
    display: block;
}

.info-item span {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Enhanced News Ticker */
.news-ticker-container {
    background: #ffffff;
    border-bottom: 2px solid #28a745;
    position: relative;
    overflow: hidden;
}

.news-ticker {
    display: flex;
    align-items: center;
    height: 40px;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: ticker 20s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    padding: 0 2rem;
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.ticker-item i {
    color: #28a745;
    margin-right: 0.5rem;
}

.ticker-item strong {
    color: #155724;
    font-weight: 700;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Animations */
@keyframes slideInFromTop {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .value-proposition .lead {
        font-size: 1.1rem;
    }
    
    .feature-item {
        margin-bottom: 15px;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-outline-light {
        padding: 12px 30px;
        font-size: 1rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .badge-pulse {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .ticker-item {
        font-size: 0.8rem;
        padding: 0 20px;
    }
}

/* SEO Specific Styles */
.seo-highlight {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.schema-markup {
    display: none;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus States */
.btn:focus,
.feature-item:focus,
.info-item:focus {
    outline: 3px solid #ffd700;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero-section {
        background: none !important;
        color: black !important;
    }
    
    .hero-buttons,
    .news-ticker-container {
        display: none !important;
    }
    
    .hero-title,
    .hero-subtitle,
    .value-proposition {
        color: black !important;
        text-shadow: none !important;
    }
    
    /* News Ticker Responsive */
    .news-ticker-container {
        height: auto;
        min-height: 40px;
    }
    
    .ticker-item {
        font-size: 0.8rem;
        padding: 0 1rem;
    }
    
    .ticker-item i {
        font-size: 0.8rem;
    }
}

/* Course Stipend Badge */
.course-details .stipend {
    color: #28a745;
    font-weight: 600;
    font-size: 0.8rem;
}

.course-details .stipend i {
    margin-right: 0.25rem;
}

/* Programs Slider Styles */
.programs-slider-container {
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.programs-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.program-slide {
    min-width: 100%;
    display: none;
    justify-content: center;
}

.program-slide.active {
    display: flex;
}

.program-slide .row {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.slider-prev,
.slider-next {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-prev:hover,
.slider-next:hover {
    background: #007bff;
    color: white;
    transform: scale(1.1);
}

.slider-prev i,
.slider-next i {
    font-size: 1.2rem;
    color: #333;
    transition: color 0.3s ease;
}

.slider-prev:hover i,
.slider-next:hover i {
    color: white;
}

/* Slider Dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #007bff;
    border-color: #007bff;
    transform: scale(1.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 1);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-controls {
        padding: 0 0.5rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }
    
    .slider-prev i,
    .slider-next i {
        font-size: 1rem;
    }
    
    .slider-dots {
        margin-top: 1.5rem;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 576px) {
    .slider-controls {
        padding: 0 0.25rem;
    }
    
    .slider-prev,
    .slider-next {
        width: 35px;
        height: 35px;
    }
    
    .slider-prev i,
    .slider-next i {
        font-size: 0.9rem;
    }
    
    .slider-dots {
        margin-top: 1rem;
        gap: 0.3rem;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
}
