/* Inside School Section */
.inside-school {
    padding: 4rem 0;
    background: #f8f9fa;
}

.tabs-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.tab-buttons {
    display: flex;
    background: #f8f9fa;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    background: #e9ecef;
    color: #666;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn.active {
    background: #054451;
    color: #dae4db;
    border-bottom-color: #054451;
}

.tab-btn:hover {
    background: #054451;
    color: #dae4db;
}

.tab-content {
    position: relative;
    min-height: 300px;
}

.tab-panel {
    display: none;
    padding: 2rem;
}

.tab-panel.active {
    display: block;
}

.tab-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.content-item {
    text-align: center;
}

.content-image {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    margin-bottom: 1rem;
}

.independence-img {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.yoga-img {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.republic-img {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.christmas-img {
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
}

.janmashtami-img {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.sports-img {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.academic-img {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.environment-img {
    background: linear-gradient(135deg, #6bcf7f 0%, #27ae60 100%);
}

.community-img {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.content-text h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: #054451;
}

.content-text p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #003d24;
    text-align: justify;
}

.read-more-section {
    text-align: center;
    margin-top: 2rem;
}

.read-more-btn {
    background: #ef946c;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 0.8rem 2rem;
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(239, 148, 108, 0.3);
    background: #e07d4f;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .tab-btn {
        font-size: 0.8rem;
        padding: 0.8rem;
    }
    
    .tab-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tab-panel {
        padding: 1.5rem;
    }
    
    .read-more-btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
}