/* Enhanced nigmt style.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    
}
.nigmt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    
}

/* Stats Section */
.nigmt-stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.nigmt-stats-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.nigmt-stat-box {
    flex: 1;
    background: linear-gradient(145deg, #333 0%, #444 100%);
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin: 10px;
    min-width: 200px;
}

.nigmt-stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.nigmt-stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.nigmt-stat-label {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #FFC107;
    font-weight: 500;
}

/* Partners Section */
.nigmt-partners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFC107 0%, #FFD54F 100%);
}

.nigmt-section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: #333;
    margin-bottom: 50px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nigmt-university-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.nigmt-university-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    justify-items: center;
}

.nigmt-university-logo {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    /*padding: 20px;*/
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nigmt-university-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.nigmt-university-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0);
    transition: filter 0.3s ease;
}

.nigmt-university-logo:hover img {
    filter: grayscale(0);
}

/* Apply Now Button */
.nigmt-apply-now-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.nigmt-apply-now-button a {
    display: block;
    background: linear-gradient(135deg, #333 0%, #222 100%);
    color: white;
    text-decoration: none;
    padding: 20px 15px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 10px 0 0 10px;
    box-shadow: -3px 0 15px rgba(0,0,0,0.1);
}

.nigmt-apply-now-button a:hover {
    background: linear-gradient(135deg, #222 0%, #111 100%);
    padding-right: 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nigmt-stats-container {
        gap: 15px;
    }
    
    .nigmt-university-logo {
        height: 90px;
    }
}

@media (max-width: 768px) {
    .nigmt-stats-section,
    .nigmt-partners-section {
        padding: 60px 0;
    }
    
    .nigmt-stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .nigmt-stat-box {
        margin: 0;
        width: 100%;
    }
    
    .nigmt-university-logo {
        height: 80px;
    }
    
    .nigmt-apply-now-button a {
        padding: 15px 10px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .nigmt-container {
        padding: 0 15px;
    }
    
    .nigmt-stats-section,
    .nigmt-partners-section {
        padding: 40px 0;
    }
    
    .nigmt-stats-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .nigmt-stat-box {
        margin: 5px 0;
        width: 100%;
    }
    
    .nigmt-university-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nigmt-university-logo {
        height: 70px;
        padding: 10px;
    }
}

/* Netra icons */
.nigmt-netra-icons {
    padding: 50px 40px;
}










/* icon box Key Benefits of Pursuing Online Degree */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}


.sandeep {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 40px;
    font-size: 36px;
    color: #333;
}

.benefits-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    width: 270px;
    height: 230px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: #444;
    transition: transform 0.5s ease;
}

.benefit-card:hover .icon {
    transform: rotate(360deg);
}

.benefit-title {
    font-size: 18px;
    font-weight: bold;
    color: #444;
    line-height: 1.3;
}




/* process section */
/* Process Section Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* body {
    background-color: #f5f5f5;
    padding: 20px;
} */

.container {
    max-width: 85%;
    margin: 0 auto;
    /*padding: 40px 20px;*/
}

h1 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 40px;
    color: #333333;
    position: relative;
}

h1:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    /*background-color: #f8b60000;*/
}

.process-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin-top: 40px;
    position: relative;
}

.process-line {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 3px;
    background: repeating-linear-gradient(90deg, #999, #999 5px, transparent 5px, transparent 12px);
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 25%;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.step-number {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #444;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
}

.step-number-text {
    font-size: 50px;
    font-weight: bold;
    color: #f8b500;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: #333;
    transition: width 1s ease-in-out;
}

.step-title {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 18px;
    color: #333;
}

.step-description {
    text-align: center;
    color: #666;
    font-size: 15px;
    line-height: 1.5;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
}

.process-step.active .step-number {
    background-color: #333;
}

.process-step.active .step-number-text {
    color: #ffc107;
}

.progress-indicator {
    position: absolute;
    top: -30px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f8b500;
    transition: all 0.5s ease;
}

/* Process animation elements */
.process-icon {
    font-size: 28px;
    color: white;
    position: absolute;
    opacity: 0;
    transition: all 0.5s ease;
}

.process-icon.document {
    transform: translateY(30px);
}

.process-icon.upload {
    transform: translateY(-30px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-line {
        top: 50px;
        width: 80%;
    }
    
    .step-number {
        width: 100px;
        height: 100px;
    }
    
    .step-number-text {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .process-container {
        flex-direction: column;
        align-items: center;
    }
    
    .process-step {
        width: 80%;
        margin-bottom: 50px;
    }
    
    .process-line {
        display: none;
    }
}



/* end process section */
/* end process section */   



/* placement slides */
/* Placement Section Styles */
