
/* hero */
/* Hero Section Full Screen Height */
.hero-section {
    min-height: 100vh; 
    margin-top: 0px; /* Pehle -72px tha, ise 0 kar diya taaki section piche na chhupay */
    padding-top: 130px; /* Ise badha diya taaki content navbar se kaafi niche dikhe */
    background: linear-gradient(135deg, #1a237e 0%, #0d47a1 50%, #1565c0 100%);
    position: relative;
    z-index: 1;
}

/* Background Animation Effect */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: -1;
}

/* Glassmorphism Box */
.glass-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.2);
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: 0.3s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;  
}

/* Button Pulse Effect */
.main-btn {
    transition: 0.4s;
    border: none;
}

.main-btn:hover {
    background-color: #ffca28 !important;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 193, 7, 0.4) !important;
}

/* Mobile View Adjustments */
@media (max-width: 991px) {
    .hero-section {
        height: auto;
        /* Padding-top ko 100px se badha kar 150px ya 160px kar diya */
        padding: 160px 0 80px 0; 
        text-align: center;
    }
    
    .hero-section .d-flex {
        justify-content: center;
    }

    /* Buttons ke beech ka gap mobile par set karne ke liye */
    .hero-section .gap-3 {
        justify-content: center;
        margin-top: 20px;
    }
}

/* --- Premium Minimalist Cards --- */
.premium-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 32px;
    border: 1px solid #f0f0f0;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.premium-card:hover {
    border-color: #1a237e;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(26, 35, 126, 0.12);
}

/* Card Header Status */
.status-indicator {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.status-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    display: inline-block;
}

.status-indicator.active::before { background: #00c853; box-shadow: 0 0 8px #00c853; }
.status-indicator.warning::before { background: #ff3d00; box-shadow: 0 0 8px #ff3d00; }

.exam-type {
    background: #f4f7f6;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1a237e;
}

/* Card Body */
.p-card-body {
    margin: 24px 0;
    flex-grow: 1;
}

.exam-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 12px;
}

.exam-desc {
    font-size: 0.9rem;
    color: #636e72;
    margin-bottom: 24px;
}

/* Detail Grid */
.exam-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    background: #fcfcfc;
    padding: 15px;
    border-radius: 16px;
}

.detail-item .label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    color: #b2bec3;
    margin-bottom: 4px;
}

.detail-item .value {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Footer Link */
.apply-link {
    text-decoration: none;
    font-weight: 700;
    color: #1a237e;
    display: inline-flex;
    align-items: center;
    transition: 0.3s;
}

.apply-link:hover {
    color: #ffc107;
    transform: translateX(5px);
}

/* Highlighted Card Version */
.premium-card.highlighted {
    background: #fff;
    border: 1px solid #ffe0b2;
}

/* how it work */
/* --- Step Process Styling --- */
.step-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 24px;
    position: relative;
    transition: var(--transition);
    border: 1px solid #eee;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.5rem;
    font-weight: 800;
    color: #f0f0f0;
    z-index: 1;
    line-height: 1;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
}

.step-card h5 {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Connecting lines for Desktop */
@media (min-width: 992px) {
    .step-card::after {
        content: '\f105'; /* FontAwesome arrow */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        top: 50%;
        right: -20px;
        transform: translateY(-50%);
        font-size: 1.5rem;
        color: #ddd;
    }
    .col-lg-3:last-child .step-card::after {
        display: none;
    }
}

/* trust */
/* --- Stats Section Styling --- */
.bg-dark {
    background-color: #0a1128 !important; /* Deep Midnight Blue */
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.feature-icon-circle {
    width: 50px;
    height: 50px;
    background: rgba(255, 193, 7, 0.2);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.bg-circle-design {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(26, 35, 126, 0.3) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    z-index: 1;
}

/* ls-2 from previous code will work here too */

/* footer */
/* --- Footer & CTA Styling --- */
.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    text-decoration: none;
    color: #636e72;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #f0f3ff;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.grayscale {
    filter: grayscale(1);
    opacity: 0.6;
    transition: 0.3s;
}

.grayscale:hover {
    filter: grayscale(0);
    opacity: 1;
}

.status-closed {
    background-color: #fcfcfc !important;
    border-color: #e2e8f0 !important;
}

.status-closed .exam-title {
    color: #94a3b8 !important;
}

.status-closed .exam-desc {
    color: #cbd5e1 !important;
}

/* CTA Section Gradient Overlay */
.bg-primary {
    background: linear-gradient(45deg, #1a237e 0%, #0d47a1 100%) !important;
}

.agency-link {
    transition: 0.3s;
}

.agency-link:hover {
    color: #ffc107 !important; /* Brand yellow color on hover */
    text-decoration: underline !important;
}



.section-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0d6efd;
    text-transform: uppercase;
    border-bottom: 2px solid #eee;
    padding-bottom: 5px;
}

.custom-input {
    border-radius: 8px !important;
    border: 1px solid #ddd !important;
}

.upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #0d6efd;
    padding: 15px;
    border-radius: 12px;
    cursor: pointer;
    background: #f8f9fa;
    transition: 0.3s;
}

.upload-box:hover {
    background: #e7f1ff;
    color: #0d6efd;
}

.upload-box i { font-size: 1.5rem; margin-bottom: 5px; }
.upload-box span { font-size: 0.8rem; font-weight: 600; }

.exam-center-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
}

.center-option {
    background: #fff;
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid #ddd;
}

.apply-now-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    background: linear-gradient(45deg, #0d6efd, #00d2ff);
}


/* Modal Glassmorphism & Structure */
.modal-content {
    border-radius: 20px !important;
    border: none !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
    overflow: hidden;
}

.modal-header {
    padding: 25px !important;
    border: none !important;
}

.modal-body {
    max-height: 75vh; /* Mobile par screen se bahar nahi jayega */
    overflow-y: auto;
    padding: 30px !important;
    background: #ffffff;
}

/* Section Styling */
.section-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #0d6efd;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 25px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 5px;
}

/* Input Styling */
.custom-input {
    border: 2px solid #f1f3f5 !important;
    border-radius: 12px !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
}

.custom-input:focus {
    border-color: #0d6efd !important;
    box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1) !important;
    background-color: #fff !important;
}

/* File Upload Box */
.upload-label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
}

.upload-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #cbd5e0;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    background: #f8fafc;
    transition: 0.3s;
    text-align: center;
}

.upload-box i { font-size: 20px; margin-bottom: 5px; color: #64748b; }
.upload-box span { font-size: 11px; font-weight: 600; color: #64748b; }

.upload-box:hover {
    border-color: #0d6efd;
    background: #f0f7ff;
}

.upload-box:hover i, .upload-box:hover span { color: #0d6efd; }

/* Center Selection Grid */
.exam-center-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.center-option {
    background: #f1f3f5;
    padding: 10px;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: 0.3s;
    display: flex;
    align-items: center;
}

.center-option:has(input:checked) {
    border-color: #0d6efd;
    background: #e7f1ff;
}

/* Submit Button */
.apply-now-btn {
    width: 100%;
    background: linear-gradient(135deg, #0d6efd 0%, #0061f2 100%);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
    transition: 0.3s;
}

.apply-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

/* Custom Scrollbar for Modal */
.modal-body::-webkit-scrollbar { width: 6px; }
.modal-body::-webkit-scrollbar-track { background: #f1f1f1; }
.modal-body::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }
