/* Auto-extracted from IIT_view.php on 2026-05-04 */

.iit-hero {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 60px 20px;
        margin-bottom: 40px;
    }
    
    .hero-content {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .breadcrumb {
        margin-bottom: 20px;
        opacity: 0.9;
    }
    
    .breadcrumb a {
        color: white;
        text-decoration: none;
        border-bottom: 1px dotted rgba(255,255,255,0.5);
    }
    
    .breadcrumb a:hover {
        border-bottom: 1px solid white;
    }
    
    .iit-title-section {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .iit-title h1 {
        font-size: 3em;
        margin-bottom: 10px;
    }
    
    .iit-rank-badge {
        background: rgba(255,255,255,0.2);
        padding: 20px 30px;
        border-radius: 15px;
        text-align: center;
        backdrop-filter: blur(10px);
    }
    
    .rank-number {
        font-size: 3em;
        font-weight: bold;
        display: block;
    }
    
    .iit-meta {
        display: flex;
        gap: 25px;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    
    .meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    .container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px 60px;
    }
    
    .photo-gallery {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .photo-card {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s ease;
    }
    
    .photo-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }
    
    .photo-card img {
        width: 100%;
        height: 250px;
        object-fit: cover;
    }
    
    .photo-caption {
        background: white;
        padding: 15px;
        text-align: center;
        font-weight: 600;
        color: #2c3e50;
    }
    
    .section {
        background: white;
        padding: 40px;
        border-radius: 15px;
        margin-bottom: 30px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    }
    
    .section-title {
        font-size: 2em;
        color: #2c3e50;
        margin-bottom: 25px;
        padding-bottom: 15px;
        border-bottom: 3px solid #667eea;
    }
    
    .branches-table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 20px;
    }
    
    .branches-table thead {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
    }
    
    .branches-table th,
    .branches-table td {
        padding: 15px;
        text-align: left;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .branches-table tbody tr:hover {
        background: #f8f9fa;
    }
    
    .branch-name {
        font-weight: 600;
        color: #2c3e50;
    }
    
    .cutoff-rank {
        background: #e8f5e9;
        color: #2e7d32;
        padding: 5px 12px;
        border-radius: 15px;
        font-weight: 600;
        display: inline-block;
    }
    
    .package-highlight {
        color: #667eea;
        font-weight: 600;
    }
    
    .recruiter-category {
        margin-bottom: 30px;
    }
    
    .category-title {
        font-size: 1.3em;
        font-weight: 600;
        color: #667eea;
        margin-bottom: 15px;
    }
    
    .company-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .company-tag {
        background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
        padding: 10px 20px;
        border-radius: 25px;
        font-weight: 500;
        color: #2c3e50;
        border: 1px solid #e0e0e0;
    }
    
    .company-tag.super-dream {
        background: linear-gradient(135deg, #ffd70015 0%, #ffa50015 100%);
        border-color: #FFD700;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 20px;
    }
    
    .stat-box {
        background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
        padding: 25px;
        border-radius: 15px;
        text-align: center;
        border: 2px solid #e0e0e0;
    }
    
    .stat-value {
        font-size: 2.5em;
        font-weight: bold;
        color: #667eea;
        display: block;
        margin-bottom: 10px;
    }
    
    .stat-label {
        color: #666;
        font-size: 0.95em;
    }
    
    .not-found-notice {
        background: #fff3cd;
        border: 2px solid #ffc107;
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 30px;
        text-align: center;
    }
    
    /* Responsive Design */
    @media (max-width: 1024px) {
        .iit-hero {
            padding: 40px 15px;
        }
        
        .iit-title h1 {
            font-size: 2.5em;
        }
        
        .rank-number {
            font-size: 2.5em;
        }
        
        .section {
            padding: 30px 25px;
        }
        
        .stats-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }
    
    @media (max-width: 768px) {
        .iit-hero {
            padding: 30px 15px;
        }
        
        .iit-title-section {
            flex-direction: column;
            gap: 20px;
        }
        
        .iit-title h1 {
            font-size: 1.8em;
            line-height: 1.3;
        }
        
        .iit-rank-badge {
            width: 100%;
            padding: 15px 20px;
        }
        
        .rank-number {
            font-size: 2em;
        }
        
        .iit-meta {
            gap: 15px;
        }
        
        .meta-item {
            font-size: 0.9em;
        }
        
        .photo-gallery {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .photo-card img {
            height: 200px;
        }
        
        .section {
            padding: 25px 20px;
            margin-bottom: 20px;
        }
        
        .section-title {
            font-size: 1.5em;
            margin-bottom: 20px;
        }
        
        .branches-table {
            font-size: 0.85em;
        }
        
        .branches-table th,
        .branches-table td {
            padding: 10px 8px;
        }
        
        .stats-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .stat-box {
            padding: 20px 15px;
        }
        
        .stat-value {
            font-size: 2em;
        }
        
        .company-tags {
            gap: 8px;
        }
        
        .company-tag {
            padding: 8px 15px;
            font-size: 0.9em;
        }
        
        .category-title {
            font-size: 1.1em;
        }
    }
    
    @media (max-width: 480px) {
        .iit-hero {
            padding: 25px 10px;
        }
        
        .breadcrumb {
            font-size: 0.85em;
        }
        
        .iit-title h1 {
            font-size: 1.4em;
        }
        
        .iit-meta {
            flex-direction: column;
            gap: 10px;
            align-items: flex-start;
        }
        
        .meta-item {
            font-size: 0.85em;
        }
        
        .iit-rank-badge {
            padding: 15px;
        }
        
        .rank-number {
            font-size: 1.8em;
        }
        
        .container {
            padding: 0 10px 40px;
        }
        
        .section {
            padding: 20px 15px;
        }
        
        .section-title {
            font-size: 1.3em;
        }
        
        .photo-card img {
            height: 180px;
        }
        
        .branches-table {
            font-size: 0.75em;
        }
        
        .branches-table th,
        .branches-table td {
            padding: 8px 5px;
        }
        
        .stats-grid {
            grid-template-columns: 1fr;
            gap: 12px;
        }
        
        .stat-box {
            padding: 18px 12px;
        }
        
        .stat-value {
            font-size: 1.8em;
        }
        
        .recruiter-category {
            margin-bottom: 20px;
        }
        
        .category-title {
            font-size: 1em;
            margin-bottom: 12px;
        }
        
        .company-tag {
            padding: 6px 12px;
            font-size: 0.85em;
        }
        
        /* Make final CTA section more compact */
        .section h2 {
            font-size: 1.3em;
        }
        
        .section p {
            font-size: 1em;
        }
        
        .section div[style*="flex"] a {
            padding: 12px 20px !important;
            font-size: 0.9em;
        }
    }
    
    @media (max-width: 360px) {
        .iit-title h1 {
            font-size: 1.2em;
        }
        
        .section-title {
            font-size: 1.1em;
        }
        
        .branches-table {
            font-size: 0.7em;
        }
        
        .company-tag {
            font-size: 0.8em;
            padding: 5px 10px;
        }
    }
