.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader {
    width: 60px;
    height: 60px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #07294D;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: #07294D;
    color: #fff;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    z-index: 99;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(255, 111, 0, 0.4);
}
.back-to-top:hover {
    transform: translateY(-5px);
    color: #fff;
}

/* Animations */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(255, 111, 0, 0.5); }
    50% { box-shadow: 0 0 20px rgba(255, 111, 0, 0.8), 0 0 30px rgba(255, 111, 0, 0.6); }
}
@keyframes scrollReveal {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animated-fadeInDown { animation: fadeInDown 1s ease forwards; }
.animated-fadeInUp { animation: fadeInUp 1s ease forwards; animation-delay: 0.3s; opacity: 0; }
.pulse-animation { animation: pulse 2s infinite; }

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 40px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 20px;
    margin-left: 20px;
    margin-right: 20px;
}
.stats-row {
    text-align: center;
}
.stat-item {
    padding: 20px;
    transition: 0.3s;
}
.stat-item:hover {
    transform: scale(1.05);
}
.stat-icon {
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
}
.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
}
.stat-label {
    color: #aaa;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Card */
.hero-card {
    position: relative;
    overflow: hidden;
}
.hero-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}
@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}
.hero-badge-custom {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    margin-bottom: 15px;
    backdrop-filter: blur(5px);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}
.hero-feature-item {
    background: rgba(255,255,255,0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
}
.hero-feature-item i {
    margin-right: 5px;
}

/* Banner Badge */
.banner-badge {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.badge-item {
    background: rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 30px;
    color: #fff;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}
.badge-item i {
    margin-right: 8px;
    color: #ffd700;
}

/* Countdown */
.countdown-wrapper {
    background: rgba(0,0,0,0.2);
    padding: 15px 20px;
    border-radius: 10px;
    display: inline-block;
}
.countdown-label {
    font-weight: 600;
    margin-bottom: 10px;
}
.countdown-timer {
    display: flex;
    gap: 10px;
}
.time-box {
    background: rgba(255,255,255,0.2);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
}
.time-box span {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

/* Buttons */
.main-btn {
   display: inline-flex;
    padding: 12px 30px;
    background: #07294D;
    color: #fff;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    text-decoration: none;
}
.main-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 111, 0, 0.4);
}
.btn-glow {
    animation: glow 2s infinite;
}
.btn-hover-effect {
    position: relative;
    overflow: hidden;
}
.btn-hover-effect::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: 0.5s;
}
.btn-hover-effect:active::after {
    width: 300px;
    height: 300px;
}
.btn-outline {
    background: transparent;
    border: 2px solid #fff;
}
.btn-outline:hover {
    background: #fff;
    color: #ff6f00;
}
.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: #fff;
}
.btn-outline-light:hover {
    background: #fff;
    color: #ff6f00;
}
.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

/* Section Title */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: #07294D;
    border-radius: 2px;
}
.title-icon {
    margin-right: 10px;
}

/* Why Choose */
.why-item {
    padding: 20px;
    border-radius: 15px;
    background: #f8f9fa;
    margin-bottom: 20px;
    transition: 0.3s;
    border: 2px solid transparent;
}
.why-item:hover {
    border-color: #ff6f00;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.why-icon {
    width: 60px;
    height: 60px;
    background: #07294D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}
.hover-lift {
    animation: float 3s ease-in-out infinite;
}
.why-item:nth-child(2) .hover-lift { animation-delay: 0.5s; }
.why-item:nth-child(3) .hover-lift { animation-delay: 1s; }
.why-item:nth-child(4) .hover-lift { animation-delay: 1.5s; }

/* VM Section */
.vm-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    padding: 25px;
    border-radius: 15px;
    color: #fff;
    height: 100%;
}
.vm-icon {
    font-size: 30px;
    margin-bottom: 15px;
}
.vm-card:nth-child(2) .vm-card {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

/* Course Tabs */
.course-tabs {
    margin-top: 20px;
}
.tab-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}
.tab-btn {
    padding: 10px 20px;
    background: #f0f0f0;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}
.tab-btn.active, .tab-btn:hover {
    background: #07294D;
    color: #fff;
}
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}
.tab-content.active {
    display: block;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Scholarship */
.bg-gradient-scholarship {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
}
.bg-gradient-scholarship .section-title {
    color: #fff;
}
.scholarship-card {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 5px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: 0.3s;
}
.scholarship-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}
.sch-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6f00;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
}

/* Eligibility */
.eligibility-wrapper {
    border-left: 4px solid #ff6f00;
}
.eligibility-item {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 0 10px 10px 0;
    margin-bottom: 15px;
    transition: 0.3s;
}
.eligibility-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateX(10px);
}
.elig-icon {
    width: 50px;
    height: 50px;
    background: #07294D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Fee Table */
.fee-table-wrapper {
    overflow-x: auto;
}
.fee-table {
    width: 100%;
    border-collapse: collapse;
}
.fee-table th, .fee-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}
.fee-table th {
    background: #07294D;
    color: #fff;
}
.fee-table tr:hover {
    background: #f8f9fa;
}

