
/* hero */
/* Hero Section Full Screen Height */
.hero-section {
    min-height: 100vh; /* Puri screen ka size */
    margin-top: -72px; /* Navbar ke niche se start hone ke liye adjust karein */
    padding-top: 72px; 
    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: 100px 0;
        text-align: center;
    }
    .hero-section .d-flex {
        justify-content: center;
    }
}

/* --- 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;
}

/* 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;
}