.state-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
}

.state-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
}

.state-hero p {
    color: #64748b;
    max-width: 500px;
}

.hero-img {
    max-height: 280px;
}

/* MOBILE */
@media(max-width:768px){
    .state-hero {
        text-align: center;
    }
    .state-hero h1 {
        font-size: 30px;
    }
}

.state-stats {
    margin-top: -40px;
}

.stats-box {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-item h4 {
    color: #4F46E5;
    font-weight: 700;
}

.stat-item p {
    font-size: 13px;
    color: #64748b;
}

/* MOBILE */
@media(max-width:768px){
    .stats-box {
        flex-direction: column;
        gap: 15px;
    }
}

.why-section {
    background: #f8fafc;
    padding: 50px 0;
}

.why-section h6 {
    font-weight: 600;
}

/* GRID CARD */
.college-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.college-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */
.college-img {
    position: relative;
}

.college-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

/* RATING */
.rating {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #1e293b;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 5px;
}

/* CONTENT */
.college-content {
    padding: 12px;
}

.college-content h6 {
    font-size: 15px;
    font-weight: 600;
}

/* LOCATION */
.location {
    font-size: 12px;
    color: #64748b;
}

/* TAG */
.tag {
    font-size: 11px;
    background: #e0e7ff;
    color: #4F46E5;
    padding: 2px 6px;
    border-radius: 4px;
    display: inline-block;
    margin: 6px 0;
}

/* COURSE */
.course-info {
    font-size: 12px;
    color: #475569;
    margin-bottom: 8px;
}

/* SORT BOX */
.sort-box {
    width: auto;
    font-size: 13px;
}

/* LOAD MORE */
.load-more-btn {
    padding: 10px 25px;
    border-radius: 8px;
}

/* RESPONSIVE */
@media(max-width:992px){
    .college-img img {
        height: 180px;
    }
}

@media(max-width:768px){
    .college-img img {
        height: 200px;
    }
}

.college-item {
    transition: 0.3s ease;
}