/* Placement */
.placement-stats {
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    padding: 30px;
    border-radius: 15px;
}
.placement-stat-item {
    text-align: center;
    padding: 20px;
}
.placement-number {
    font-size: 36px;
    font-weight: 700;
    color: #ff6f00;
}
.placement-label {
    color: #666;
    font-size: 14px;
}

/* Recruiter Marquee */
.recruiter-logos {
    overflow: hidden;
    padding: 20px 0;
}
.recruiter-track {
    display: flex;
    gap: 30px;
    animation: marquee 20s linear infinite;
}
.recruiter-item {
    background: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Facilities Grid */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.facility-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    border: 2px solid #f0f0f0;
}
.facility-card:hover {
    border-color: #ff6f00;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.facility-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    margin: 0 auto 15px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 1;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 111, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transition: 0.3s;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    overflow: hidden;
}
.testimonial-track {
    display: flex;
    transition: 0.5s;
}
.testimonial-card {
    min-width: 100%;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}
.testimonial-content {
    position: relative;
}
.quote-icon {
    font-size: 40px;
    color: #07294D;
    opacity: 0.3;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}
.author-info h5 {
    margin: 0;
}
.author-info span {
    color: #666;
    font-size: 14px;
}
.rating {
    color: #ffc107;
}
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}
.slider-prev, .slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}
.slider-prev:hover, .slider-next:hover {
    background: #07294D;
    color: #fff;
}

/* Rankings */
.rankings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.ranking-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #f0f0f0;
    transition: 0.3s;
}
.ranking-card:hover {
    border-color: #ff6f00;
    transform: scale(1.02);
}
.ranking-badge {
    width: 70px;
    height: 70px;
    background: #07294D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 15px;
}

/* FAQ */
.faq-item {
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 15px 20px;
    background: #fff;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: 0.3s;
}
.faq-question:hover {
    background: #f8f9fa;
}
.faq-question i {
    transition: 0.3s;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
}
.faq-item.active .faq-answer {
    max-height: 200px;
}
.faq-answer p {
    padding: 15px 20px;
    margin: 0;
    background: #f8f9fa;
}

/* Admission Steps */
.admission-steps {
    position: relative;
}
.admission-steps::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #ff6f00, #ff9800);
    border-radius: 2px;
}
.step-item {
    display: flex;
    align-items: flex-start;
    padding-left: 70px;
    position: relative;
    margin-bottom: 30px;
}
.step-number {
    position: absolute;
    left: 0;
    width: 50px;
    height: 50px;
    background: #07294D;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    z-index: 1;
}
.step-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    transition: 0.3s;
}
.step-item:hover .step-content {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Sidebar */
.sticky-sidebar {
    position: sticky;
}
.apply-header {
    background: #07294D;
    margin: -16px -16px 20px;
    padding: 20px;
    color: #fff;
    border-radius: 10px 10px 0 0;
}
.quick-apply-form .form-group {
    margin-bottom: 15px;
}
.quick-apply-form .form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    transition: 0.3s;
}
.quick-apply-form .form-control:focus {
    border-color: #07294D;
    box-shadow: 0 0 0 3px rgba(255, 111, 0, 0.1);
}
.apply-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}
.apply-divider::before, .apply-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: #eee;
}
.apply-divider::before { left: 0; }
.apply-divider::after { right: 0; }
.apply-divider span {
    background: #fff;
    padding: 0 10px;
    color: #999;
}

.bg-gradient-contact {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 15px;
}
.contact-info {
    text-align: left;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}
.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}
.contact-item p {
    margin: 0;
    font-size: 14px;
}

/* Quick Links */
.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.quick-links li {
    border-bottom: 1px solid #f0f0f0;
}
.quick-links a {
    display: flex;
    align-items: center;
    padding: 12px 0;
    color: #333;
    text-decoration: none;
    transition: 0.3s;
}
.quick-links a:hover {
    color: #ff6f00;
    padding-left: 10px;
}
.quick-links a i {
    margin-right: 10px;
    color: #07294D;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 60px 0;
    margin-top: 50px;
}
.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}
.newsletter-content h3 {
    color: #fff;
    margin-bottom: 10px;
}
.newsletter-content p {
    color: #aaa;
}
.newsletter-form {
    display: flex;
    gap: 10px;
}
.newsletter-form input {
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    width: 300px;
    outline: none;
}
.newsletter-form button {
    white-space: nowrap;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
}
.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}
.whatsapp-text {
    background: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    margin-left: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-weight: 600;
    animation: fadeIn 0.5s ease;
}

/* Scroll Reveal */
.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s ease;
}
.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .stats-section {
        margin: -30px 10px 30px;
        border-radius: 15px;
    }
    .stat-number {
        font-size: 24px;
    }
    .countdown-timer {
        flex-wrap: wrap;
        justify-content: center;
    }
    .time-box {
        min-width: 50px;
    }
    .time-box span {
        font-size: 18px;
    }
    .recruiter-track {
        animation-duration: 10s;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .rankings-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .newsletter-form {
        flex-direction: column;
        width: 100%;
    }
    .newsletter-form input {
        width: 100%;
    }
    .whatsapp-text {
        display: none;
    }
    .tab-buttons {
        justify-content: center;
    }
}

/* Alert */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.alert-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}
.alert i {
    margin-right: 10px;
}